Datasets:
VinayHajare
commited on
Commit
·
95dfebc
1
Parent(s):
b04160e
Update classes.py
Browse files- classes.py +37 -0
classes.py
CHANGED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from collections import OrderedDict
|
2 |
+
|
3 |
+
|
4 |
+
FRUITS30_CLASSES = OrderedDict(
|
5 |
+
{
|
6 |
+
"0" : "acerolas",
|
7 |
+
"1" : "apples",
|
8 |
+
"2" : "apricots",
|
9 |
+
"3" : "avocados",
|
10 |
+
"4" : "bananas",
|
11 |
+
"5" : "blackberries",
|
12 |
+
"6" : "blueberries",
|
13 |
+
"7" : "cantaloupes",
|
14 |
+
"8" : "cherries",
|
15 |
+
"9" : "coconuts",
|
16 |
+
"10" : "figs",
|
17 |
+
"11" : "grapefruits",
|
18 |
+
"12" : "grapes",
|
19 |
+
"13" : "guava",
|
20 |
+
"14" : "kiwifruit",
|
21 |
+
"15" : "lemons",
|
22 |
+
"16" : "limes",
|
23 |
+
"17" : "mangos",
|
24 |
+
"18" : "olives",
|
25 |
+
"19" : "oranges",
|
26 |
+
"20" : "passionfruit",
|
27 |
+
"21" : "peaches",
|
28 |
+
"22" : "pears",
|
29 |
+
"23" : "pineapples",
|
30 |
+
"24" : "plums",
|
31 |
+
"25" : "pomegranates",
|
32 |
+
"26" : "raspberries",
|
33 |
+
"27" : "strawberries",
|
34 |
+
"28" : "tomatoes",
|
35 |
+
"29" : "watermelons"
|
36 |
+
}
|
37 |
+
)
|