fasterrcnn_resnet50_fpn_v2¶
- torchvision.models.detection.fasterrcnn_resnet50_fpn_v2(*, weights: Optional[FasterRCNN_ResNet50_FPN_V2_Weights] = None, progress: bool = True, num_classes: Optional[int] = None, weights_backbone: Optional[ResNet50_Weights] = None, trainable_backbone_layers: Optional[int] = None, **kwargs: Any) FasterRCNN[source]¶
Constructs an improved Faster R-CNN model with a ResNet-50-FPN backbone from Benchmarking Detection Transfer Learning with Vision Transformers paper.
Warning
The detection module is in Beta stage, and backward compatibility is not guaranteed.
It works similarly to Faster R-CNN with ResNet-50 FPN backbone. See
fasterrcnn_resnet50_fpn()for more details.- Parameters:
weights (
FasterRCNN_ResNet50_FPN_V2_Weights, optional) – The pretrained weights to use. SeeFasterRCNN_ResNet50_FPN_V2_Weightsbelow for more details, and possible values. By default, no pre-trained weights are used.progress (bool, optional) – If True, displays a progress bar of the download to stderr. Default is True.
num_classes (int, optional) – number of output classes of the model (including the background)
weights_backbone (
ResNet50_Weights, optional) – The pretrained weights for the backbone.trainable_backbone_layers (int, optional) – number of trainable (not frozen) layers starting from final block. Valid values are between 0 and 5, with 5 meaning all backbone layers are trainable. If
Noneis passed (the default) this value is set to 3.**kwargs – parameters passed to the
torchvision.models.detection.faster_rcnn.FasterRCNNbase class. Please refer to the source code for more details about this class.