MG31 commited on
Commit
14a83f9
1 Parent(s): c5879bb

Update YOLOv8 pytorch model with config

Browse files
Files changed (2) hide show
  1. best.pt +3 -0
  2. config.json +24 -0
best.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c40215512dfceec56e1d9034974cfe609b7c8f7129e5a0707c8dd393462e5475
3
+ size 12393522
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": "pytorch",
19
+ "model_format": "pt",
20
+ "input_format": "image",
21
+ "output_format": "object-detection",
22
+ "input_size": [640, 640]
23
+ }
24
+ }