yschneider commited on
Commit
c73660c
1 Parent(s): 3ea69eb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +63 -0
README.md CHANGED
@@ -1,3 +1,66 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ language:
4
+ - zh
5
+ task_categories:
6
+ - image-to-text
7
+ pretty_name: CASIA
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: 33401
17
+ - name: validation
18
+ num_examples: 8318
19
+ - name: test
20
+ num_examples: 10441
21
+ dataset_size: 52160
22
  ---
23
+
24
+ # CASIA Dataset
25
+
26
+ ## Table of Contents
27
+ - [CASIA Dataset](#casia-dataset)
28
+ - [Table of Contents](#table-of-contents)
29
+ - [Dataset Description](#dataset-description)
30
+ - [Dataset Summary](#dataset-summary)
31
+ - [Languages](#languages)
32
+ - [Dataset Structure](#dataset-structure)
33
+ - [Data Instances](#data-instances)
34
+ - [Data Fields](#data-fields)
35
+
36
+ ## Dataset Description
37
+
38
+ - **Homepage:** [CASIA](http:///)
39
+ - **Source:** [IEHHR](https://rrc.cvc.uab.es/?ch=10&com=evaluation&task=1)
40
+ - **Paper:** [The ESPOSALLES database: An ancient marriage license corpus for off-line handwriting recognition](https://doi.org/10.1016/j.patcog.2012.11.024)
41
+ - **Point of Contact:** [TEKLIA](https://teklia.com)
42
+
43
+ ## Dataset Summary
44
+
45
+ The Marriage Licenses ground-truth is compiled from the Marriage Licenses Books conserved at the Archives of the Cathedral of Barcelona.
46
+
47
+ ### Languages
48
+
49
+ All the documents in the dataset are written in Chinese.
50
+
51
+ ## Dataset Structure
52
+
53
+ ### Data Instances
54
+
55
+ ```
56
+ {
57
+ 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=1244x128 at 0x1A800E8E190,
58
+ 'text': '2007年高校招生录取工作即将陆续展开,教育部有关负责人'
59
+ }
60
+ ```
61
+
62
+ ### Data Fields
63
+
64
+
65
+ - `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].
66
+ - `text`: the label transcription of the image.