mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 01:15:49 +08:00
* add isa module * use more readable names, add more comments and exp results * add unittests * remove redundant docstring * Apply suggestions from code review Co-authored-by: Junjun2016 <hejunjun@sjtu.edu.cn> * fix unittest * Update configs * add results * update yml * Update README Co-authored-by: Junjun2016 <hejunjun@sjtu.edu.cn> Co-authored-by: xiexinch <xinchen.xie@qq.com>
7 lines
252 B
Python
7 lines
252 B
Python
_base_ = [
|
|
'../_base_/models/isanet_r50-d8.py', '../_base_/datasets/ade20k.py',
|
|
'../_base_/default_runtime.py', '../_base_/schedules/schedule_160k.py'
|
|
]
|
|
model = dict(
|
|
decode_head=dict(num_classes=150), auxiliary_head=dict(num_classes=150))
|