mask-rcnn_regnetx-6.4GF_fpn_1x_coco.py 522 B

1234567891011121314151617
  1. _base_ = './mask-rcnn_regnetx-3.2GF_fpn_1x_coco.py'
  2. model = dict(
  3. backbone=dict(
  4. type='RegNet',
  5. arch='regnetx_6.4gf',
  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_6.4gf')),
  13. neck=dict(
  14. type='FPN',
  15. in_channels=[168, 392, 784, 1624],
  16. out_channels=256,
  17. num_outs=5))