Datasets:

Languages:
Thai
ArXiv:
License:
holylovenia commited on
Commit
760f6c2
1 Parent(s): 4283c7c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +89 -0
README.md ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: unknown
4
+ language:
5
+ - tha
6
+ pretty_name: Alice Thi
7
+ task_categories:
8
+ - optical-character-recognition
9
+ tags:
10
+ - optical-character-recognition
11
+ ---
12
+
13
+ ALICE-THI is a Thai handwritten script dataset that contains 24045 character
14
+ images, which is split into Thai handwritten character dataset (THI-C68) for
15
+ 14490 images and Thai handwritten digit dataset (THI-D10) for 9555 images. The
16
+ data was collected from 150 native writers aged from 20 to 23 years old. The
17
+ participants were allowed to write only the isolated Thai script on the form and
18
+ at least 100 samples per character. The character images obtained from this
19
+ dataset generally have no background noise.
20
+
21
+
22
+ ## Languages
23
+
24
+ tha
25
+
26
+ ## Supported Tasks
27
+
28
+ Optical Character Recognition
29
+
30
+ ## Dataset Usage
31
+ ### Using `datasets` library
32
+ ```
33
+ from datasets import load_dataset
34
+ dset = datasets.load_dataset("SEACrowd/alice_thi", trust_remote_code=True)
35
+ ```
36
+ ### Using `seacrowd` library
37
+ ```import seacrowd as sc
38
+ # Load the dataset using the default config
39
+ dset = sc.load_dataset("alice_thi", schema="seacrowd")
40
+ # Check all available subsets (config names) of the dataset
41
+ print(sc.available_config_names("alice_thi"))
42
+ # Load the dataset using a specific config
43
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
44
+ ```
45
+
46
+ More details on how to load the `seacrowd` library can be found [here](https://github.com/SEACrowd/seacrowd-datahub?tab=readme-ov-file#how-to-use).
47
+
48
+
49
+ ## Dataset Homepage
50
+
51
+ [https://www.ai.rug.nl/~mrolarik/ALICE-THI/](https://www.ai.rug.nl/~mrolarik/ALICE-THI/)
52
+
53
+ ## Dataset Version
54
+
55
+ Source: 1.0.0. SEACrowd: 2024.06.20.
56
+
57
+ ## Dataset License
58
+
59
+ Unknown (unknown)
60
+
61
+ ## Citation
62
+
63
+ If you are using the **Alice Thi** dataloader in your work, please cite the following:
64
+ ```
65
+ @article{SURINTA2015405,
66
+ title = "Recognition of handwritten characters using local gradient feature descriptors",
67
+ journal = "Engineering Applications of Artificial Intelligence",
68
+ volume = "45",
69
+ number = "Supplement C",
70
+ pages = "405 - 414",
71
+ year = "2015",
72
+ issn = "0952-1976",
73
+ doi = "https://doi.org/10.1016/j.engappai.2015.07.017",
74
+ url = "http://www.sciencedirect.com/science/article/pii/S0952197615001724",
75
+ author = "Olarik Surinta and Mahir F. Karaaba and Lambert R.B. Schomaker and Marco A. Wiering",
76
+ keywords = "Handwritten character recognition, Feature extraction, Local gradient feature descriptor,
77
+ Support vector machine, k-nearest neighbors"
78
+ }
79
+
80
+
81
+ @article{lovenia2024seacrowd,
82
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
83
+ author={Holy Lovenia and Rahmad Mahendra and Salsabil Maulana Akbar and Lester James V. Miranda and Jennifer Santoso and Elyanah Aco and Akhdan Fadhilah and Jonibek Mansurov and Joseph Marvin Imperial and Onno P. Kampman and Joel Ruben Antony Moniz and Muhammad Ravi Shulthan Habibi and Frederikus Hudi and Railey Montalan and Ryan Ignatius and Joanito Agili Lopo and William Nixon and Börje F. Karlsson and James Jaya and Ryandito Diandaru and Yuze Gao and Patrick Amadeus and Bin Wang and Jan Christian Blaise Cruz and Chenxi Whitehouse and Ivan Halim Parmonangan and Maria Khelli and Wenyu Zhang and Lucky Susanto and Reynard Adha Ryanda and Sonny Lazuardi Hermawan and Dan John Velasco and Muhammad Dehan Al Kautsar and Willy Fitra Hendria and Yasmin Moslem and Noah Flynn and Muhammad Farid Adilazuarda and Haochen Li and Johanes Lee and R. Damanhuri and Shuo Sun and Muhammad Reza Qorib and Amirbek Djanibekov and Wei Qi Leong and Quyet V. Do and Niklas Muennighoff and Tanrada Pansuwan and Ilham Firdausi Putra and Yan Xu and Ngee Chia Tai and Ayu Purwarianti and Sebastian Ruder and William Tjhi and Peerat Limkonchotiwat and Alham Fikri Aji and Sedrick Keh and Genta Indra Winata and Ruochen Zhang and Fajri Koto and Zheng-Xin Yong and Samuel Cahyawijaya},
84
+ year={2024},
85
+ eprint={2406.10118},
86
+ journal={arXiv preprint arXiv: 2406.10118}
87
+ }
88
+
89
+ ```