Oblix commited on
Commit
d03632e
1 Parent(s): 3ae1f28

Upload 3 files

Browse files
Files changed (3) hide show
  1. config.json +29 -0
  2. onnx/model.onnx +3 -0
  3. preprocessor_config.json +13 -0
config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "id2label": {
3
+ "0": "Caption",
4
+ "1": "Footnote",
5
+ "2": "Formula",
6
+ "3": "List-item",
7
+ "4": "Page-footer",
8
+ "5": "Page-header",
9
+ "6": "Picture",
10
+ "7": "Section-header",
11
+ "8": "Table",
12
+ "9": "Text",
13
+ "10": "Title"
14
+ },
15
+ "label2id": {
16
+ "Caption": 0,
17
+ "Footnote": 1,
18
+ "Formula": 2,
19
+ "List-item": 3,
20
+ "Page-footer": 4,
21
+ "Page-header": 5,
22
+ "Picture": 6,
23
+ "Section-header": 7,
24
+ "Table": 8,
25
+ "Text": 9,
26
+ "Title": 10
27
+ },
28
+ "model_type": "yolov10"
29
+ }
onnx/model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7dede84c39f73f9ee823765d64a134ec82c9771a369384a273e96376be7284d6
3
+ size 61804751
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": 640,
8
+ "resample": 2,
9
+ "rescale_factor": 0.00392156862745098,
10
+ "size": {
11
+ "longest_edge": 640
12
+ }
13
+ }