| 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", | |
| } | |
| ) |