dhuser commited on
Commit
8b2eea1
·
verified ·
1 Parent(s): d064e39

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +72 -25
README.md CHANGED
@@ -1,27 +1,74 @@
1
  ---
2
- license: apache-2.0
3
- configs:
4
- - config_name: default
5
- data_files:
6
- - split: train
7
- path: data/train-*
8
- - split: val
9
- path: data/val-*
10
- dataset_info:
11
- features:
12
- - name: image
13
- dtype: image
14
- - name: transcription
15
- dtype: string
16
- - name: source
17
- dtype: string
18
- splits:
19
- - name: train
20
- num_bytes: 5260914053
21
- num_examples: 129387
22
- - name: val
23
- num_bytes: 871651161
24
- num_examples: 22877
25
- download_size: 6040742481
26
- dataset_size: 6132565214
27
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pretty_name: "Chinese OCR Line Dataset (EvaHan Competition @ LREC2026)"
3
+ task_categories:
4
+ - image-to-text
5
+ language:
6
+ - zh
7
+ license: cc-by-4.0
8
+ tags:
9
+ - ocr
10
+ - historical-documents
11
+ - chinese
12
+ - lrec-2026
13
+ links:
14
+ paper: "https://hal.science/hal-05622586"
15
+ repository: "https://github.com/<org>/<repo>"
16
+ competition: "https://<competition-url>"
 
 
 
 
 
 
 
 
 
 
17
  ---
18
+
19
+ # Chinese OCR Line Dataset
20
+
21
+ This repository contains the synthetic dataset used by the ENCHANTeam team for the EvaHan 2026 competition on OCR/HTR of Chinese documents.
22
+
23
+ **Final ranking of the team**: 3rd.
24
+
25
+ UltraGlyph data consist in a automatic mix of real data provided by the organizers, for the closed modality of the competition (no external dataset authorized).
26
+
27
+
28
+
29
+ | Resource | Link |
30
+ |----------|------|
31
+ | Preprint | [HAL](https://hal.science/<HAL-ID>) |
32
+ | Code | [GitHub](https://github.com/Bizais-Lillig/enchanteam) |
33
+ | Competition | [EvaHan @ LREC 2026](https://circse.github.io/LT4HALA/2026/EvaHan) |
34
+
35
+ ## Dataset description
36
+
37
+ Pairs of line images and Chinese transcriptions drawn from two sources:
38
+
39
+ | Source label | Origin | Train | Val |
40
+ |---|---|---|---|
41
+ | `fonts` | Synthetic printed lines using chinese fonts | 72 323 | 12 676 |
42
+ | `ultraglyph` | Synthetic lines using real data and ultraglyph generator (mix handwritten and printed) | 57 063 | 10 201 |
43
+ | **Total** | | **129 386** | **22 877** |
44
+
45
+ Transcription lengths range from 2 to 30 characters (median 16).
46
+
47
+
48
+ ## Usage
49
+
50
+ ```python
51
+ from datasets import load_dataset
52
+
53
+ ds = load_dataset("<org>/<dataset-name>")
54
+ example = ds["train"][0]
55
+ example["image"].show()
56
+ print(example["transcription"], example["source"])
57
+ ```
58
+
59
+ ## Citation
60
+
61
+ If you use this dataset, please cite this work:
62
+
63
+ ```bibtex
64
+ @misc{<bibtex-key>,
65
+ title = {},
66
+ author = {},
67
+ year = {2026},
68
+ url = {https://hal.science/<HAL-ID>}
69
+ }
70
+ ```
71
+
72
+ ## Acknowledgement
73
+
74
+ This study was conducted as part of the DH master’s program at École nationale des chartes–PSL and with the support of the PSL Research University’s Major Research Program CultureLab, implemented by the ANR (reference ANR-10-IDEX-0001).