mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
* add isprs potsdam dataset * add isprs dataset configs * fix lint error * fix potsdam conversion bug * fix error in potsdam class * fix error in potsdam class * add vaihingen dataset * add vaihingen dataset * add vaihingen dataset * fix some description errors. * fix some description errors. * fix some description errors. * upload models & logs of Potsdam * remove vaihingen and add unit test * add chinese readme * add pseudodataset * use mmcv and add class_names * use f-string * add new dataset unittest * add docstring and remove global variables args * fix metafile error in PSPNet * fix pretrained value * Add dataset info * fix typo Co-authored-by: MengzhangLI <mcmong@pku.edu.cn>
10 lines
368 B
Python
10 lines
368 B
Python
_base_ = './fcn_hr18_512x512_80k_potsdam.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)))))
|