yschneider commited on
Commit
38db8f3
1 Parent(s): 484469a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +63 -0
README.md CHANGED
@@ -1,3 +1,66 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ language:
4
+ - en
5
+ task_categories:
6
+ - image-to-text
7
+ pretty_name: IAM
8
+
9
+ dataset_info:
10
+ features:
11
+ - name: image
12
+ dtype: image
13
+ - name: text
14
+ dtype: string
15
+ splits:
16
+ - name: train
17
+ num_examples: 6481
18
+ - name: validation
19
+ num_examples: 976
20
+ - name: test
21
+ num_examples: 2914
22
+ dataset_size: 10373
23
  ---
24
+
25
+ # Esposalles Dataset
26
+
27
+ ## Table of Contents
28
+ - [Esposalles Dataset](#esposalles-dataset)
29
+ - [Table of Contents](#table-of-contents)
30
+ - [Dataset Description](#dataset-description)
31
+ - [Dataset Summary](#dataset-summary)
32
+ - [Languages](#languages)
33
+ - [Dataset Structure](#dataset-structure)
34
+ - [Data Instances](#data-instances)
35
+ - [Data Fields](#data-fields)
36
+
37
+ ## Dataset Description
38
+
39
+ - **Homepage:** [IAM](https://fki.tic.heia-fr.ch/databases/iam-handwriting-database)
40
+ - **Paper:** [Paper](https://doi.org/10.1007/s100320200071)
41
+ - **Point of Contact:** [TEKLIA](https://teklia.com)
42
+
43
+ ## Dataset Summary
44
+
45
+ The IAM Handwriting Database contains forms of handwritten English text which can be used to train and test handwritten text recognizers and to perform writer identification and verification experiments.
46
+
47
+ ### Languages
48
+
49
+ All the documents in the dataset are written in English.
50
+
51
+ ## Dataset Structure
52
+
53
+ ### Data Instances
54
+
55
+ ```
56
+ {
57
+ 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=2467x128 at 0x1A800E8E190,
58
+ 'text': 'put down a resolution on the subject'
59
+ }
60
+ ```
61
+
62
+ ### Data Fields
63
+
64
+
65
+ - `image`: A PIL.Image.Image object containing the image. Note that when accessing the image column: 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].
66
+ - `text`: the label transcription of the image.