yschneider commited on
Commit
10d0194
1 Parent(s): 327d267

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
+ - nb
5
+ task_categories:
6
+ - image-to-text
7
+ pretty_name: NorHand v1
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: 19653
17
+ - name: validation
18
+ num_examples: 2286
19
+ - name: test
20
+ num_examples: 1793
21
+ dataset_size: 23732
22
  ---
23
+
24
+ # NorHand v1 Dataset
25
+
26
+ ## Table of Contents
27
+ - [NorHand v1 Dataset](#norhand-v1-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:** [HOME]()
38
+ - **Paper:** [Paper]()
39
+ - **Point of Contact:** [TEKLIA](https://teklia.com)
40
+
41
+ ### Languages
42
+
43
+ All the documents in the dataset are written in Norwegian Bokmål.
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': 'fredag 1923'
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.