Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +37 -0
- data.jsonl +3 -0
- images.tar.gz +3 -0
.gitattributes
CHANGED
@@ -57,3 +57,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
57 |
# Video files - compressed
|
58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
57 |
# Video files - compressed
|
58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
60 |
+
data.jsonl filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -1,3 +1,40 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
---
|
4 |
+
|
5 |
+
# OCRFlux-pubtabnet-single
|
6 |
+
OCRFlux-pubtabnet-single is a benchmark of 9064 table images and their corresponding ground-truth HTML, which are derived from the public [PubTabNet](https://github.com/ibm-aur-nlp/PubTabNet) benchmark with some format transformations.
|
7 |
+
|
8 |
+
This dataset can be used to measure the performance of OCR systems in single-page table parsing.
|
9 |
+
|
10 |
+
Quick links:
|
11 |
+
- 🤗 [Model](https://huggingface.co/ChatDOC/OCRFlux-3B)
|
12 |
+
- 🛠️ [Code](https://github.com/chatdoc-com/OCRFlux)
|
13 |
+
|
14 |
+
## Data Mix
|
15 |
+
|
16 |
+
## Table 1: Tables breakdown by complexity (whether they contain rowspan or colspan cells)
|
17 |
+
| Complexity | Number |
|
18 |
+
|--------|-------------|
|
19 |
+
| Simple | 4623 |
|
20 |
+
| Complex | 4441 |
|
21 |
+
| **Total** | **9064** |
|
22 |
+
|
23 |
+
|
24 |
+
## Data Format
|
25 |
+
|
26 |
+
Each row in the dataset corresponds to a table image and its corresponding ground-truth HTML.
|
27 |
+
|
28 |
+
Different from the original PubTabNet dataset, we do not distinguish cells in the table headers and table bodies, which means there are no `<thead>` and `<tbody>` tags, and all `<th>` tags are replaced by `<td>` tags.
|
29 |
+
|
30 |
+
### Features:
|
31 |
+
```python
|
32 |
+
{
|
33 |
+
'image_name': string, # Name of the table image
|
34 |
+
'type': string, # "simple" or "complex"
|
35 |
+
'gt_table': string, # Ground-truth HTML of the table
|
36 |
+
}
|
37 |
+
```
|
38 |
+
|
39 |
+
## License
|
40 |
+
This dataset is licensed under Apache-2.0.
|
data.jsonl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3ea14477b94757842f08aec316d43d68a382b73c63878e4b56da8ee2d3b2a744
|
3 |
+
size 15291242
|
images.tar.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e38b79fa26535107858b89fa75b75f44a92f659559091a61e3dd45991c8698a3
|
3 |
+
size 187343520
|