vfnet_res2net-101_fpn_ms-2x_coco.py 459 B

12345678910111213141516
  1. _base_ = './vfnet_r50_fpn_ms-2x_coco.py'
  2. model = dict(
  3. backbone=dict(
  4. type='Res2Net',
  5. depth=101,
  6. scales=4,
  7. base_width=26,
  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. init_cfg=dict(
  15. type='Pretrained',
  16. checkpoint='open-mmlab://res2net101_v1d_26w_4s')))