samewind / configs /backup /hrnet /faster-rcnn_hrnetv2p-w40-1x_coco.py
scfive
Resolve README.md conflict and continue rebase
e8f2571
raw
history blame contribute delete
463 Bytes
_base_ = './faster-rcnn_hrnetv2p-w32-1x_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))