yschneider commited on
Commit
c07c919
1 Parent(s): dcd40c3

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +64 -0
README.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - fr
5
+ - de
6
+ - en
7
+ task_categories:
8
+ - image-to-text
9
+ pretty_name: NewsEye
10
+ dataset_info:
11
+ features:
12
+ - name: image
13
+ dtype: image
14
+ - name: text
15
+ dtype: string
16
+ splits:
17
+ - name: train
18
+ num_examples: 3834
19
+ - name: validation
20
+ num_examples: 479
21
+ - name: test
22
+ num_examples: 478
23
+ dataset_size: 4791
24
+ ---
25
+
26
+ # NewsEye Dataset
27
+
28
+ ## Table of Contents
29
+ - [NewsEye Dataset](#newseye-dataset)
30
+ - [Table of Contents](#table-of-contents)
31
+ - [Dataset Description](#dataset-description)
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:** [NewsEye](https://www.newseye.eu/)
40
+ - **Point of Contact:** [TEKLIA](https://teklia.com)
41
+
42
+ ### Languages
43
+
44
+ There are multiple languages used in the documents, among them are:
45
+ - French,
46
+ - English,
47
+ - German.
48
+
49
+ ## Dataset Structure
50
+
51
+ ### Data Instances
52
+
53
+ ```
54
+ {
55
+ 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=4300x128 at 0x1A800E8E190,
56
+ 'text': 'Mann; und als wir uns zum Angriff stark genug'
57
+ }
58
+ ```
59
+
60
+ ### Data Fields
61
+
62
+
63
+ - `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].
64
+ - `text`: the label transcription of the image.