asnassar commited on
Commit
471ff6f
·
1 Parent(s): 45793c5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +66 -47
README.md CHANGED
@@ -1,50 +1,69 @@
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: cells
13
- list:
14
- list:
15
- - name: tokens
16
- sequence: string
17
- - name: bbox
18
- sequence: int64
19
- - name: otsl
20
- sequence: string
21
- - name: html
22
- sequence: string
23
- - name: html_restored
24
- sequence: string
25
- - name: cols
26
- dtype: int64
27
- - name: rows
28
- dtype: int64
29
- - name: html_len
30
- dtype: int64
31
- - name: otsl_len
32
- dtype: int64
33
- - name: image
34
- dtype: image
35
- splits:
36
- - name: train
37
- num_bytes: 3166219587.172
38
- num_examples: 88441
39
- - name: val
40
- num_bytes: 356137518.94
41
- num_examples: 10505
42
- - name: test
43
- num_bytes: 360597266.648
44
- num_examples: 10397
45
- download_size: 3052655993
46
- dataset_size: 3882954372.76
47
  ---
48
- # Dataset Card for "FinTabNet_OTSL"
49
 
50
- [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 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
+
25
+ ### Dataset Structure
26
+
27
+ * cells: origunal dataset cell groundtruth (content).
28
+ * otsl: new reduced table structure token format
29
+ * html: original dataset groundtruth HTML (structure).
30
+ * html_restored: generated HTML from OTSL.
31
+ * cols: grid column length.
32
+ * rows: grid row length.
33
+ * image: PIL image
34
+
35
+
36
+ ### Data Splits
37
+
38
+ The dataset provides three splits
39
+ - `train`
40
+ - `val`
41
+ - `test`
42
+
43
+ ## Additional Information
44
+
45
+ ### Dataset Curators
46
+
47
+ The dataset is converted by the [Deep Search team](https://ds4sd.github.io/) at IBM Research.
48
+ You can contact us at [deepsearch-core@zurich.ibm.com](mailto:deepsearch-core@zurich.ibm.com).
49
+
50
+ Curators:
51
+ - Maksym Lysak, [@maxmnemonic](https://github.com/maxmnemonic)
52
+ - Ahmed Nassar, [@nassarofficial](https://github.com/nassarofficial)
53
+ - Christoph Auer, [@cau-git](https://github.com/cau-git)
54
+ - Nikos Livathinos, [@nikos-livathinos](https://github.com/nikos-livathinos)
55
+ - Peter Staar, [@PeterStaar-IBM](https://github.com/PeterStaar-IBM)
56
+
57
+
58
+ ### Citation Information
59
+
60
+
61
+ ```bib
62
+ @misc{lysak2023optimized,
63
+ title={Optimized Table Tokenization for Table Structure Recognition},
64
+ author={Maksym Lysak and Ahmed Nassar and Nikolaos Livathinos and Christoph Auer and Peter Staar},
65
+ year={2023},
66
+ eprint={2305.03393},
67
+ archivePrefix={arXiv},
68
+ primaryClass={cs.CV}
69
+ }```