Skip to content
This repository has been archived by the owner on Jan 13, 2023. It is now read-only.

Latest commit

 

History

History

U-Net

unet_c.py - production (composable)

Paper

Macro-Architecture

Micro-Architecture

Contracting Group

Expanding Group

Classifier

Composable

Example: Instantiate a stock U-Net model

from unet_c import UNet

# U-Net from research paper
resnet = UNet()

# getter for the tf.keras model
model = unet.model