mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
* [Refactor] Match paddle seg weight * Match inference * fix exp setting * delete comment and rename config files * replace hard code with config parameters * fix ppm concat order * remove hardcode * update result * fix typo * complement docstring * complement FutureFusionModule docstring * modify log link
11 lines
341 B
Python
11 lines
341 B
Python
_base_ = [
|
|
'../_base_/models/fast_scnn.py', '../_base_/datasets/cityscapes.py',
|
|
'../_base_/default_runtime.py', '../_base_/schedules/schedule_160k.py'
|
|
]
|
|
|
|
# Re-config the data sampler.
|
|
data = dict(samples_per_gpu=4, workers_per_gpu=4)
|
|
|
|
# Re-config the optimizer.
|
|
optimizer = dict(type='SGD', lr=0.12, momentum=0.9, weight_decay=4e-5)
|