unet_c.py - production (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
unet_c.py - production (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