gfl_x101-32x4d-dconv-c4-c5_fpn_ms-2x_coco.py 580 B

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