-
Notifications
You must be signed in to change notification settings - Fork 7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Added MaskRCNN to the new doc (#5900)
* docs: Added MaskRCNN to new doc * docs: Updated docstring * ufmt Co-authored-by: FG Fernandez <�[email protected]> Co-authored-by: Nicolas Hug <[email protected]>
- Loading branch information
1 parent
f014841
commit 557c5da
Showing
3 changed files
with
68 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Mask R-CNN | ||
========== | ||
|
||
.. currentmodule:: torchvision.models.detection | ||
|
||
The Mask R-CNN model is based on the `Mask R-CNN <https://arxiv.org/abs/1703.06870>`__ | ||
paper. | ||
|
||
|
||
Model builders | ||
-------------- | ||
|
||
The following model builders can be used to instantiate a Mask R-CNN model, with or | ||
without pre-trained weights. All the model builders internally rely on the | ||
``torchvision.models.detection.mask_rcnn.MaskRCNN`` base class. Please refer to the `source | ||
code | ||
<https://github.com/pytorch/vision/blob/main/torchvision/models/detection/mask_rcnn.py>`_ for | ||
more details about this class. | ||
|
||
.. autosummary:: | ||
:toctree: generated/ | ||
:template: function.rst | ||
|
||
maskrcnn_resnet50_fpn | ||
maskrcnn_resnet50_fpn_v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters