-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlabels_dict.py
71 lines (71 loc) · 1.24 KB
/
labels_dict.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
labels_dict = {
"dad": "dad",
"mom": "mom",
"boy": "boy",
"girl": "girl",
"marriage": "marriage",
"baby": "baby",
"cold": "cold",
"food": "food",
"drink": "drink",
"cup": "cup",
"water": "water",
"cookie": "cookie",
"shirt": "shirt",
"mad": "mad",
"sorry": "sorry",
"love": "love",
"sad": "sad",
"A": "A",
"B": "B",
"C": "C",
"D": "D",
"E": "E",
"F": "F",
"G": "G",
"H": "H",
"I": "I",
"K": "K",
"L": "L",
"M": "M",
"N": "N",
"O": "O",
"P": "P",
"Q": "Q",
"R": "R",
"S": "S",
"T": "T",
"U": "U",
"V": "V",
"W": "W",
"X": "X",
"Y": "Y",
"3": "3",
"5": "5",
"6": "6",
"7": "7",
"8": "8",
"9": "9",
"10": "10",
"again": "again",
"applause": "applause",
"full": "full",
"help": "help",
"no": "no",
"learn": "learn",
"money": "money",
"more": "more",
"name": "name",
"know": "know",
"person": "person",
"please": "please",
"short": "short",
"stop": "stop",
"tall": "tall",
"teach": "teach",
"thank you": "thank you",
"understand": "understand",
"what": "what",
"yellow": "yellow",
"yes": "yes",
}