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_w18_20e_coco.py 457 B

2 years ago
1234567891011
  1. _base_ = './cascade_rcnn_hrnetv2p_w32_20e_coco.py'
  2. # model settings
  3. model = dict(
  4. backbone=dict(
  5. extra=dict(
  6. stage2=dict(num_channels=(18, 36)),
  7. stage3=dict(num_channels=(18, 36, 72)),
  8. stage4=dict(num_channels=(18, 36, 72, 144))),
  9. init_cfg=dict(
  10. type='Pretrained', checkpoint='open-mmlab://msra/hrnetv2_w18')),
  11. neck=dict(type='HRFPN', in_channels=[18, 36, 72, 144], out_channels=256))

No Description

Contributors (3)