mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 15:28:24 +08:00
* [Fix] Fix several config file errors in 2.0 * change _base_ config file name in configs
7 lines
241 B
Python
7 lines
241 B
Python
_base_ = './upernet_r50_4xb2-40k_cityscapes-512x1024.py'
|
|
model = dict(
|
|
pretrained='open-mmlab://resnet18_v1c',
|
|
backbone=dict(depth=18),
|
|
decode_head=dict(in_channels=[64, 128, 256, 512]),
|
|
auxiliary_head=dict(in_channels=256))
|