Skip to content

Commit 006dbaf

Browse files
authored
Update context_search.py
Semantic segmentation
1 parent c63f6c0 commit 006dbaf

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

sota_extractor2/models/linking/context_search.py

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,13 @@
3838
'NIQE': ['niqe'],
3939
'BLINDS-II': ['blinds-ii'],
4040
'FSIM': ['fsim'],
41+
# SEMANTIC SEGMENTATION
42+
'Mean iOU': ['miou', 'mean iou', 'mean iu'],
43+
'Pixel Accuracy': ['pixel accuracy', 'pixel acc', 'pixel acc.'],
44+
'Class iOU': ['class iou', 'iou cla.'],
45+
'Category iOU': ['cat iou', 'iou cat.'],
46+
'Class iiOU': ['class iiou', 'iiou cla.'],
47+
'Category iiOU': ['cat iiou', 'iiou cat.'],
4148
}
4249

4350
# datasets[taxonomy name] is a list of normalized evidences for taxonomy name
@@ -112,7 +119,15 @@
112119
'RainSynAll100': ['rainsynall100'],
113120
'SPA-DATA': ['spa-data'],
114121
'LasVR': ['lasvar'],
115-
122+
# SEMANTIC SEGMENTATION
123+
'PASCAL VOC 2012': ['voc 2012', 'pascal voc 2012'],
124+
'ADE20K': ['ade20k'],
125+
'ImageNet': ['imagenet'],
126+
'Cityscapes': ['cityscapes'],
127+
'PASCAL-Context': ['pascal-context'],
128+
'PASCAL-Person-Part': ['pascal-person-part'],
129+
'ParseNet': ['parsenet'],
130+
'LIP': ['lip'],
116131
}
117132

118133
datasets = {k:(v+['test']) for k,v in datasets.items()}

0 commit comments

Comments
 (0)