Improve the accuracy of Detection & Segmentation models by using SOTA recipes and primitives 路 Issue #5307 路 pytorch/vision (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Description
馃殌 The feature
Similar to #3995 but focus on Object Detection and Segmentation.
Kick-off a Batteries Included phase 2 project that will focus on improving object detection and segmentation. After adding the necessary primitives, create a new recipe that improves the accuracy of existing models and retrain them to offer better weights to the community.
Results
Best currently available models achieved:
- RetinaNet ResNet50 FPN: Add RetinaNet improved weights #5756
- Old
retinanet_resnet50_fpn
: 36.4 mAP - New
retinanet_resnet50_fpn_v2
: 41.5 mAP (+5.1)
- Old
- MaskRCNN ResNet50 FPN: Add MaskRCNN improved weights #5773
- Old
maskrcnn_resnet50_fpn
: 37.9 box mAP / 34.6 mask mAP - New
maskrcnn_resnet50_fpn_v2
: 47.4 box mAP / 41.8 mask mAP (+9.5/+7.2)
- Old
- FasterRCNN ResNet50 FPN: Add FasterRCNN improved weights #5763
- Old
fasterrcnn_resnet50_fpn
: 37.0 mAP - New
fasterrcnn_resnet50_fpn_v2
: 46.7 mAP (+9.7)
- Old
The above results were achieved by building on top of work done by @rbgirshick, @pdollar, @vaibhava0, @fmassa and @xiaohu2015.