gfl_x101-32x4d_fpn_ms-2x_coco.py 456 B

12345678910111213141516
  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. norm_eval=True,
  14. style='pytorch',
  15. init_cfg=dict(
  16. type='Pretrained', checkpoint='open-mmlab://resnext101_32x4d')))