vfnet_x101-64x4d-mdconv-c3-c5_fpn_ms-2x_coco.py 580 B

1234567891011121314151617
  1. _base_ = './vfnet_r50-mdconv-c3-c5_fpn_ms-2x_coco.py'
  2. model = dict(
  3. backbone=dict(
  4. type='ResNeXt',
  5. depth=101,
  6. groups=64,
  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. norm_eval=True,
  13. style='pytorch',
  14. dcn=dict(type='DCNv2', deform_groups=1, fallback_on_stride=False),
  15. stage_with_dcn=(False, True, True, True),
  16. init_cfg=dict(
  17. type='Pretrained', checkpoint='open-mmlab://resnext101_64x4d')))