mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 03:16:04 +08:00
* [Feature] Support MobileNetV2 backbone * Fixed import * Fixed test * Fixed test * Fixed dilate * upload model * update table * update table * update bibtex * update MMCV requirement
13 lines
406 B
Python
13 lines
406 B
Python
_base_ = '../pspnet/pspnet_r101-d8_512x1024_80k_cityscapes.py'
|
|
model = dict(
|
|
pretrained='mmcls://mobilenet_v2',
|
|
backbone=dict(
|
|
_delete_=True,
|
|
type='MobileNetV2',
|
|
widen_factor=1.,
|
|
strides=(1, 2, 2, 1, 1, 1, 1),
|
|
dilations=(1, 1, 1, 2, 2, 4, 4),
|
|
out_indices=(1, 2, 4, 6)),
|
|
decode_head=dict(in_channels=320),
|
|
auxiliary_head=dict(in_channels=96))
|