Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -4,7 +4,7 @@ language:
|
|
| 4 |
- en
|
| 5 |
task_categories:
|
| 6 |
- image-to-text
|
| 7 |
-
pretty_name: IAM
|
| 8 |
|
| 9 |
dataset_info:
|
| 10 |
features:
|
|
@@ -20,12 +20,18 @@ dataset_info:
|
|
| 20 |
- name: test
|
| 21 |
num_examples: 2915
|
| 22 |
dataset_size: 10373
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
---
|
| 24 |
|
| 25 |
-
# IAM
|
| 26 |
|
| 27 |
## Table of Contents
|
| 28 |
-
- [IAM
|
| 29 |
- [Table of Contents](#table-of-contents)
|
| 30 |
- [Dataset Description](#dataset-description)
|
| 31 |
- [Dataset Summary](#dataset-summary)
|
|
@@ -44,6 +50,8 @@ dataset_info:
|
|
| 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.
|
|
@@ -62,5 +70,5 @@ All the documents in the dataset are written in English.
|
|
| 62 |
### Data Fields
|
| 63 |
|
| 64 |
|
| 65 |
-
- `image`:
|
| 66 |
- `text`: the label transcription of the image.
|
|
|
|
| 4 |
- en
|
| 5 |
task_categories:
|
| 6 |
- image-to-text
|
| 7 |
+
pretty_name: IAM-line
|
| 8 |
|
| 9 |
dataset_info:
|
| 10 |
features:
|
|
|
|
| 20 |
- name: test
|
| 21 |
num_examples: 2915
|
| 22 |
dataset_size: 10373
|
| 23 |
+
tags:
|
| 24 |
+
- atr
|
| 25 |
+
- htr
|
| 26 |
+
- ocr
|
| 27 |
+
- modern
|
| 28 |
+
- handwritten
|
| 29 |
---
|
| 30 |
|
| 31 |
+
# IAM - line level
|
| 32 |
|
| 33 |
## Table of Contents
|
| 34 |
+
- [IAM - line level](#iam-line-level)
|
| 35 |
- [Table of Contents](#table-of-contents)
|
| 36 |
- [Dataset Description](#dataset-description)
|
| 37 |
- [Dataset Summary](#dataset-summary)
|
|
|
|
| 50 |
|
| 51 |
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.
|
| 52 |
|
| 53 |
+
Note that all images are resized to a fixed height of 128 pixels.
|
| 54 |
+
|
| 55 |
### Languages
|
| 56 |
|
| 57 |
All the documents in the dataset are written in English.
|
|
|
|
| 70 |
### Data Fields
|
| 71 |
|
| 72 |
|
| 73 |
+
- `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].
|
| 74 |
- `text`: the label transcription of the image.
|