Asmit Nayak commited on
Commit
787ea11
1 Parent(s): 20e0c99
config.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "id2label": {
3
+ "0": "button",
4
+ "1": "checked checkbox",
5
+ "2": "unchecked checkbox",
6
+ "3": "checked radio button",
7
+ "4": "unchecked radio button",
8
+ "5": "checked switch",
9
+ "6": "unchecked switch"
10
+ },
11
+ "label2id": {
12
+ "button": 0,
13
+ "checked checkbox": 1,
14
+ "unchecked checkbox": 2,
15
+ "checked radio button": 3,
16
+ "unchecked radio button": 4,
17
+ "checked switch": 5,
18
+ "unchecked switch": 6
19
+ },
20
+ "model_type": "yolov10"
21
+ }
model.onnx → onnx/model.onnx RENAMED
File without changes
preprocessor_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_normalize": false,
3
+ "do_pad": true,
4
+ "do_rescale": true,
5
+ "do_resize": true,
6
+ "feature_extractor_type": "ImageFeatureExtractor",
7
+ "pad_size": 1280,
8
+ "resample": 2,
9
+ "rescale_factor": 0.00392156862745098,
10
+ "size": {
11
+ "longest_edge": 1280
12
+ }
13
+ }