kurnie commited on
Commit
fee457f
·
verified ·
1 Parent(s): 9214bde

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +19 -167
config.json CHANGED
@@ -1,167 +1,19 @@
1
- {
2
- "id2label": {
3
- "0": "person",
4
- "1": "bicycle",
5
- "2": "car",
6
- "3": "motorcycle",
7
- "4": "airplane",
8
- "5": "bus",
9
- "6": "train",
10
- "7": "truck",
11
- "8": "boat",
12
- "9": "traffic light",
13
- "10": "fire hydrant",
14
- "11": "stop sign",
15
- "12": "parking meter",
16
- "13": "bench",
17
- "14": "bird",
18
- "15": "cat",
19
- "16": "dog",
20
- "17": "horse",
21
- "18": "sheep",
22
- "19": "cow",
23
- "20": "elephant",
24
- "21": "bear",
25
- "22": "zebra",
26
- "23": "giraffe",
27
- "24": "backpack",
28
- "25": "umbrella",
29
- "26": "handbag",
30
- "27": "tie",
31
- "28": "suitcase",
32
- "29": "frisbee",
33
- "30": "skis",
34
- "31": "snowboard",
35
- "32": "sports ball",
36
- "33": "kite",
37
- "34": "baseball bat",
38
- "35": "baseball glove",
39
- "36": "skateboard",
40
- "37": "surfboard",
41
- "38": "tennis racket",
42
- "39": "bottle",
43
- "40": "wine glass",
44
- "41": "cup",
45
- "42": "fork",
46
- "43": "knife",
47
- "44": "spoon",
48
- "45": "bowl",
49
- "46": "banana",
50
- "47": "apple",
51
- "48": "sandwich",
52
- "49": "orange",
53
- "50": "broccoli",
54
- "51": "carrot",
55
- "52": "hot dog",
56
- "53": "pizza",
57
- "54": "donut",
58
- "55": "cake",
59
- "56": "chair",
60
- "57": "couch",
61
- "58": "potted plant",
62
- "59": "bed",
63
- "60": "dining table",
64
- "61": "toilet",
65
- "62": "tv",
66
- "63": "laptop",
67
- "64": "mouse",
68
- "65": "remote",
69
- "66": "keyboard",
70
- "67": "cell phone",
71
- "68": "microwave",
72
- "69": "oven",
73
- "70": "toaster",
74
- "71": "sink",
75
- "72": "refrigerator",
76
- "73": "book",
77
- "74": "clock",
78
- "75": "vase",
79
- "76": "scissors",
80
- "77": "teddy bear",
81
- "78": "hair drier",
82
- "79": "toothbrush"
83
- },
84
- "label2id": {
85
- "person": 0,
86
- "bicycle": 1,
87
- "car": 2,
88
- "motorcycle": 3,
89
- "airplane": 4,
90
- "bus": 5,
91
- "train": 6,
92
- "truck": 7,
93
- "boat": 8,
94
- "traffic light": 9,
95
- "fire hydrant": 10,
96
- "stop sign": 11,
97
- "parking meter": 12,
98
- "bench": 13,
99
- "bird": 14,
100
- "cat": 15,
101
- "dog": 16,
102
- "horse": 17,
103
- "sheep": 18,
104
- "cow": 19,
105
- "elephant": 20,
106
- "bear": 21,
107
- "zebra": 22,
108
- "giraffe": 23,
109
- "backpack": 24,
110
- "umbrella": 25,
111
- "handbag": 26,
112
- "tie": 27,
113
- "suitcase": 28,
114
- "frisbee": 29,
115
- "skis": 30,
116
- "snowboard": 31,
117
- "sports ball": 32,
118
- "kite": 33,
119
- "baseball bat": 34,
120
- "baseball glove": 35,
121
- "skateboard": 36,
122
- "surfboard": 37,
123
- "tennis racket": 38,
124
- "bottle": 39,
125
- "wine glass": 40,
126
- "cup": 41,
127
- "fork": 42,
128
- "knife": 43,
129
- "spoon": 44,
130
- "bowl": 45,
131
- "banana": 46,
132
- "apple": 47,
133
- "sandwich": 48,
134
- "orange": 49,
135
- "broccoli": 50,
136
- "carrot": 51,
137
- "hot dog": 52,
138
- "pizza": 53,
139
- "donut": 54,
140
- "cake": 55,
141
- "chair": 56,
142
- "couch": 57,
143
- "potted plant": 58,
144
- "bed": 59,
145
- "dining table": 60,
146
- "toilet": 61,
147
- "tv": 62,
148
- "laptop": 63,
149
- "mouse": 64,
150
- "remote": 65,
151
- "keyboard": 66,
152
- "cell phone": 67,
153
- "microwave": 68,
154
- "oven": 69,
155
- "toaster": 70,
156
- "sink": 71,
157
- "refrigerator": 72,
158
- "book": 73,
159
- "clock": 74,
160
- "vase": 75,
161
- "scissors": 76,
162
- "teddy bear": 77,
163
- "hair drier": 78,
164
- "toothbrush": 79
165
- },
166
- "model_type": "yolov9"
167
- }
 
1
+ {
2
+ "id2label": {
3
+ "0": "plastic",
4
+ "1": "trash",
5
+ "2": "metal",
6
+ "3": "glass",
7
+ "4": "cardboard",
8
+ "5": "paper",
9
+ },
10
+ "label2id": {
11
+ "plastic": 0,
12
+ "trash": 1,
13
+ "metal": 2,
14
+ "glass": 3,
15
+ "cardboard": 4,
16
+ "paper": 5,
17
+ },
18
+ "model_type": "yolov9"
19
+ }