MaxMnemonic commited on
Commit
a186db3
·
verified ·
1 Parent(s): 021628e

Update README.md

Browse files

Updated dataset description

Files changed (1) hide show
  1. README.md +84 -58
README.md CHANGED
@@ -1,60 +1,86 @@
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: table_bbox
11
- sequence: int64
12
- - name: dataset
13
- dtype: string
14
- - name: cells
15
- list:
16
- list:
17
- - name: bbox
18
- sequence: int64
19
- - name: tokens
20
- sequence: string
21
- - name: otsl
22
- sequence: string
23
- - name: html
24
- sequence: string
25
- - name: html_restored
26
- sequence: string
27
- - name: html_with_text
28
- sequence: string
29
- - name: cols
30
- dtype: int64
31
- - name: rows
32
- dtype: int64
33
- - name: html_len
34
- dtype: int64
35
- - name: otsl_len
36
- dtype: int64
37
- - name: image
38
- dtype: image
39
- splits:
40
- - name: train
41
- num_bytes: 6249615589.039
42
- num_examples: 102881
43
- - name: test
44
- num_bytes: 774194641.9
45
- num_examples: 12700
46
- - name: val
47
- num_bytes: 773544913.0
48
- num_examples: 12700
49
- download_size: 6279234606
50
- dataset_size: 7797355143.938999
51
- configs:
52
- - config_name: default
53
- data_files:
54
- - split: train
55
- path: data/train-*
56
- - split: test
57
- path: data/test-*
58
- - split: val
59
- path: data/val-*
60
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
+ pretty_name: FinTabNet-OTSL-v1.1
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 FinTabNet_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 [FinTabNet](https://developer.ibm.com/exchanges/data/all/fintabnet/) 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
+ Addition to 1.1 is an extended set of OTSL instructions that now also offer descriptions of column / row headers and section rows.
25
+
26
+ ### Dataset Structure
27
+
28
+ * cells: origunal dataset cell groundtruth (content).
29
+ * otsl: new reduced table structure token format
30
+ * html: original dataset groundtruth HTML (structure).
31
+ * html_restored: generated HTML from OTSL.
32
+ * cols: grid column length.
33
+ * rows: grid row length.
34
+ * html_with_text: list of HTML table structure tags together with cell content text
35
+ * image: PIL image
36
+
37
+ ### OTSL Vocabulary:
38
+
39
+ **OTSL**: new reduced table structure token format
40
+ More information on the OTSL table structure format and its concepts can be read from our paper.
41
+ Format of this dataset extends work presented in a paper, and introduces slight modifications:
42
+
43
+ * "fcel" - cell that has content in it
44
+ * "ecel" - cell that is empty
45
+ * "lcel" - left-looking cell (to handle horizontally merged cells)
46
+ * "ucel" - up-looking cell (to handle vertically merged cells)
47
+ * "xcel" - 2d span cells, in this dataset - covers entire area of a merged cell
48
+ * "nl" - new line token
49
+ * "ched" - cell that belongs to column header
50
+ * "rhed" - cell that belongs to row header
51
+ * "srow" - cell that belongs to section row (header-like separator within the table)
52
+
53
+ ### Data Splits
54
+
55
+ The dataset provides three splits
56
+ - `train`
57
+ - `val`
58
+ - `test`
59
+
60
+ ## Additional Information
61
+
62
+ ### Dataset Curators
63
+
64
+ The dataset is converted by the [Deep Search team](https://ds4sd.github.io/) at IBM Research.
65
+ You can contact us at [[email protected]](mailto:[email protected]).
66
+
67
+ Curators:
68
+ - Maksym Lysak, [@maxmnemonic](https://github.com/maxmnemonic)
69
+ - Ahmed Nassar, [@nassarofficial](https://github.com/nassarofficial)
70
+ - Christoph Auer, [@cau-git](https://github.com/cau-git)
71
+ - Nikos Livathinos, [@nikos-livathinos](https://github.com/nikos-livathinos)
72
+ - Peter Staar, [@PeterStaar-IBM](https://github.com/PeterStaar-IBM)
73
+
74
+
75
+ ### Citation Information
76
+
77
+
78
+ ```bib
79
+ @misc{lysak2023optimized,
80
+ title={Optimized Table Tokenization for Table Structure Recognition},
81
+ author={Maksym Lysak and Ahmed Nassar and Nikolaos Livathinos and Christoph Auer and Peter Staar},
82
+ year={2023},
83
+ eprint={2305.03393},
84
+ archivePrefix={arXiv},
85
+ primaryClass={cs.CV}
86
+ }`