Datasets:

Languages:
Thai
ArXiv:
License:
holylovenia commited on
Commit
d366fbf
1 Parent(s): 2fc1d1d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +78 -0
README.md ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: cc-by-sa-4.0
4
+ language:
5
+ - tha
6
+ pretty_name: Thai Elderly Speech
7
+ task_categories:
8
+ - speech-to-text-translation
9
+ tags:
10
+ - speech-to-text-translation
11
+ ---
12
+
13
+ The Thai Elderly Speech dataset by Data Wow and VISAI Version 1 dataset aims at
14
+ advancing Automatic Speech Recognition (ASR) technology specifically for the
15
+ elderly population. Researchers can use this dataset to advance ASR technology
16
+ for healthcare and smart home applications. The dataset consists of 19,200 audio
17
+ files, totaling 17 hours and 11 minutes of recorded speech. The files are
18
+ divided into 2 categories: Healthcare (relating to medical issues and services
19
+ in 30 medical categories) and Smart Home (relating to smart home devices in 7
20
+ household contexts). The dataset contains 5,156 unique sentences spoken by 32
21
+ seniors (10 males and 22 females), aged 57-60 years old (average age of 63
22
+ years).
23
+
24
+
25
+ ## Languages
26
+
27
+ tha
28
+
29
+ ## Supported Tasks
30
+
31
+ Speech To Text Translation
32
+
33
+ ## Dataset Usage
34
+ ### Using `datasets` library
35
+ ```
36
+ from datasets import load_dataset
37
+ dset = datasets.load_dataset("SEACrowd/thai_elderly_speech", trust_remote_code=True)
38
+ ```
39
+ ### Using `seacrowd` library
40
+ ```import seacrowd as sc
41
+ # Load the dataset using the default config
42
+ dset = sc.load_dataset("thai_elderly_speech", schema="seacrowd")
43
+ # Check all available subsets (config names) of the dataset
44
+ print(sc.available_config_names("thai_elderly_speech"))
45
+ # Load the dataset using a specific config
46
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
47
+ ```
48
+
49
+ 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).
50
+
51
+
52
+ ## Dataset Homepage
53
+
54
+ [https://github.com/VISAI-DATAWOW/Thai-Elderly-Speech-dataset/releases/tag/v1.0.0](https://github.com/VISAI-DATAWOW/Thai-Elderly-Speech-dataset/releases/tag/v1.0.0)
55
+
56
+ ## Dataset Version
57
+
58
+ Source: 1.0.0. SEACrowd: 2024.06.20.
59
+
60
+ ## Dataset License
61
+
62
+ Creative Commons Attribution Share Alike 4.0 (cc-by-sa-4.0)
63
+
64
+ ## Citation
65
+
66
+ If you are using the **Thai Elderly Speech** dataloader in your work, please cite the following:
67
+ ```
68
+
69
+
70
+ @article{lovenia2024seacrowd,
71
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
72
+ 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},
73
+ year={2024},
74
+ eprint={2406.10118},
75
+ journal={arXiv preprint arXiv: 2406.10118}
76
+ }
77
+
78
+ ```