gfl_r101-dconv-c3-c5_fpn_ms-2x_coco.py 524 B

123456789101112131415
  1. _base_ = './gfl_r50_fpn_ms-2x_coco.py'
  2. model = dict(
  3. backbone=dict(
  4. type='ResNet',
  5. depth=101,
  6. num_stages=4,
  7. out_indices=(0, 1, 2, 3),
  8. frozen_stages=1,
  9. norm_cfg=dict(type='BN', requires_grad=True),
  10. dcn=dict(type='DCN', deform_groups=1, fallback_on_stride=False),
  11. stage_with_dcn=(False, True, True, True),
  12. norm_eval=True,
  13. style='pytorch',
  14. init_cfg=dict(type='Pretrained',
  15. checkpoint='torchvision://resnet101')))