solov2_x101-dcn_fpn_ms-3x_coco.py 560 B

1234567891011121314151617
  1. _base_ = './solov2_r50_fpn_ms-3x_coco.py'
  2. # model settings
  3. model = dict(
  4. backbone=dict(
  5. type='ResNeXt',
  6. depth=101,
  7. groups=64,
  8. base_width=4,
  9. dcn=dict(type='DCNv2', deformable_groups=1, fallback_on_stride=False),
  10. stage_with_dcn=(False, True, True, True),
  11. init_cfg=dict(
  12. type='Pretrained', checkpoint='open-mmlab://resnext101_64x4d')),
  13. mask_head=dict(
  14. mask_feature_head=dict(conv_cfg=dict(type='DCNv2')),
  15. dcn_cfg=dict(type='DCNv2'),
  16. dcn_apply_to_all_conv=True))