Datasets:
Create README.md
Browse files
README.md
CHANGED
@@ -1,31 +1,13 @@
|
|
1 |
---
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
dtype: string
|
6 |
-
- name: image
|
7 |
-
dtype: image
|
8 |
-
- name: latex
|
9 |
-
dtype: string
|
10 |
-
splits:
|
11 |
-
- name: train
|
12 |
-
num_bytes: 4170963766.954
|
13 |
-
num_examples: 87513
|
14 |
-
- name: validate
|
15 |
-
num_bytes: 229543753.0
|
16 |
-
num_examples: 5000
|
17 |
-
- name: test
|
18 |
-
num_bytes: 222101522.0
|
19 |
-
num_examples: 5000
|
20 |
-
download_size: 3779553359
|
21 |
-
dataset_size: 4622609041.954
|
22 |
-
configs:
|
23 |
-
- config_name: default
|
24 |
-
data_files:
|
25 |
-
- split: train
|
26 |
-
path: data/train-*
|
27 |
-
- split: validate
|
28 |
-
path: data/validate-*
|
29 |
-
- split: test
|
30 |
-
path: data/test-*
|
31 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
license: bsd-3-clause-clear
|
3 |
+
task_categories:
|
4 |
+
- image-to-text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
---
|
6 |
+
## LATTE: Improving Latex Recognition for Tables and Formulae with Iterative Refinement
|
7 |
+
|
8 |
+
Tab2Latex: a Latex table recognition dataset, with 87,513 training, 5,000 validation, and 5,000 test instances. The LaTeX sources are collected from academic papers within these six distinct sub-fields of computer science—Artificial Intelligence, Computation and Language, Computer Vision and Pattern Recognition, Cryptography and Security, Programming Languages, and Software Engineering—from the arXiv repository, covering the years 2018 to 2023. Once the paper sources are downloaded, tables are identified and extracted from the LaTeX source code by matching \begin{tabular} and \end{tabular} and removing the comments. Then, the LaTeX table source scripts are rendered to PDF format and converted to PNG format at 160 dpi.
|
9 |
+
|
10 |
+
### Data Fields
|
11 |
+
* id: instance id
|
12 |
+
* image: the rendered image (PIL.Image) from the Latex source code
|
13 |
+
* latex: the Latex source code for the table
|