mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 01:05:51 +08:00
* 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>
7 lines
248 B
Python
7 lines
248 B
Python
_base_ = [
|
|
'../_base_/models/dnl_r50-d8.py', '../_base_/datasets/ade20k.py',
|
|
'../_base_/default_runtime.py', '../_base_/schedules/schedule_80k.py'
|
|
]
|
|
model = dict(
|
|
decode_head=dict(num_classes=150), auxiliary_head=dict(num_classes=150))
|