jsolow commited on
Commit
7bf0cb8
1 Parent(s): 56c8e47

Create labels.py

Browse files
Files changed (1) hide show
  1. labels.py +103 -0
labels.py ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ CLASS_LABELS = [
2
+ "Apple pie",
3
+ "Baby back ribs",
4
+ "Baklava",
5
+ "Beef carpaccio",
6
+ "Beef tartare",
7
+ "Beet salad",
8
+ "Beignets",
9
+ "Bibimbap",
10
+ "Bread pudding",
11
+ "Breakfast burrito",
12
+ "Bruschetta",
13
+ "Caesar salad",
14
+ "Cannoli",
15
+ "Caprese salad",
16
+ "Carrot cake",
17
+ "Ceviche",
18
+ "Cheesecake",
19
+ "Cheese plate",
20
+ "Chicken curry",
21
+ "Chicken quesadilla",
22
+ "Chicken wings",
23
+ "Chocolate cake",
24
+ "Chocolate mousse",
25
+ "Churros",
26
+ "Clam chowder",
27
+ "Club sandwich",
28
+ "Crab cakes",
29
+ "Creme brulee",
30
+ "Croque madame",
31
+ "Cup cakes",
32
+ "Deviled eggs",
33
+ "Donuts",
34
+ "Dumplings",
35
+ "Edamame",
36
+ "Eggs benedict",
37
+ "Escargots",
38
+ "Falafel",
39
+ "Filet mignon",
40
+ "Fish and chips",
41
+ "Foie gras",
42
+ "French fries",
43
+ "French onion soup",
44
+ "French toast",
45
+ "Fried calamari",
46
+ "Fried rice",
47
+ "Frozen yogurt",
48
+ "Garlic bread",
49
+ "Gnocchi",
50
+ "Greek salad",
51
+ "Grilled cheese sandwich",
52
+ "Grilled salmon",
53
+ "Guacamole",
54
+ "Gyoza",
55
+ "Hamburger",
56
+ "Hot and sour soup",
57
+ "Hot dog",
58
+ "Huevos rancheros",
59
+ "Hummus",
60
+ "Ice cream",
61
+ "Lasagna",
62
+ "Lobster bisque",
63
+ "Lobster roll sandwich",
64
+ "Macaroni and cheese",
65
+ "Macarons",
66
+ "Miso soup",
67
+ "Mussels",
68
+ "Nachos",
69
+ "Omelette",
70
+ "Onion rings",
71
+ "Oysters",
72
+ "Pad thai",
73
+ "Paella",
74
+ "Pancakes",
75
+ "Panna cotta",
76
+ "Peking duck",
77
+ "Pho",
78
+ "Pizza",
79
+ "Pork chop",
80
+ "Poutine",
81
+ "Prime rib",
82
+ "Pulled pork sandwich",
83
+ "Ramen",
84
+ "Ravioli",
85
+ "Red velvet cake",
86
+ "Risotto",
87
+ "Samosa",
88
+ "Sashimi",
89
+ "Scallops",
90
+ "Seaweed salad",
91
+ "Shrimp and grits",
92
+ "Spaghetti bolognese",
93
+ "Spaghetti carbonara",
94
+ "Spring rolls",
95
+ "Steak",
96
+ "Strawberry shortcake",
97
+ "Sushi",
98
+ "Tacos",
99
+ "Takoyaki",
100
+ "Tiramisu",
101
+ "Tuna tartare",
102
+ "Waffles",
103
+ ]