holylovenia
commited on
Commit
•
22bd3ba
1
Parent(s):
842493a
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,23 +1,62 @@
|
|
|
|
1 |
---
|
2 |
-
|
3 |
-
- speech-recognition
|
4 |
-
language:
|
5 |
- sun
|
6 |
- jav
|
7 |
- btk
|
8 |
- ban
|
|
|
|
|
|
|
|
|
|
|
9 |
---
|
10 |
|
11 |
-
# indspeech_newstra_ethnicsr
|
12 |
-
|
13 |
INDspeech_NEWSTRA_EthnicSR is a collection of graphemically balanced and parallel speech corpora of four major Indonesian ethnic languages: Javanese, Sundanese, Balinese, and Bataks. It was developed in 2013 by the Nara Institute of Science and Technology (NAIST, Japan) [Sakti et al., 2013]. The data has been used to develop Indonesian ethnic speech recognition in supervised learning [Sakti et al., 2014] and semi-supervised learning [Novitasari et al., 2020] based on Machine Speech Chain framework [Tjandra et al., 2020].
|
14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
## Dataset Usage
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
## Citation
|
20 |
|
|
|
21 |
```
|
22 |
@inproceedings{sakti-cocosda-2013,
|
23 |
title = "Towards Language Preservation: Design and Collection of Graphemically Balanced and Parallel Speech Corpora of {I}ndonesian Ethnic Languages",
|
@@ -44,16 +83,14 @@ Run `pip install nusacrowd` before loading the dataset through HuggingFace's `lo
|
|
44 |
pages = "131--138",
|
45 |
address = "Marseille, France"
|
46 |
}
|
47 |
-
```
|
48 |
|
49 |
-
## License
|
50 |
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
|
59 |
-
|
|
|
1 |
+
|
2 |
---
|
3 |
+
language:
|
|
|
|
|
4 |
- sun
|
5 |
- jav
|
6 |
- btk
|
7 |
- ban
|
8 |
+
pretty_name: Indspeech Newstra Ethnicsr
|
9 |
+
task_categories:
|
10 |
+
- speech-recognition
|
11 |
+
tags:
|
12 |
+
- speech-recognition
|
13 |
---
|
14 |
|
|
|
|
|
15 |
INDspeech_NEWSTRA_EthnicSR is a collection of graphemically balanced and parallel speech corpora of four major Indonesian ethnic languages: Javanese, Sundanese, Balinese, and Bataks. It was developed in 2013 by the Nara Institute of Science and Technology (NAIST, Japan) [Sakti et al., 2013]. The data has been used to develop Indonesian ethnic speech recognition in supervised learning [Sakti et al., 2014] and semi-supervised learning [Novitasari et al., 2020] based on Machine Speech Chain framework [Tjandra et al., 2020].
|
16 |
|
17 |
+
|
18 |
+
## Languages
|
19 |
+
|
20 |
+
sun, jav, btk, ban
|
21 |
+
|
22 |
+
## Supported Tasks
|
23 |
+
|
24 |
+
Speech Recognition
|
25 |
+
|
26 |
## Dataset Usage
|
27 |
+
### Using `datasets` library
|
28 |
+
```
|
29 |
+
from datasets import load_dataset
|
30 |
+
dset = datasets.load_dataset("SEACrowd/indspeech_newstra_ethnicsr", trust_remote_code=True)
|
31 |
+
```
|
32 |
+
### Using `seacrowd` library
|
33 |
+
```import seacrowd as sc
|
34 |
+
# Load the dataset using the default config
|
35 |
+
dset = sc.load_dataset("indspeech_newstra_ethnicsr", schema="seacrowd")
|
36 |
+
# Check all available subsets (config names) of the dataset
|
37 |
+
print(sc.available_config_names("indspeech_newstra_ethnicsr"))
|
38 |
+
# Load the dataset using a specific config
|
39 |
+
dset = sc.load_dataset_by_config_name(config_name="<config_name>")
|
40 |
+
```
|
41 |
+
|
42 |
+
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).
|
43 |
+
|
44 |
+
|
45 |
+
## Dataset Homepage
|
46 |
|
47 |
+
[https://github.com/s-sakti/data_indsp_newstra_ethnicsr](https://github.com/s-sakti/data_indsp_newstra_ethnicsr)
|
48 |
+
|
49 |
+
## Dataset Version
|
50 |
+
|
51 |
+
Source: 1.0.0. SEACrowd: 2024.06.20.
|
52 |
+
|
53 |
+
## Dataset License
|
54 |
+
|
55 |
+
CC-BY-NC-SA 4.0
|
56 |
|
57 |
## Citation
|
58 |
|
59 |
+
If you are using the **Indspeech Newstra Ethnicsr** dataloader in your work, please cite the following:
|
60 |
```
|
61 |
@inproceedings{sakti-cocosda-2013,
|
62 |
title = "Towards Language Preservation: Design and Collection of Graphemically Balanced and Parallel Speech Corpora of {I}ndonesian Ethnic Languages",
|
|
|
83 |
pages = "131--138",
|
84 |
address = "Marseille, France"
|
85 |
}
|
|
|
86 |
|
|
|
87 |
|
88 |
+
@article{lovenia2024seacrowd,
|
89 |
+
title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
|
90 |
+
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},
|
91 |
+
year={2024},
|
92 |
+
eprint={2406.10118},
|
93 |
+
journal={arXiv preprint arXiv: 2406.10118}
|
94 |
+
}
|
95 |
|
96 |
+
```
|