File size: 432 Bytes
32c59c6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from collections import OrderedDict


ROD_CLASSES = OrderedDict(
    {
        1: "banana",
        2: "baseball",
        3: "cowboy hat",
        4: "cup",
        5: "dumbbell",
        6: "hammer",
        7: "laptop",
        8: "microwave",
        9: "mouse",
        10: "orange",
        11: "pillow",
        12: "plate",
        13: "screwdriver",
        14: "skillet",
        15: "spatula",
        16: "vase",
    }
)