* Add DNLHead * add configs * add weight decay mult * add norm back * Update README.md * matched inference performance * Fixed shape * sep conv_out * no norm * add norm back * complete model zoo * add tests * Add test forward * Add more test Co-authored-by: Jiarui XU <xvjiarui0826@gmail.com>
10 lines
345 B
Python
10 lines
345 B
Python
_base_ = [
|
|
'../_base_/models/dnl_r50-d8.py',
|
|
'../_base_/datasets/cityscapes_769x769.py', '../_base_/default_runtime.py',
|
|
'../_base_/schedules/schedule_40k.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))
|