[f1e01c]: / configs / hrnet / fcn_hr48_512x512_160k_ade20k.py

Download this file

11 lines (10 with data), 404 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
_base_ = './fcn_hr18_512x512_160k_ade20k.py'
model = dict(
pretrained='open-mmlab://msra/hrnetv2_w48',
backbone=dict(
extra=dict(
stage2=dict(num_channels=(48, 96)),
stage3=dict(num_channels=(48, 96, 192)),
stage4=dict(num_channels=(48, 96, 192, 384)))),
decode_head=dict(
in_channels=[48, 96, 192, 384], channels=sum([48, 96, 192, 384])))