mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 12:05:34 +08:00
* [Feature] Support Resnet strikes back * fix url * [Feature] Add multi machine `dist_train`. (#1383) * Add training startup documentation * fix * fix * fix * fix * fix * fix * fix * fix * fix * modify R-50b rsb Co-authored-by: FangjianLin <93248678+linfangjian01@users.noreply.github.com>
8 lines
299 B
Python
8 lines
299 B
Python
_base_ = [
|
|
'../_base_/models/pspnet_r50-d8.py', '../_base_/datasets/cityscapes.py',
|
|
'../_base_/default_runtime.py', '../_base_/schedules/schedule_80k.py'
|
|
]
|
|
model = dict(
|
|
pretrained='torchvision://resnet50',
|
|
backbone=dict(type='ResNet', dilations=(1, 1, 2, 4), strides=(1, 2, 2, 2)))
|