Update YOLOv8 ONNX model with config
Browse files- config.json +24 -0
config.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"task": "object-detection",
|
3 |
+
"pipeline_tag": "object-detection",
|
4 |
+
"labels": [
|
5 |
+
"Road_No_Parking",
|
6 |
+
"Road_Speed_Limit_in_School_Zone",
|
7 |
+
"Road_School_Zone",
|
8 |
+
"Crosswalk",
|
9 |
+
"Road_No_Stopping_or_Parking",
|
10 |
+
"Road_No_Stopping_Zone",
|
11 |
+
"stop",
|
12 |
+
"traffic_lane_yellow_solid",
|
13 |
+
"school_zone",
|
14 |
+
"no_parking",
|
15 |
+
"fire_hydrant"
|
16 |
+
],
|
17 |
+
"model": {
|
18 |
+
"framework": "onnx",
|
19 |
+
"model_format": "onnx",
|
20 |
+
"input_format": "image",
|
21 |
+
"output_format": "object-detection",
|
22 |
+
"input_size": [640, 640]
|
23 |
+
}
|
24 |
+
}
|