holylovenia commited on
Commit
62f63b2
1 Parent(s): 07a1ad2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +100 -0
README.md ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: cc
4
+ language:
5
+ - bjn
6
+ - bzi
7
+ - ceb
8
+ - ind
9
+ - jra
10
+ - kqr
11
+ - mya
12
+ - tgl
13
+ pretty_name: Bloom Speech
14
+ task_categories:
15
+ - speech-recognition
16
+ tags:
17
+ - speech-recognition
18
+ ---
19
+
20
+
21
+ This version of the Bloom Library data is developed specifically for the automatic speech recognition and speech-to-text tasks.
22
+ It includes data from 56 languages across 18 language families. 8 languages are spoken in Southeast Asia.
23
+ Before using this dataloader, please accept the acknowledgement at https://huggingface.co/datasets/sil-ai/bloom-speech and use huggingface-cli login for authentication.
24
+
25
+
26
+ ## Languages
27
+
28
+ bjn, bzi, ceb, ind, jra, kqr, mya, tgl
29
+
30
+ ## Supported Tasks
31
+
32
+ Speech Recognition
33
+
34
+ ## Dataset Usage
35
+ ### Using `datasets` library
36
+ ```
37
+ from datasets import load_dataset
38
+ dset = datasets.load_dataset("SEACrowd/bloom_speech", trust_remote_code=True)
39
+ ```
40
+ ### Using `seacrowd` library
41
+ ```import seacrowd as sc
42
+ # Load the dataset using the default config
43
+ dset = sc.load_dataset("bloom_speech", schema="seacrowd")
44
+ # Check all available subsets (config names) of the dataset
45
+ print(sc.available_config_names("bloom_speech"))
46
+ # Load the dataset using a specific config
47
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
48
+ ```
49
+
50
+ 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).
51
+
52
+
53
+ ## Dataset Homepage
54
+
55
+ [https://huggingface.co/datasets/sil-ai/bloom-speech](https://huggingface.co/datasets/sil-ai/bloom-speech)
56
+
57
+ ## Dataset Version
58
+
59
+ Source: 0.0.1. SEACrowd: 2024.06.20.
60
+
61
+ ## Dataset License
62
+
63
+ Creative Commons license family (cc)
64
+
65
+ ## Citation
66
+
67
+ If you are using the **Bloom Speech** dataloader in your work, please cite the following:
68
+ ```
69
+
70
+ @inproceedings{leong-etal-2022-bloom,
71
+ title = "Bloom Library: Multimodal Datasets in 300+ Languages for a Variety of Downstream Tasks",
72
+ author = "Leong, Colin and
73
+ Nemecek, Joshua and
74
+ Mansdorfer, Jacob and
75
+ Filighera, Anna and
76
+ Owodunni, Abraham and
77
+ Whitenack, Daniel",
78
+ editor = "Goldberg, Yoav and
79
+ Kozareva, Zornitsa and
80
+ Zhang, Yue",
81
+ booktitle = "Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing",
82
+ month = dec,
83
+ year = "2022",
84
+ address = "Abu Dhabi, United Arab Emirates",
85
+ publisher = "Association for Computational Linguistics",
86
+ url = "https://aclanthology.org/2022.emnlp-main.590",
87
+ doi = "10.18653/v1/2022.emnlp-main.590",
88
+ pages = "8608--8621",
89
+ }
90
+
91
+
92
+ @article{lovenia2024seacrowd,
93
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
94
+ 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},
95
+ year={2024},
96
+ eprint={2406.10118},
97
+ journal={arXiv preprint arXiv: 2406.10118}
98
+ }
99
+
100
+ ```