| """Deformable Conv Nets with ResNet50-FPN, 3x schedule, MS training.""" | |
| _base_ = "./faster_rcnn_r50_fpn_3x_det_bdd100k.py" | |
| model = dict( | |
| backbone=dict( | |
| dcn=dict(type="DCN", deform_groups=1, fallback_on_stride=False), | |
| stage_with_dcn=(False, True, True, True), | |
| ) | |
| ) | |
| load_from = "https://dl.cv.ethz.ch/bdd100k/det/models/faster_rcnn_r50_fpn_dconv_3x_det_bdd100k.pth" | |