Source code for mednet.models.segment.backbones.vgg

# SPDX-FileCopyrightText: Copyright © 2023 Idiap Research Institute <contact@idiap.ch>
#
# SPDX-License-Identifier: GPL-3.0-or-later
"""Support code to adapt existing `VGG pytorch model <vgg-pytorch_>`_ functionality to U-Net style network for segmentation."""

import torchvision.models
from torch.hub import load_state_dict_from_url


[docs] class VGG4Segmentation(torchvision.models.vgg.VGG): """Adaptation of `VGG pytorch model <vgg-pytorch_>`_ functionality to U-Net style network for segmentation. This version of VGG is slightly modified so it can be used through torchvision's API. It outputs intermediate features which are normally not output by the base VGG implementation, but are required for segmentation operations. Parameters ---------- *args Arguments to be passed to the parent VGG model. **kwargs Keyword arguments to be passed to the parent VGG model. * ``return_features`` (:py:class:`list`): An optional list of integers indicating the feature layers to be returned from the original module. """ def __init__(self, *args, **kwargs): self._return_features = kwargs.pop("return_features") super().__init__(*args, **kwargs)
[docs] def forward(self, x): outputs = [] # hardwiring of input outputs.append(x.shape[2:4]) for index, m in enumerate(self.features): x = m(x) # extract layers if index in self._return_features: outputs.append(x) return outputs
def _make_vgg16_type_d_for_segmentation(pretrained, batch_norm, progress, **kwargs): if pretrained: kwargs["init_weights"] = False model = VGG4Segmentation( torchvision.models.vgg.make_layers( torchvision.models.vgg.cfgs["D"], batch_norm=batch_norm, ), **kwargs, ) if pretrained: weights = ( torchvision.models.vgg.VGG16_Weights.DEFAULT.url if not batch_norm else torchvision.models.vgg.VGG16_BN_Weights.DEFAULT.url ) state_dict = load_state_dict_from_url(weights, progress=progress) model.load_state_dict(state_dict) # erase VGG head (for classification), not used for segmentation delattr(model, "classifier") delattr(model, "avgpool") return model
[docs] def vgg16_for_segmentation(pretrained=False, progress=True, **kwargs): """Create an instance of VGG16. Parameters ---------- pretrained If True, usees VGG16 pretrained weights. progress If True, shows a progress bar when downloading weights. **kwargs Keyword arguments to be passed to the parent VGG model. * ``return_features`` (:py:class:`list`): An optional list of integers indicating the feature layers to be returned from the original module. Returns ------- Instance of VGG16. """ return _make_vgg16_type_d_for_segmentation( pretrained=pretrained, batch_norm=False, progress=progress, **kwargs )
vgg16_for_segmentation.__doc__ = torchvision.models.vgg16.__doc__
[docs] def vgg16_bn_for_segmentation(pretrained=False, progress=True, **kwargs): """Create an instance of VGG16 with batch norm. Parameters ---------- pretrained If True, usees VGG16 pretrained weights. progress If True, shows a progress bar when downloading weights. **kwargs Keyword arguments to be passed to the parent VGG model. * ``return_features`` (:py:class:`list`): An optional list of integers indicating the feature layers to be returned from the original module. Returns ------- Instance of VGG16. """ return _make_vgg16_type_d_for_segmentation( pretrained=pretrained, batch_norm=True, progress=progress, **kwargs )
vgg16_bn_for_segmentation.__doc__ = torchvision.models.vgg16_bn.__doc__