fcn.rst 727 B

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