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.

cascade_rcnn_hrnetv2p_w40_20e_coco.py 482 B

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

No Description

Contributors (3)