fasterrcnn_mobilenet_v3_large_fpn¶
- torchvision.models.detection.fasterrcnn_mobilenet_v3_large_fpn(*, weights: Optional[FasterRCNN_MobileNet_V3_Large_FPN_Weights] = None, progress: bool = True, num_classes: Optional[int] = None, weights_backbone: Optional[MobileNet_V3_Large_Weights] = MobileNet_V3_Large_Weights.IMAGENET1K_V1, trainable_backbone_layers: Optional[int] = None, **kwargs: Any) FasterRCNN [source]¶
构建一个带有 MobileNetV3-Large FPN 主干网络的高分辨率 Faster R-CNN 模型。
警告
检测模块处于 Beta 阶段,不保证向后兼容性。
它与带有 ResNet-50 FPN 主干网络的 Faster R-CNN 类似。更多详细信息请参阅
fasterrcnn_resnet50_fpn()
。示例
>>> model = torchvision.models.detection.fasterrcnn_mobilenet_v3_large_fpn(weights=FasterRCNN_MobileNet_V3_Large_FPN_Weights.DEFAULT) >>> model.eval() >>> x = [torch.rand(3, 300, 400), torch.rand(3, 500, 400)] >>> predictions = model(x)
- 参数:
weights (
FasterRCNN_MobileNet_V3_Large_FPN_Weights
, 可选) – 要使用的预训练权重。更多详细信息和可能的值请参阅下面的FasterRCNN_MobileNet_V3_Large_FPN_Weights
。默认不使用预训练权重。progress (bool, 可选) – 如果为 True,则在 stderr 中显示下载进度条。默认为 True。
num_classes (int, 可选) – 模型的输出类别数(包括背景类)
weights_backbone (
MobileNet_V3_Large_Weights
, 可选) – 主干网络的预训练权重。trainable_backbone_layers (int, 可选) – 从最后一个块开始的可训练(未冻结)层数。有效值为 0 到 6 之间,其中 6 表示所有主干网络层都可训练。如果传入
None
(默认值),则该值设置为 3。**kwargs – 传递给
torchvision.models.detection.faster_rcnn.FasterRCNN
基类的参数。有关此类的更多详细信息,请参阅源代码。
- 类 torchvision.models.detection.FasterRCNN_MobileNet_V3_Large_FPN_Weights(value)[source]¶
上面的模型构建器接受以下值作为
weights
参数。FasterRCNN_MobileNet_V3_Large_FPN_Weights.DEFAULT
等同于FasterRCNN_MobileNet_V3_Large_FPN_Weights.COCO_V1
。您也可以使用字符串,例如weights='DEFAULT'
或weights='COCO_V1'
。FasterRCNN_MobileNet_V3_Large_FPN_Weights.COCO_V1:
这些权重是按照与论文中相似的训练方法生成的。也可作为
FasterRCNN_MobileNet_V3_Large_FPN_Weights.DEFAULT
使用。box_map (在 COCO-val2017 数据集上)
32.8
类别
__background__(背景), person(人), bicycle(自行车), … (省略 88 个)
最小尺寸
高度=1, 宽度=1
参数数量
19386354
训练方法
GFLOPS
4.49
文件大小
74.2 MB
推理变换可在
FasterRCNN_MobileNet_V3_Large_FPN_Weights.COCO_V1.transforms
中找到,并执行以下预处理操作:接受PIL.Image
对象、批处理的(B, C, H, W)
和单个(C, H, W)
图像torch.Tensor
对象。图像会被缩放到[0.0, 1.0]
。