darknoah99 commited on
Commit
9d34f34
·
verified ·
1 Parent(s): 60d22bc

Upload 3 files

Browse files
Files changed (3) hide show
  1. config.json +27 -0
  2. onnx/model.onnx +3 -0
  3. preprocessor_config.json +13 -0
config.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "id2label": {
3
+ "0": "title",
4
+ "1": "plain_text",
5
+ "2": "table",
6
+ "3": "figure",
7
+ "4": "figure_caption",
8
+ "5": "table",
9
+ "6": "table_caption",
10
+ "7": "table_footnote",
11
+ "8": "isolate_formula",
12
+ "9": "formula_caption"
13
+ },
14
+ "label2id": {
15
+ "title": 0,
16
+ "plain_text": 1,
17
+ "table": 2,
18
+ "figure": 3,
19
+ "figure_caption": 4,
20
+ "table": 5,
21
+ "table_caption": 6,
22
+ "table_footnote": 7,
23
+ "isolate_formula": 8,
24
+ "formula_caption": 9
25
+ },
26
+ "model_type": "yolos"
27
+ }
onnx/model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fece9af02f618b603ff7921ccec6861d13e7e1f9830e091dfb7e8ad9311e5b21
3
+ size 75324598
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
+ }