reppoints-moment_x101-dconv-c3-c5_fpn-gn_head-gn_2x_coco.py 560 B

12345678910111213141516
  1. _base_ = './reppoints-moment_r50_fpn-gn_head-gn_2x_coco.py'
  2. model = dict(
  3. backbone=dict(
  4. type='ResNeXt',
  5. depth=101,
  6. groups=32,
  7. base_width=4,
  8. num_stages=4,
  9. out_indices=(0, 1, 2, 3),
  10. frozen_stages=1,
  11. norm_cfg=dict(type='BN', requires_grad=True),
  12. style='pytorch',
  13. dcn=dict(type='DCN', deform_groups=1, fallback_on_stride=False),
  14. stage_with_dcn=(False, True, True, True),
  15. init_cfg=dict(
  16. type='Pretrained', checkpoint='open-mmlab://resnext101_32x4d')))