asnassar commited on
Commit
ff1d61b
·
1 Parent(s): b3b70f0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +92 -49
README.md CHANGED
@@ -1,52 +1,95 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: filename
5
- dtype: string
6
- - name: split
7
- dtype: string
8
- - name: imgid
9
- dtype: int64
10
- - name: dataset
11
- dtype: string
12
- - name: table_bbox
13
- sequence: int64
14
- - name: cells
15
- list:
16
- list:
17
- - name: tokens
18
- sequence: string
19
- - name: bbox
20
- sequence: int64
21
- - name: otsl
22
- sequence: string
23
- - name: html
24
- sequence: string
25
- - name: html_restored
26
- sequence: string
27
- - name: cols
28
- dtype: int64
29
- - name: rows
30
- dtype: int64
31
- - name: html_len
32
- dtype: int64
33
- - name: otsl_len
34
- dtype: int64
35
- - name: image
36
- dtype: image
37
- splits:
38
- - name: train
39
- num_bytes: 64476011817.784
40
- num_examples: 1502054
41
- - name: val
42
- num_bytes: 8063269734.066
43
- num_examples: 187978
44
- - name: test
45
- num_bytes: 7953703702.636
46
- num_examples: 185682
47
- download_size: 62335182023
48
- dataset_size: 80492985254.486
49
  ---
50
- # Dataset Card for "PubTables-1M_OTSL"
51
 
52
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
+ pretty_name: PubTabNet-OTSL
4
+ size_categories:
5
+ - 10K<n<100K
6
+ tags:
7
+ - table-structure-recognition
8
+ - table-understanding
9
+ - PDF
10
+ task_categories:
11
+ - object-detection
12
+ - table-to-text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  ---
14
+ # Dataset Card for PubTables-1M_OTSL
15
 
16
+ ## Dataset Description
17
+
18
+ - **Homepage:** https://ds4sd.github.io
19
+ - **Paper:** https://arxiv.org/pdf/2305.03393
20
+
21
+ ### Dataset Summary
22
+
23
+ This dataset is a conversion of the original [PubTables-1M](https://github.com/microsoft/table-transformer) into the OTSL format presented in our paper "Optimized Table Tokenization for Table Structure Recognition". The dataset includes the original annotations amongst new additions.
24
+
25
+ ### Dataset Structure
26
+
27
+ * cells: origunal dataset cell groundtruth (content).
28
+ * table_bbox: origunal dataset table detection groundtruth.
29
+ * otsl: new reduced table structure token format
30
+ * html: Generated HTML for PubTables-1M to match PubTabNet, FinTabNet, and SynthTabNet format.
31
+ * html_restored: generated HTML from OTSL.
32
+ * cols: grid column length.
33
+ * rows: grid row length.
34
+ * image: PIL image
35
+
36
+ ### OTSL Vocabulary:
37
+
38
+ **OTSL**: new reduced table structure token format
39
+ More information on the OTSL table structure format and its concepts can be read from our paper.
40
+ Format of this dataset extends work presented in a paper, and introduces slight modifications:
41
+
42
+ * "fcel" - cell that has content in it
43
+ * "ecel" - cell that is empty
44
+ * "lcel" - left-looking cell (to handle horizontally merged cells)
45
+ * "ucel" - up-looking cell (to handle vertically merged cells)
46
+ * "xcel" - 2d span cells, in this dataset - covers entire area of a merged cell
47
+ * "nl" - new line token
48
+
49
+ ### Data Splits
50
+
51
+ The dataset provides three splits
52
+ - `train`
53
+ - `val`
54
+ - `test`
55
+
56
+ ## Additional Information
57
+
58
+ ### Dataset Curators
59
+
60
+ The dataset is converted by the [Deep Search team](https://ds4sd.github.io/) at IBM Research.
61
+ You can contact us at [[email protected]](mailto:[email protected]).
62
+
63
+ Curators:
64
+ - Maksym Lysak, [@maxmnemonic](https://github.com/maxmnemonic)
65
+ - Ahmed Nassar, [@nassarofficial](https://github.com/nassarofficial)
66
+ - Christoph Auer, [@cau-git](https://github.com/cau-git)
67
+ - Nikos Livathinos, [@nikos-livathinos](https://github.com/nikos-livathinos)
68
+ - Peter Staar, [@PeterStaar-IBM](https://github.com/PeterStaar-IBM)
69
+
70
+
71
+ ### Citation Information
72
+
73
+ **Citation to OTSL Paper:
74
+ **
75
+
76
+ @article{lysak2023optimized,
77
+ title={Optimized Table Tokenization for Table Structure Recognition},
78
+ author={Maksym Lysak and Ahmed Nassar and Nikolaos Livathinos and Christoph Auer and Peter Staar},
79
+ year={2023},
80
+ eprint={2305.03393},
81
+ archivePrefix={arXiv},
82
+ primaryClass={cs.CV}
83
+ }
84
+
85
+ **Citation to PubTables-1M creators:
86
+ **
87
+
88
+ @inproceedings{smock2022pubtables,
89
+ title={Pub{T}ables-1{M}: Towards comprehensive table extraction from unstructured documents},
90
+ author={Smock, Brandon and Pesala, Rohith and Abraham, Robin},
91
+ booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
92
+ pages={4634-4642},
93
+ year={2022},
94
+ month={June}
95
+ }