mhassanch commited on
Commit
9f9b33c
·
verified ·
1 Parent(s): c3ea05f

WALDO30_ONNX EXPORT

Browse files
Files changed (3) hide show
  1. config.json +31 -0
  2. onnx/model.onnx +3 -0
  3. preprocessor_config.json +13 -0
config.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "yolov8",
3
+ "id2label": {
4
+ "0": "LightVehicle",
5
+ "1": "Person",
6
+ "2": "Building",
7
+ "3": "UPole",
8
+ "4": "Boat",
9
+ "5": "Bike",
10
+ "6": "Container",
11
+ "7": "Truck",
12
+ "8": "Gastank",
13
+ "10": "Digger",
14
+ "11": "Solarpanels",
15
+ "12": "Bus"
16
+ },
17
+ "label2id": {
18
+ "LightVehicle": 0,
19
+ "Person": 1,
20
+ "Building": 2,
21
+ "UPole": 3,
22
+ "Boat": 4,
23
+ "Bike": 5,
24
+ "Container": 6,
25
+ "Truck": 7,
26
+ "Gastank": 8,
27
+ "Digger": 10,
28
+ "Solarpanels": 11,
29
+ "Bus": 12
30
+ }
31
+ }
onnx/model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be80223d0d59f36baffb9542b52b087dee3712c8e8d120b65453576b69796c27
3
+ size 103632215
preprocessor_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_normalize": false,
3
+ "do_pad": false,
4
+ "do_rescale": true,
5
+ "do_resize": true,
6
+ "feature_extractor_type": "ImageFeatureExtractor",
7
+ "resample": 2,
8
+ "rescale_factor": 0.00392156862745098,
9
+ "size": {
10
+ "width": 640,
11
+ "height": 640
12
+ }
13
+ }