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.

mask_rcnn_hrnetv2p_w18_1x_coco.py 436 B

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

No Description

Contributors (3)