mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 00:46:19 +08:00
* Add D16-MG124 models * Use MMCV DepthSepConv * add OHEM * add warmup * fixed test * fixed test * change to bs 16 * revert config * add models
12 lines
368 B
Python
12 lines
368 B
Python
_base_ = './deeplabv3_r50-d8_512x1024_80k_cityscapes.py'
|
|
model = dict(
|
|
pretrained='open-mmlab://resnet101_v1c',
|
|
backbone=dict(
|
|
depth=101,
|
|
dilations=(1, 1, 1, 2),
|
|
strides=(1, 2, 2, 1),
|
|
multi_grid=(1, 2, 4)),
|
|
decode_head=dict(
|
|
dilations=(1, 6, 12, 18),
|
|
sampler=dict(type='OHEMPixelSampler', min_kept=100000)))
|