Datasets:

Languages:
Vietnamese
ArXiv:
License:
holylovenia commited on
Commit
12e58e2
1 Parent(s): 1c286fa

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +86 -0
README.md ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: apache-2.0
4
+ language:
5
+ - vie
6
+ pretty_name: Bud500
7
+ task_categories:
8
+ - speech-recognition
9
+ tags:
10
+ - speech-recognition
11
+ ---
12
+
13
+
14
+ # Bud500
15
+
16
+ Bud500 is a diverse Vietnamese speech corpus designed to support ASR research
17
+ community. With aprroximately 500 hours of audio, it covers a broad spectrum of
18
+ topics including podcast, travel, book, food, and so on, while spanning accents
19
+ from Vietnam's North, South, and Central regions. Derived from free public audio
20
+ resources, this publicly accessible dataset is designed to significantly enhance
21
+ the work of developers and researchers in the field of speech recognition.
22
+ Before using this dataloader, please accept the acknowledgement at
23
+ https://huggingface.co/datasets/linhtran92/viet_bud500 and use huggingface-cli
24
+ login for authentication.
25
+
26
+
27
+ ## Languages
28
+
29
+ vie
30
+
31
+ ## Supported Tasks
32
+
33
+ Speech Recognition
34
+
35
+ ## Dataset Usage
36
+ ### Using `datasets` library
37
+ ```
38
+ from datasets import load_dataset
39
+ dset = datasets.load_dataset("SEACrowd/bud500", trust_remote_code=True)
40
+ ```
41
+ ### Using `seacrowd` library
42
+ ```import seacrowd as sc
43
+ # Load the dataset using the default config
44
+ dset = sc.load_dataset("bud500", schema="seacrowd")
45
+ # Check all available subsets (config names) of the dataset
46
+ print(sc.available_config_names("bud500"))
47
+ # Load the dataset using a specific config
48
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
49
+ ```
50
+
51
+ 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).
52
+
53
+
54
+ ## Dataset Homepage
55
+
56
+ [https://huggingface.co/datasets/linhtran92/viet_bud500](https://huggingface.co/datasets/linhtran92/viet_bud500)
57
+
58
+ ## Dataset Version
59
+
60
+ Source: 1.0.0. SEACrowd: 2024.06.20.
61
+
62
+ ## Dataset License
63
+
64
+ Apache license 2.0 (apache-2.0)
65
+
66
+ ## Citation
67
+
68
+ If you are using the **Bud500** dataloader in your work, please cite the following:
69
+ ```
70
+ @misc{Bud500,
71
+ author = {Anh Pham, Khanh Linh Tran, Linh Nguyen, Thanh Duy Cao, Phuc Phan, Duong A. Nguyen},
72
+ title = {Bud500: A Comprehensive Vietnamese ASR Dataset},
73
+ url = {https://github.com/quocanh34/Bud500},
74
+ year = {2024}
75
+ }
76
+
77
+
78
+ @article{lovenia2024seacrowd,
79
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
80
+ 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},
81
+ year={2024},
82
+ eprint={2406.10118},
83
+ journal={arXiv preprint arXiv: 2406.10118}
84
+ }
85
+
86
+ ```