|
| 1 | +# DetectoRS |
| 2 | + |
| 3 | +## Introduction |
| 4 | + |
| 5 | +We provide the config files for [DetectoRS: Detecting Objects with Recursive Feature Pyramid and Switchable Atrous Convolution](https://arxiv.org/pdf/2006.02334.pdf). |
| 6 | + |
| 7 | +```BibTeX |
| 8 | +@article{qiao2020detectors, |
| 9 | + title={DetectoRS: Detecting Objects with Recursive Feature Pyramid and Switchable Atrous Convolution}, |
| 10 | + author={Qiao, Siyuan and Chen, Liang-Chieh and Yuille, Alan}, |
| 11 | + journal={arXiv preprint arXiv:2006.02334}, |
| 12 | + year={2020} |
| 13 | +} |
| 14 | +``` |
| 15 | + |
| 16 | +## Results and Models |
| 17 | + |
| 18 | +DetectoRS includes two major components: |
| 19 | + |
| 20 | +- Recursive Feature Pyramid (RFP). |
| 21 | +- Switchable Atrous Convolution (SAC). |
| 22 | + |
| 23 | +They can be used independently. |
| 24 | +Combining them together results in DetectoRS. |
| 25 | +The results on COCO 2017 val are shown in the below table. |
| 26 | + |
| 27 | +| Method | Detector | Lr schd | Mem (GB) | Inf time (fps) | box AP | mask AP | Download | |
| 28 | +|:------:|:--------:|:-------:|:--------:|:--------------:|:------:|:-------:|:--------:| |
| 29 | +| RFP | Cascade + ResNet-50 | 1x | 7.5 | - | 44.8 | | [model](https://open-mmlab.s3.ap-northeast-2.amazonaws.com/mmdetection/v2.0/detectors/cascade_rcnn_r50_rfp_1x_coco/cascade_rcnn_r50_rfp_1x_coco-8cf51bfd.pth) | [log](https://open-mmlab.s3.ap-northeast-2.amazonaws.com/mmdetection/v2.0/detectors/cascade_rcnn_r50_rfp_1x_coco/cascade_rcnn_r50_rfp_1x_coco_20200624_104126.log.json) | |
| 30 | +| SAC | Cascade + ResNet-50 | 1x | 5.6 | - | 45.0| | [model](https://open-mmlab.s3.ap-northeast-2.amazonaws.com/mmdetection/v2.0/detectors/cascade_rcnn_r50_sac_1x_coco/cascade_rcnn_r50_sac_1x_coco-24bfda62.pth) | [log](https://open-mmlab.s3.ap-northeast-2.amazonaws.com/mmdetection/v2.0/detectors/cascade_rcnn_r50_sac_1x_coco/cascade_rcnn_r50_sac_1x_coco_20200624_104402.log.json) | |
| 31 | +| DetectoRS | Cascade + ResNet-50 | 1x | 9.9 | - | 46.9 | | [model](https://open-mmlab.s3.ap-northeast-2.amazonaws.com/mmdetection/v2.0/detectors/detectors_cascade_rcnn_r50_1x_coco/detectors_cascade_rcnn_r50_1x_coco-0db1ab6a.pth) | [log](https://open-mmlab.s3.ap-northeast-2.amazonaws.com/mmdetection/v2.0/detectors/detectors_cascade_rcnn_r50_1x_coco/detectors_cascade_rcnn_r50_1x_coco_20200624_103448.log.json) | |
| 32 | +| RFP | HTC + ResNet-50 | 1x | 11.2 | - | 46.6 | 40.9 | [model](https://open-mmlab.s3.ap-northeast-2.amazonaws.com/mmdetection/v2.0/detectors/htc_r50_rfp_1x_coco/htc_r50_rfp_1x_coco-8ff87c51.pth) | [log](https://open-mmlab.s3.ap-northeast-2.amazonaws.com/mmdetection/v2.0/detectors/htc_r50_rfp_1x_coco/htc_r50_rfp_1x_coco_20200624_103053.log.json) | |
| 33 | +| SAC | HTC + ResNet-50 | 1x | 9.3 | - | 46.4 | 40.9 | [model](https://open-mmlab.s3.ap-northeast-2.amazonaws.com/mmdetection/v2.0/detectors/htc_r50_sac_1x_coco/htc_r50_sac_1x_coco-bfa60c54.pth) | [log](https://open-mmlab.s3.ap-northeast-2.amazonaws.com/mmdetection/v2.0/detectors/htc_r50_sac_1x_coco/htc_r50_sac_1x_coco_20200624_103111.log.json) | |
| 34 | +| DetectoRS | HTC + ResNet-50 | 1x | 13.6 | - | 49.1 | 42.6 | [model](https://open-mmlab.s3.ap-northeast-2.amazonaws.com/mmdetection/v2.0/detectors/detectors_htc_r50_1x_coco/detectors_htc_r50_1x_coco-329b1453.pth) | [log](https://open-mmlab.s3.ap-northeast-2.amazonaws.com/mmdetection/v2.0/detectors/detectors_htc_r50_1x_coco/detectors_htc_r50_1x_coco_20200624_103659.log.json) | |
| 35 | + |
| 36 | +*Note*: This is a re-implementation based on MMDetection-V2. |
| 37 | +The original implementation is based on MMDetection-V1. |
0 commit comments