Xpitfire commited on
Commit
4751f19
1 Parent(s): d250290

Upload config.json

Browse files
Files changed (1) hide show
  1. config.json +51 -0
config.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "num_labels": 13,
3
+
4
+ "unique_colors": [
5
+ [ 0, 0, 0],
6
+ [ 0, 0, 170],
7
+ [ 0, 0, 255],
8
+ [ 0, 85, 255],
9
+ [ 0, 170, 255],
10
+ [ 0, 255, 255],
11
+ [ 85, 255, 170],
12
+ [170, 0, 0],
13
+ [170, 255, 85],
14
+ [255, 0, 0],
15
+ [255, 85, 0],
16
+ [255, 170, 0],
17
+ [255, 255, 0]
18
+ ],
19
+
20
+ "id2label": {
21
+ "0": "unknown",
22
+ "1": "background",
23
+ "2": "facade",
24
+ "3": "window",
25
+ "4": "door",
26
+ "5": "pillar",
27
+ "6": "sill",
28
+ "7": "balcony",
29
+ "8": "blind",
30
+ "9": "cornice",
31
+ "10": "deco",
32
+ "11": "molding",
33
+ "12": "shop"
34
+ },
35
+
36
+ "label2id": {
37
+ "unknown": 0,
38
+ "background": 1,
39
+ "facade": 2,
40
+ "window": 3,
41
+ "door": 4,
42
+ "pillar": 5,
43
+ "sill": 6,
44
+ "balcony": 7,
45
+ "blind": 8,
46
+ "cornice": 9,
47
+ "deco": 10,
48
+ "molding": 11,
49
+ "shop": 12
50
+ }
51
+ }