faster-rcnn_regnetx-400MF_fpn_ms-3x_coco.py 522 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_400mf',
  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_400mf')),
  13. neck=dict(
  14. type='FPN',
  15. in_channels=[32, 64, 160, 384],
  16. out_channels=256,
  17. num_outs=5))