Upload 2 files
Browse files- config.json +29 -0
- 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 |
+
}
|
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 |
+
}
|