samewind / configs /backup /hrnet /faster-rcnn_hrnetv2p-w18-1x_coco.py
scfive
Resolve README.md conflict and continue rebase
e8f2571
raw
history blame contribute delete
455 Bytes
_base_ = './faster-rcnn_hrnetv2p-w32-1x_coco.py'
# model settings
model = dict(
backbone=dict(
extra=dict(
stage2=dict(num_channels=(18, 36)),
stage3=dict(num_channels=(18, 36, 72)),
stage4=dict(num_channels=(18, 36, 72, 144))),
init_cfg=dict(
type='Pretrained', checkpoint='open-mmlab://msra/hrnetv2_w18')),
neck=dict(type='HRFPN', in_channels=[18, 36, 72, 144], out_channels=256))