holylovenia commited on
Commit
ac273f7
1 Parent(s): 645193b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +85 -0
README.md ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: cc0-1.0
4
+ language:
5
+ - cnh
6
+ - ind
7
+ - tha
8
+ - vie
9
+ pretty_name: Commonvoice 120
10
+ task_categories:
11
+ - speech-recognition
12
+ - text-to-speech
13
+ tags:
14
+ - speech-recognition
15
+ - text-to-speech
16
+ ---
17
+
18
+ The Common Mozilla Voice dataset consists of a unique MP3 and corresponding text file.
19
+ Many of the 26119 recorded hours in the dataset also include demographic metadata like age, sex, and accent that can help improve the accuracy of speech recognition engines.
20
+ The dataset currently consists of 17127 validated hours in 104 languages, but more voices and languages are always added.
21
+
22
+ Before using this dataloader, please accept the acknowledgement at https://huggingface.co/datasets/mozilla-foundation/common_voice_12_0 and use huggingface-cli login for authentication
23
+
24
+
25
+ ## Languages
26
+
27
+ cnh, ind, tha, vie
28
+
29
+ ## Supported Tasks
30
+
31
+ Speech Recognition, Text To Speech
32
+
33
+ ## Dataset Usage
34
+ ### Using `datasets` library
35
+ ```
36
+ from datasets import load_dataset
37
+ dset = datasets.load_dataset("SEACrowd/commonvoice_120", 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("commonvoice_120", schema="seacrowd")
43
+ # Check all available subsets (config names) of the dataset
44
+ print(sc.available_config_names("commonvoice_120"))
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://commonvoice.mozilla.org/en/datasets](https://commonvoice.mozilla.org/en/datasets)
55
+
56
+ ## Dataset Version
57
+
58
+ Source: 1.0.0. SEACrowd: 2024.06.20.
59
+
60
+ ## Dataset License
61
+
62
+ Creative Commons Zero v1.0 Universal (cc0-1.0)
63
+
64
+ ## Citation
65
+
66
+ If you are using the **Commonvoice 120** dataloader in your work, please cite the following:
67
+ ```
68
+ @inproceedings{commonvoice:2020,
69
+ author = {Ardila, R. and Branson, M. and Davis, K. and Henretty, M. and Kohler, M. and Meyer, J. and Morais, R. and Saunders, L. and Tyers, F. M. and Weber, G.},
70
+ title = {Common Voice: A Massively-Multilingual Speech Corpus},
71
+ booktitle = {Proceedings of the 12th Conference on Language Resources and Evaluation (LREC 2020)},
72
+ pages = {4211--4215},
73
+ year = 2020
74
+ }
75
+
76
+
77
+ @article{lovenia2024seacrowd,
78
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
79
+ 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},
80
+ year={2024},
81
+ eprint={2406.10118},
82
+ journal={arXiv preprint arXiv: 2406.10118}
83
+ }
84
+
85
+ ```