show / mmdetection-2.26.0 /configs /hrnet /htc_hrnetv2p_w40_20e_coco.py
camenduru's picture
thanks to show ❤
3bbb319
raw
history blame
No virus
456 Bytes
_base_ = './htc_hrnetv2p_w32_20e_coco.py'
model = dict(
backbone=dict(
type='HRNet',
extra=dict(
stage2=dict(num_channels=(40, 80)),
stage3=dict(num_channels=(40, 80, 160)),
stage4=dict(num_channels=(40, 80, 160, 320))),
init_cfg=dict(
type='Pretrained', checkpoint='open-mmlab://msra/hrnetv2_w40')),
neck=dict(type='HRFPN', in_channels=[40, 80, 160, 320], out_channels=256))