* add emanet * fixed bug and typos * add emanet config * fixed padding * fixed identity * rename * rename * add concat_input * fallback to update last * Fixed concat * update EMANet * Add tests * remove self-implement norm Co-authored-by: Jiarui XU <xvjiarui0826@gmail.com>
10 lines
348 B
Python
10 lines
348 B
Python
_base_ = [
|
|
'../_base_/models/emanet_r50-d8.py',
|
|
'../_base_/datasets/cityscapes_769x769.py', '../_base_/default_runtime.py',
|
|
'../_base_/schedules/schedule_80k.py'
|
|
]
|
|
model = dict(
|
|
decode_head=dict(align_corners=True),
|
|
auxiliary_head=dict(align_corners=True))
|
|
test_cfg = dict(mode='slide', crop_size=(769, 769), stride=(513, 513))
|