mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 00:46:19 +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>
8 lines
263 B
Python
8 lines
263 B
Python
_base_ = [
|
|
'../_base_/models/isanet_r50-d8.py',
|
|
'../_base_/datasets/pascal_voc12_aug.py', '../_base_/default_runtime.py',
|
|
'../_base_/schedules/schedule_40k.py'
|
|
]
|
|
model = dict(
|
|
decode_head=dict(num_classes=21), auxiliary_head=dict(num_classes=21))
|