mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
* Add Vaihingen * upload models&logs of vaihingen * fix unit test * fix dataset pipeline * fix unit test coverage * fix vaihingen docstring
10 lines
374 B
Python
10 lines
374 B
Python
_base_ = './fcn_hr18_4x4_512x512_80k_vaihingen.py'
|
|
model = dict(
|
|
pretrained='open-mmlab://msra/hrnetv2_w18_small',
|
|
backbone=dict(
|
|
extra=dict(
|
|
stage1=dict(num_blocks=(2, )),
|
|
stage2=dict(num_blocks=(2, 2)),
|
|
stage3=dict(num_modules=3, num_blocks=(2, 2, 2)),
|
|
stage4=dict(num_modules=2, num_blocks=(2, 2, 2, 2)))))
|