uniformer_image_detection / configs /hrnet /fcos_hrnetv2p_w18_gn-head_4x4_1x_coco.py
SakuraD's picture
update
cdfecf8
raw
history blame
No virus
392 Bytes
_base_ = './fcos_hrnetv2p_w32_gn-head_4x4_1x_coco.py'
model = dict(
pretrained='open-mmlab://msra/hrnetv2_w18',
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)))),
neck=dict(type='HRFPN', in_channels=[18, 36, 72, 144], out_channels=256))