yschneider commited on
Commit
e1c80cf
1 Parent(s): 4987864

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +57 -0
README.md CHANGED
@@ -1,3 +1,60 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ language:
4
+ - fr
5
+ task_categories:
6
+ - image-to-text
7
+ pretty_name: Alcar
8
+ dataset_info:
9
+ features:
10
+ - name: image
11
+ dtype: image
12
+ - name: text
13
+ dtype: string
14
+ splits:
15
+ - name: train
16
+ num_examples: 59969
17
+ - name: validation
18
+ num_examples: 7905
19
+ - name: test
20
+ num_examples: 6932
21
+ dataset_size: 74806
22
  ---
23
+
24
+ # Alcar Dataset
25
+
26
+ ## Table of Contents
27
+ - [Alcar Dataset](#alcar-dataset)
28
+ - [Table of Contents](#table-of-contents)
29
+ - [Dataset Description](#dataset-description)
30
+ - [Languages](#languages)
31
+ - [Dataset Structure](#dataset-structure)
32
+ - [Data Instances](#data-instances)
33
+ - [Data Fields](#data-fields)
34
+
35
+ ## Dataset Description
36
+
37
+ - **Homepage:** [Alcar](http://alcar.huma-num.fr/app/)
38
+ - **Paper:** [Paper](https://zenodo.org/records/5600884)
39
+ - **Point of Contact:** [TEKLIA](https://teklia.com)
40
+
41
+ ### Languages
42
+
43
+ All the documents in the dataset are written in French.
44
+
45
+ ## Dataset Structure
46
+
47
+ ### Data Instances
48
+
49
+ ```
50
+ {
51
+ 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=4300x128 at 0x1A800E8E190,
52
+ 'text': 'quatre mille livres de tournoiz poiez, si com¬'
53
+ }
54
+ ```
55
+
56
+ ### Data Fields
57
+
58
+
59
+ - `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].
60
+ - `text`: the label transcription of the image.