deeplabv3.rst 851 B

12345678910111213141516171819202122232425262728
  1. DeepLabV3
  2. =========
  3. .. currentmodule:: torchvision.models.segmentation
  4. The DeepLabV3 model is based on the `Rethinking Atrous Convolution for Semantic
  5. Image Segmentation <https://arxiv.org/abs/1706.05587>`__ paper.
  6. .. betastatus:: segmentation module
  7. Model builders
  8. --------------
  9. The following model builders can be used to instantiate a DeepLabV3 model with
  10. different backbones, with or without pre-trained weights. All the model builders
  11. internally rely on the ``torchvision.models.segmentation.deeplabv3.DeepLabV3`` base class. Please
  12. refer to the `source code
  13. <https://github.com/pytorch/vision/blob/main/torchvision/models/segmentation/deeplabv3.py>`_
  14. for more details about this class.
  15. .. autosummary::
  16. :toctree: generated/
  17. :template: function.rst
  18. deeplabv3_mobilenet_v3_large
  19. deeplabv3_resnet50
  20. deeplabv3_resnet101