Datasets:
File size: 1,546 Bytes
c07c919 cd0ccb0 c07c919 cd0ccb0 c07c919 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
---
license: mit
language:
- fr
- de
- en
task_categories:
- image-to-text
pretty_name: NewsEye
dataset_info:
features:
- name: image
dtype: image
- name: text
dtype: string
splits:
- name: train
num_examples: 51588
- name: validation
num_examples: 4379
dataset_size: 55967
---
# NewsEye Dataset
## Table of Contents
- [NewsEye Dataset](#newseye-dataset)
- [Table of Contents](#table-of-contents)
- [Dataset Description](#dataset-description)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
## Dataset Description
- **Homepage:** [NewsEye](https://www.newseye.eu/)
- **Point of Contact:** [TEKLIA](https://teklia.com)
### Languages
There are multiple languages used in the documents, among them are:
- French,
- English,
- German.
## Dataset Structure
### Data Instances
```
{
'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=4300x128 at 0x1A800E8E190,
'text': 'Mann; und als wir uns zum Angriff stark genug'
}
```
### Data Fields
- `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].
- `text`: the label transcription of the image. |