mboillet commited on
Commit
8a7b26a
·
verified ·
1 Parent(s): 189c54f

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +99 -9
README.md CHANGED
@@ -1,9 +1,22 @@
1
  ---
2
- configs:
3
- - config_name: default
4
- data_files:
5
- - split: test
6
- path: data/test-*
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  dataset_info:
8
  features:
9
  - name: dataset
@@ -16,8 +29,85 @@ dataset_info:
16
  dtype: string
17
  splits:
18
  - name: test
19
- num_bytes: 370530337
20
- num_examples: 463
21
- download_size: 368043201
22
- dataset_size: 370530337
 
 
 
 
 
23
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ task_categories:
3
+ - image-to-text
4
+ pretty_name: ATR benchmark
5
+ size_categories:
6
+ - n<1K
7
+ language:
8
+ - fr
9
+ - la
10
+ - en
11
+ - no
12
+ - ar
13
+ - zh
14
+ - de
15
+ - nl
16
+ tags:
17
+ - atr
18
+ - htr
19
+ - ocr
20
  dataset_info:
21
  features:
22
  - name: dataset
 
29
  dtype: string
30
  splits:
31
  - name: test
32
+ num_bytes: 180132193.0
33
+ num_examples: 133
34
+ download_size: 178873479
35
+ dataset_size: 180132193.0
36
+ configs:
37
+ - config_name: default
38
+ data_files:
39
+ - split: test
40
+ path: data/test-*
41
  ---
42
+
43
+ # ATR benchmark - Page/paragraph level
44
+
45
+ ## Dataset Description
46
+
47
+ - **Homepage:** [ATR benchmark](https://huggingface.co/datasets/Teklia/ATR-benchmark)
48
+ - **Point of Contact:** [TEKLIA](https://teklia.com)
49
+
50
+ ## Dataset Summary
51
+
52
+ The ATR benchmark dataset is a multilingual dataset that includes 463 document images, at page or paragraph level. This dataset has been designed to test ATR models and combines data from several public datasets:
53
+ - [BnL Historical Newspapers](https://data.bnl.lu/data/historical-newspapers/)
54
+ - [CASIA-HWDB2](https://nlpr.ia.ac.cn/databases/handwriting/Offline_database.html)
55
+ - [Churro](https://huggingface.co/datasets/stanford-oval/churro-dataset)
56
+ - [DIY History - Social Justice](http://diyhistory.lib.uiowa.edu/)
57
+ - [DAI-CRETDHI](https://dai-cretdhi.univ-lr.fr/)
58
+ - [Esposalles](https://dag.cvc.uab.es/dataset/the-esposalles-database/)
59
+ - FINLAM - Historical Newspapers
60
+ - [Horae - Books of hours](https://github.com/oriflamms/HORAE)
61
+ - [IAM](https://fki.tic.heia-fr.ch/databases/iam-handwriting-database)
62
+ - [NDLOCR](https://lab.ndl.go.jp/data_set/r4_kotenocr_en/)
63
+ - [NorHand v3](https://zenodo.org/records/10255840)
64
+ - [OpenITI](https://openiti.org/projects/OpenITI%20Corpus.html)
65
+ - [Marius PELLET](https://europeana.transcribathon.eu/documents/story/?story=121795)
66
+ - [QARI](https://huggingface.co/datasets/NAMAA-Space/QariOCR-v0.3-markdown-mixed-dataset)
67
+ - [RASM](http://www.primaresearch.org/RASM2019/)
68
+ - [READ-2016](https://zenodo.org/records/218236)
69
+ - [RIMES](https://teklia.com/research/rimes-database/)
70
+ - [ScribbleLens](https://openslr.org/84/)
71
+
72
+ Images are in their original size.
73
+
74
+ ### Split
75
+
76
+ | dataset | images | language |
77
+ | ------------------------------ | -----: | ---------------- |
78
+ | BnL Historical Newspapers | 3 | German |
79
+ | CASIA-HWDB2 | 10 | Chinese |
80
+ | Churro | 290 | Multi-lingual |
81
+ | DAI-CRETDHI | 10 | French |
82
+ | DIY History - Social Justice | 20 | English |
83
+ | Esposalles | 10 | Catalan |
84
+ | FINLAM - Historical Newspapers | 10 | English / French |
85
+ | Horae - Books of hours | 10 | Latin |
86
+ | IAM | 10 | English |
87
+ | NDLOCR | 10 | Japanese |
88
+ | NorHand v3 | 10 | Norwegian |
89
+ | OpenITI | 10 | Arabic |
90
+ | Marius PELLET | 10 | French |
91
+ | QARI | 10 | Arabic |
92
+ | RASM | 10 | Arabic |
93
+ | READ-2016 | 10 | German |
94
+ | RIMES | 10 | French |
95
+ | ScribbleLens | 10 | Dutch |
96
+
97
+ ## Dataset Structure
98
+
99
+ ### Data Instances
100
+
101
+ ```
102
+ {
103
+ 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size={img size} at 0x1A800E8E190,
104
+ 'text': '{transcription}'
105
+ }
106
+ ```
107
+
108
+ ### Data Fields
109
+
110
+ - `image`: a PIL.Image.Image object containing the image. Note that when accessing the image column (using dataset[0]["image"]), the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the "image" column, i.e. dataset[0]["image"] should always be preferred over dataset["image"][0].
111
+ - `dataset`: the name of the original dataset.
112
+ - `text`: the label transcription of the image.
113
+ - `level`: full document page or a single paragraph.