# -*- coding: utf-8 -*-
"""
Personal implementation of UNet models
"""
import sys
import logging
import torch
import torch.nn as nn
from torchvision.models.utils import load_state_dict_from_url
from ...nn.init import init_module
__all__ = ['UNet', 'unet', 'UNetp', 'unetp', 'UNetpp', 'unetpp', 'UNet3p', 'unet3p']
default_cfgs = {
'unet': {'arch': 'UNet',
'layout': [64, 128, 256, 512, 1024],
'url': None},
'unetp': {'arch': 'UNetp',
'layout': [64, 128, 256, 512, 1024],
'url': None},
'unetpp': {'arch': 'UNetpp',
'layout': [64, 128, 256, 512, 1024],
'url': None},
'unet3p': {'arch': 'UNet3p',
'layout': [64, 128, 256, 512, 1024],
'url': None}
}
def conv1x1(in_chan, out_chan):
return nn.Conv2d(in_chan, out_chan, 1)
def conv3x3(in_chan, out_chan, padding=0):
return nn.Conv2d(in_chan, out_chan, 3, padding=padding)
def conv_bn_act(in_chan, out_chan, kernel_size, padding=0, bn=False, act=True):
layers = [nn.Conv2d(in_chan, out_chan, kernel_size, padding=padding)]
if bn:
layers.append(nn.BatchNorm2d(out_chan))
if act:
layers.append(nn.ReLU(inplace=True))
return layers
class DownPath(nn.Sequential):
def __init__(self, in_chan, out_chan, downsample=True, padding=0, bn=False):
layers = [nn.MaxPool2d(2)] if downsample else []
layers.extend([*conv_bn_act(in_chan, out_chan, 3, padding, bn),
*conv_bn_act(out_chan, out_chan, 3, padding, bn)])
super().__init__(*layers)
class UpPath(nn.Module):
def __init__(self, in_chan, out_chan, num_skips=1, conv_transpose=False, padding=0, bn=False):
super().__init__()
if conv_transpose:
self.upsample = nn.ConvTranspose2d(in_chan, in_chan // 2, 2, stride=2)
else:
self.upsample = nn.Upsample(scale_factor=2, mode='bilinear', align_corners=True)
# Estimate the number of channels in the upsampled feature map
up_chan = in_chan // 2 if conv_transpose else in_chan
self.block = nn.Sequential(*conv_bn_act(num_skips * in_chan // 2 + up_chan, out_chan, 3, padding, bn),
*conv_bn_act(out_chan, out_chan, 3, padding, bn))
self.num_skips = num_skips
def forward(self, downfeats, upfeat):
if not isinstance(downfeats, list):
downfeats = [downfeats]
if len(downfeats) != self.num_skips:
raise ValueError(f"Expected {self.num_skips} encoding feats, received {len(downfeats)}")
# Upsample expansive features
_upfeat = self.upsample(upfeat)
# Crop contracting path features
for idx, downfeat in enumerate(downfeats):
delta_w = downfeat.shape[-1] - _upfeat.shape[-1]
w_slice = slice(delta_w // 2, -delta_w // 2 if delta_w > 0 else downfeat.shape[-1])
delta_h = downfeat.shape[-2] - _upfeat.shape[-2]
h_slice = slice(delta_h // 2, -delta_h // 2 if delta_h > 0 else downfeat.shape[-2])
downfeats[idx] = downfeat[..., h_slice, w_slice]
# Concatenate both feature maps and forward them
return self.block(torch.cat((*downfeats, _upfeat), dim=1))
class UNet(nn.Module):
"""Implements a U-Net architecture
Args:
layout (list<int>): number of channels after each contracting block
in_channels (int, optional): number of channels in the input tensor
num_classes (int, optional): number of output classes
"""
def __init__(self, layout, in_channels=1, num_classes=10):
super().__init__()
# Contracting path
self.encoders = nn.ModuleList([])
_layout = [in_channels] + layout
_pool = False
for in_chan, out_chan in zip(_layout[:-1], _layout[1:]):
self.encoders.append(DownPath(in_chan, out_chan, _pool))
_pool = True
# Expansive path
self.decoders = nn.ModuleList([])
for in_chan, out_chan in zip(layout[1:], layout[:-1]):
self.decoders.append(UpPath(in_chan, out_chan))
# Classifier
self.classifier = conv1x1(layout[0], num_classes)
init_module(self, 'relu')
def forward(self, x):
xs = []
# Contracting path
for encoder in self.encoders[:-1]:
xs.append(encoder(xs[-1] if len(xs) > 0 else x))
x = self.encoders[-1](xs[-1])
# Expansive path
for idx in range(len(self.decoders) - 1, -1, -1):
x = self.decoders[idx](xs[idx], x)
# Release memory
del xs[idx]
# Classifier
x = self.classifier(x)
return x
class UNetp(nn.Module):
"""Implements a UNet+ architecture
Args:
layout (list<int>): number of channels after each contracting block
in_channels (int, optional): number of channels in the input tensor
num_classes (int, optional): number of output classes
"""
def __init__(self, layout, in_channels=1, num_classes=10):
super().__init__()
# Contracting path
self.encoders = nn.ModuleList([])
_layout = [in_channels] + layout
_pool = False
for in_chan, out_chan in zip(_layout[:-1], _layout[1:]):
self.encoders.append(DownPath(in_chan, out_chan, _pool, 1))
_pool = True
# Expansive path
self.decoders = nn.ModuleList([])
for in_chan, out_chan, idx in zip(layout[1:], layout[:-1], range(len(layout))):
self.decoders.append(nn.ModuleList([UpPath(in_chan, out_chan, padding=1)
for _ in range(len(layout) - idx - 1)]))
# Classifier
self.classifier = conv1x1(layout[0], num_classes)
init_module(self, 'relu')
def forward(self, x):
xs = []
# Contracting path
for encoder in self.encoders:
xs.append(encoder(xs[-1] if len(xs) > 0 else x))
# Nested expansive path
for j in range(len(self.decoders)):
for i in range(len(self.decoders) - j):
xs[i] = self.decoders[i][j](xs[i], xs[i + 1])
# Release memory
del xs[len(self.decoders) - j]
# Classifier
x = self.classifier(xs[0])
return x
class UNetpp(nn.Module):
"""Implements a UNet++ architecture
Args:
layout (list<int>): number of channels after each contracting block
in_channels (int, optional): number of channels in the input tensor
num_classes (int, optional): number of output classes
"""
def __init__(self, layout, in_channels=1, num_classes=10):
super().__init__()
# Contracting path
self.encoders = nn.ModuleList([])
_layout = [in_channels] + layout
_pool = False
for in_chan, out_chan in zip(_layout[:-1], _layout[1:]):
self.encoders.append(DownPath(in_chan, out_chan, _pool, 1))
_pool = True
# Expansive path
self.decoders = nn.ModuleList([])
for in_chan, out_chan, idx in zip(layout[1:], layout[:-1], range(len(layout))):
self.decoders.append(nn.ModuleList([UpPath(in_chan, out_chan, num_skips, padding=1)
for num_skips in range(1, len(layout) - idx)]))
# Classifier
self.classifier = conv1x1(layout[0], num_classes)
init_module(self, 'relu')
def forward(self, x):
xs = []
# Contracting path
for encoder in self.encoders:
xs.append([encoder(xs[-1][0] if len(xs) > 0 else x)])
# Nested expansive path
for j in range(len(self.decoders)):
for i in range(len(self.decoders) - j):
xs[i].append(self.decoders[i][j](xs[i], xs[i + 1][-1]))
# Release memory
del xs[len(self.decoders) - j]
# Classifier
x = self.classifier(xs[0][-1])
return x
class FSAggreg(nn.Module):
def __init__(self, e_chans, skip_chan, d_chans):
super().__init__()
# Check stem conv channels
base_chan = e_chans[0] if len(e_chans) > 0 else skip_chan
# Get UNet depth
depth = len(e_chans) + 1 + len(d_chans)
# Downsample = max pooling + conv for channel reduction
self.downsamples = nn.ModuleList([nn.Sequential(nn.MaxPool2d(2 ** (len(e_chans) - idx)),
conv3x3(e_chan, base_chan, 1))
for idx, e_chan in enumerate(e_chans)])
self.skip = conv3x3(skip_chan, base_chan, 1) if len(e_chans) > 0 else nn.Identity()
# Upsample = bilinear interpolation + conv for channel reduction
self.upsamples = nn.ModuleList([nn.Sequential(nn.Upsample(scale_factor=2 ** (idx + 1),
mode='bilinear', align_corners=True),
conv3x3(d_chan, base_chan, 1))
for idx, d_chan in enumerate(d_chans)])
self.block = nn.Sequential(*conv_bn_act(depth * base_chan, depth * base_chan, 3, 1, True))
def forward(self, downfeats, feat, upfeats):
if len(downfeats) != len(self.downsamples) or len(upfeats) != len(self.upsamples):
raise ValueError(f"Expected {len(self.downsamples)} encoding & {len(self.upsamples)} decoding features, "
f"received: {len(downfeats)} & {len(upfeats)}")
# Concatenate full-scale features
x = torch.cat((*[downsample(downfeat) for downsample, downfeat in zip(self.downsamples, downfeats)],
self.skip(feat),
*[upsample(upfeat) for upsample, upfeat in zip(self.upsamples, upfeats)]), dim=1)
return self.block(x)
class UNet3p(nn.Module):
"""Implements a UNet3+ architecture
Args:
layout (list<int>): number of channels after each contracting block
in_channels (int, optional): number of channels in the input tensor
num_classes (int, optional): number of output classes
"""
def __init__(self, layout, in_channels=1, num_classes=10):
super().__init__()
# Contracting path
self.encoders = nn.ModuleList([])
_layout = [in_channels] + layout
_pool = False
for in_chan, out_chan in zip(_layout[:-1], _layout[1:]):
self.encoders.append(DownPath(in_chan, out_chan, _pool, 1, True))
_pool = True
# Expansive path
self.decoders = nn.ModuleList([])
for row in range(len(layout) - 1):
self.decoders.append(FSAggreg(layout[:row],
layout[row],
[len(layout) * layout[0]] * (len(layout) - 2 - row) + layout[-1:]))
# Classifier
self.classifier = conv1x1(len(layout) * layout[0], num_classes)
init_module(self, 'relu')
def forward(self, x):
xs = []
# Contracting path
for encoder in self.encoders:
xs.append(encoder(xs[-1] if len(xs) > 0 else x))
# Full-scale expansive path
for idx in range(len(self.decoders) - 1, -1, -1):
xs[idx] = self.decoders[idx](xs[:idx], xs[idx], xs[idx + 1:])
# Classifier
x = self.classifier(xs[0])
return x
def _unet(arch, pretrained, progress, **kwargs):
# Retrieve the correct Darknet layout type
unet_type = sys.modules[__name__].__dict__[default_cfgs[arch]['arch']]
# Build the model
model = unet_type(default_cfgs[arch]['layout'], **kwargs)
# Load pretrained parameters
if pretrained:
if default_cfgs[arch]['url'] is None:
logging.warning(f"Invalid model URL for {arch}, using default initialization.")
else:
state_dict = load_state_dict_from_url(default_cfgs[arch]['url'],
progress=progress)
model.load_state_dict(state_dict)
return model
[docs]
def unet(pretrained=False, progress=True, **kwargs):
"""U-Net from
`"U-Net: Convolutional Networks for Biomedical Image Segmentation" <https://arxiv.org/pdf/1505.04597.pdf>`_
Args:
pretrained (bool): If True, returns a model pre-trained on ImageNet
progress (bool): If True, displays a progress bar of the download to stderr
Returns:
torch.nn.Module: semantic segmentation model
"""
return _unet('unet', pretrained, progress, **kwargs)
[docs]
def unetp(pretrained=False, progress=True, **kwargs):
"""UNet+ from
`"UNet++: A Nested U-Net Architecture for Medical Image Segmentation" <https://arxiv.org/pdf/1807.10165.pdf>`_
Args:
pretrained (bool): If True, returns a model pre-trained on ImageNet
progress (bool): If True, displays a progress bar of the download to stderr
Returns:
torch.nn.Module: semantic segmentation model
"""
return _unet('unetp', pretrained, progress, **kwargs)
[docs]
def unetpp(pretrained=False, progress=True, **kwargs):
"""UNet++ from
`"UNet++: A Nested U-Net Architecture for Medical Image Segmentation" <https://arxiv.org/pdf/1807.10165.pdf>`_
Args:
pretrained (bool): If True, returns a model pre-trained on ImageNet
progress (bool): If True, displays a progress bar of the download to stderr
Returns:
torch.nn.Module: semantic segmentation model
"""
return _unet('unetpp', pretrained, progress, **kwargs)
[docs]
def unet3p(pretrained=False, progress=True, **kwargs):
"""UNet3+ from
`"UNet 3+: A Full-Scale Connected UNet For Medical Image Segmentation" <https://arxiv.org/pdf/2004.08790.pdf>`_
Args:
pretrained (bool): If True, returns a model pre-trained on ImageNet
progress (bool): If True, displays a progress bar of the download to stderr
Returns:
torch.nn.Module: semantic segmentation model
"""
return _unet('unet3p', pretrained, progress, **kwargs)