You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

faster_rcnn_hrnetv2p_w40_1x_coco.py 463 B

2 years ago
1234567891011
  1. _base_ = './faster_rcnn_hrnetv2p_w32_1x_coco.py'
  2. model = dict(
  3. backbone=dict(
  4. type='HRNet',
  5. extra=dict(
  6. stage2=dict(num_channels=(40, 80)),
  7. stage3=dict(num_channels=(40, 80, 160)),
  8. stage4=dict(num_channels=(40, 80, 160, 320))),
  9. init_cfg=dict(
  10. type='Pretrained', checkpoint='open-mmlab://msra/hrnetv2_w40')),
  11. neck=dict(type='HRFPN', in_channels=[40, 80, 160, 320], out_channels=256))

No Description

Contributors (3)