mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-02 22:46:40 +08:00
* rename ann configs * update ann yml * update * update * update * update * update * update ann readme * update * update deeplabv3 * update readme * fix yml * fix beit
11 lines
410 B
Python
11 lines
410 B
Python
_base_ = './fcn_hr18_4xb4-40k_voc12aug-512x512.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])))
|