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>
11 lines
411 B
Python
11 lines
411 B
Python
_base_ = './fcn_hr18_480x480_80k_pascal_context.py'
|
|
model = dict(
|
|
pretrained='open-mmlab://msra/hrnetv2_w48',
|
|
backbone=dict(
|
|
extra=dict(
|
|
stage2=dict(num_channels=(48, 96)),
|
|
stage3=dict(num_channels=(48, 96, 192)),
|
|
stage4=dict(num_channels=(48, 96, 192, 384)))),
|
|
decode_head=dict(
|
|
in_channels=[48, 96, 192, 384], channels=sum([48, 96, 192, 384])))
|