faster-rcnn_regnetx-4GF_fpn_ms-3x_coco.py 524 B

1234567891011121314151617
  1. _base_ = 'faster-rcnn_regnetx-3.2GF_fpn_ms-3x_coco.py'
  2. model = dict(
  3. backbone=dict(
  4. type='RegNet',
  5. arch='regnetx_4.0gf',
  6. out_indices=(0, 1, 2, 3),
  7. frozen_stages=1,
  8. norm_cfg=dict(type='BN', requires_grad=True),
  9. norm_eval=True,
  10. style='pytorch',
  11. init_cfg=dict(
  12. type='Pretrained', checkpoint='open-mmlab://regnetx_4.0gf')),
  13. neck=dict(
  14. type='FPN',
  15. in_channels=[80, 240, 560, 1360],
  16. out_channels=256,
  17. num_outs=5))