mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 01:36:15 +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
375 B
Python
10 lines
375 B
Python
_base_ = './fcn_hr18_480x480_40k_pascal_context.py'
|
|
model = dict(
|
|
pretrained='open-mmlab://msra/hrnetv2_w18_small',
|
|
backbone=dict(
|
|
extra=dict(
|
|
stage1=dict(num_blocks=(2, )),
|
|
stage2=dict(num_blocks=(2, 2)),
|
|
stage3=dict(num_modules=3, num_blocks=(2, 2, 2)),
|
|
stage4=dict(num_modules=2, num_blocks=(2, 2, 2, 2)))))
|