mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-05-25 18:22:18 +08:00
* Add Pascal Context to mmsegmentation * Add benchmark result to Pascal Context * fix mmcv version * fix code syntax * fix code syntax again * Update mmseg/models/segmentors/encoder_decoder.py update hint Co-authored-by: Jerry Jiarui XU <xvjiarui0826@gmail.com> * update comment * fix pascal context model path * fix model path mistake again * fix model path mistake again * fix model path mistakes again Co-authored-by: Jerry Jiarui XU <xvjiarui0826@gmail.com>
10 lines
406 B
Python
10 lines
406 B
Python
_base_ = [
|
|
'../_base_/models/pspnet_r50-d8.py',
|
|
'../_base_/datasets/pascal_context.py', '../_base_/default_runtime.py',
|
|
'../_base_/schedules/schedule_80k.py'
|
|
]
|
|
model = dict(
|
|
decode_head=dict(num_classes=60), auxiliary_head=dict(num_classes=60))
|
|
test_cfg = dict(mode='slide', crop_size=(480, 480), stride=(320, 320))
|
|
optimizer = dict(type='SGD', lr=0.004, momentum=0.9, weight_decay=0.0001)
|