Spaces:
Runtime error
Runtime error
Create call_labels.py
Browse files- call_labels.py +71 -0
call_labels.py
ADDED
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
def call_labels():
|
2 |
+
labels = {
|
3 |
+
"0": "airport_inside",
|
4 |
+
"1": "artstudio",
|
5 |
+
"2": "auditorium",
|
6 |
+
"3": "bakery",
|
7 |
+
"4": "bar",
|
8 |
+
"5": "bathroom",
|
9 |
+
"6": "bedroom",
|
10 |
+
"7": "bookstore",
|
11 |
+
"8": "bowling",
|
12 |
+
"9": "buffet",
|
13 |
+
"10": "casino",
|
14 |
+
"11": "children_room",
|
15 |
+
"12": "church_inside",
|
16 |
+
"13": "classroom",
|
17 |
+
"14": "cloister",
|
18 |
+
"15": "closet",
|
19 |
+
"16": "clothingstore",
|
20 |
+
"17": "computerroom",
|
21 |
+
"18": "concert_hall",
|
22 |
+
"19": "corridor",
|
23 |
+
"20": "deli",
|
24 |
+
"21": "dentaloffice",
|
25 |
+
"22": "dining_room",
|
26 |
+
"23": "elevator",
|
27 |
+
"24": "fastfood_restaurant",
|
28 |
+
"25": "florist",
|
29 |
+
"26": "gameroom",
|
30 |
+
"27": "garage",
|
31 |
+
"28": "greenhouse",
|
32 |
+
"29": "grocerystore",
|
33 |
+
"30": "gym",
|
34 |
+
"31": "hairsalon",
|
35 |
+
"32": "hospitalroom",
|
36 |
+
"33": "inside_bus",
|
37 |
+
"34": "inside_subway",
|
38 |
+
"35": "jewelleryshop",
|
39 |
+
"36": "kindergarden",
|
40 |
+
"37": "kitchen",
|
41 |
+
"38": "laboratorywet",
|
42 |
+
"39": "laundromat",
|
43 |
+
"40": "library",
|
44 |
+
"41": "livingroom",
|
45 |
+
"42": "lobby",
|
46 |
+
"43": "locker_room",
|
47 |
+
"44": "mall",
|
48 |
+
"45": "meeting_room",
|
49 |
+
"46": "movietheater",
|
50 |
+
"47": "museum",
|
51 |
+
"48": "nursery",
|
52 |
+
"49": "office",
|
53 |
+
"50": "operating_room",
|
54 |
+
"51": "pantry",
|
55 |
+
"52": "poolinside",
|
56 |
+
"53": "prisoncell",
|
57 |
+
"54": "restaurant",
|
58 |
+
"55": "restaurant_kitchen",
|
59 |
+
"56": "shoeshop",
|
60 |
+
"57": "stairscase",
|
61 |
+
"58": "studiomusic",
|
62 |
+
"59": "subway",
|
63 |
+
"60": "toystore",
|
64 |
+
"61": "trainstation",
|
65 |
+
"62": "tv_studio",
|
66 |
+
"63": "videostore",
|
67 |
+
"64": "waitingroom",
|
68 |
+
"65": "warehouse",
|
69 |
+
"66": "winecellar"
|
70 |
+
}
|
71 |
+
return labels
|