holylovenia commited on
Commit
c6a2e34
1 Parent(s): af3340d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +53 -32
README.md CHANGED
@@ -1,52 +1,75 @@
 
1
  ---
2
- tags:
3
- - speech-recognition
4
- language:
5
  - ind
 
 
 
 
 
6
  ---
7
 
8
- # indspeech_teldialog_svcsr
9
-
10
  This is the first Indonesian speech dataset for small vocabulary continuous speech recognition (SVCSR).
11
-
12
  The data was developed by TELKOMRisTI (R&D Division, PT Telekomunikasi Indonesia) in collaboration with Advanced
13
-
14
  Telecommunication Research Institute International (ATR) Japan and Bandung Institute of Technology (ITB) under the
15
-
16
  Asia-Pacific Telecommunity (APT) project in 2004 [Sakti et al., 2004]. Although it was originally developed for
17
-
18
  a telecommunication system for hearing and speaking impaired people, it can be used for other applications,
19
-
20
  i.e., automatic call centers. Furthermore, as all speakers utter the same sentences,
21
-
22
  it can also be used for voice conversion tasks.
23
 
24
-
25
-
26
  The text is based on a word vocabulary which is derived from some necessary dialog calls,
27
-
28
  such as dialog calls with the 119 emergency department, 108 telephone information department,
29
-
30
  and ticket reservation department. In total, it consists of 20,000 utterances (about 18 hours of speech) from the
31
-
32
  70-word dialog vocabulary of 100 sentences (including single word sentences) each uttered by 200 speakers
33
-
34
  (100 Females, 100 Males). The age is limited to middle age (20-40 years), but they present a wide range of spoken
35
-
36
  dialects from different ethnic groups. The recording is conducted in parallel for both clean and telephone speech,
37
-
38
  but we open only the clean speech due to quality issues on telephone speech.
39
-
40
  Each audio file is a single-channel 16-bit PCM WAV with a sample rate of 16000 Hz.
41
-
42
  These utterances are equally split into training and test sets with 100 speakers (50 Females, 50 Males) in each set.
43
 
 
 
 
 
 
 
 
 
 
44
  ## Dataset Usage
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
 
46
- Run `pip install nusacrowd` before loading the dataset through HuggingFace's `load_dataset`.
 
 
 
 
47
 
48
  ## Citation
49
 
 
50
  ```
51
  @inproceedings{sakti-icslp-2004,
52
  title = "Indonesian Speech Recognition for Hearing and Speaking Impaired People",
@@ -56,16 +79,14 @@ Run `pip install nusacrowd` before loading the dataset through HuggingFace's `lo
56
  pages = "1037--1040"
57
  address = "Jeju Island, Korea"
58
  }
59
- ```
60
-
61
- ## License
62
 
63
- CC-BY-NC-SA-4.0
64
-
65
- ## Homepage
66
 
67
- [https://github.com/s-sakti/data_indsp_teldialog_svcsr/](https://github.com/s-sakti/data_indsp_teldialog_svcsr/)
68
-
69
- ### NusaCatalogue
 
 
 
 
70
 
71
- For easy indexing and metadata: [https://indonlp.github.io/nusa-catalogue](https://indonlp.github.io/nusa-catalogue)
 
1
+
2
  ---
3
+ language:
 
 
4
  - ind
5
+ pretty_name: Indspeech Teldialog Svcsr
6
+ task_categories:
7
+ - speech-recognition
8
+ tags:
9
+ - speech-recognition
10
  ---
11
 
 
 
12
  This is the first Indonesian speech dataset for small vocabulary continuous speech recognition (SVCSR).
 
13
  The data was developed by TELKOMRisTI (R&D Division, PT Telekomunikasi Indonesia) in collaboration with Advanced
 
14
  Telecommunication Research Institute International (ATR) Japan and Bandung Institute of Technology (ITB) under the
 
15
  Asia-Pacific Telecommunity (APT) project in 2004 [Sakti et al., 2004]. Although it was originally developed for
 
16
  a telecommunication system for hearing and speaking impaired people, it can be used for other applications,
 
17
  i.e., automatic call centers. Furthermore, as all speakers utter the same sentences,
 
18
  it can also be used for voice conversion tasks.
19
 
 
 
20
  The text is based on a word vocabulary which is derived from some necessary dialog calls,
 
21
  such as dialog calls with the 119 emergency department, 108 telephone information department,
 
22
  and ticket reservation department. In total, it consists of 20,000 utterances (about 18 hours of speech) from the
 
23
  70-word dialog vocabulary of 100 sentences (including single word sentences) each uttered by 200 speakers
 
24
  (100 Females, 100 Males). The age is limited to middle age (20-40 years), but they present a wide range of spoken
 
25
  dialects from different ethnic groups. The recording is conducted in parallel for both clean and telephone speech,
 
26
  but we open only the clean speech due to quality issues on telephone speech.
 
27
  Each audio file is a single-channel 16-bit PCM WAV with a sample rate of 16000 Hz.
 
28
  These utterances are equally split into training and test sets with 100 speakers (50 Females, 50 Males) in each set.
29
 
30
+
31
+ ## Languages
32
+
33
+ ind
34
+
35
+ ## Supported Tasks
36
+
37
+ Speech Recognition
38
+
39
  ## Dataset Usage
40
+ ### Using `datasets` library
41
+ ```
42
+ from datasets import load_dataset
43
+ dset = datasets.load_dataset("SEACrowd/indspeech_teldialog_svcsr", trust_remote_code=True)
44
+ ```
45
+ ### Using `seacrowd` library
46
+ ```import seacrowd as sc
47
+ # Load the dataset using the default config
48
+ dset = sc.load_dataset("indspeech_teldialog_svcsr", schema="seacrowd")
49
+ # Check all available subsets (config names) of the dataset
50
+ print(sc.available_config_names("indspeech_teldialog_svcsr"))
51
+ # Load the dataset using a specific config
52
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
53
+ ```
54
+
55
+ 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).
56
+
57
+
58
+ ## Dataset Homepage
59
+
60
+ [https://github.com/s-sakti/data_indsp_teldialog_svcsr/](https://github.com/s-sakti/data_indsp_teldialog_svcsr/)
61
+
62
+ ## Dataset Version
63
 
64
+ Source: 1.0.0. SEACrowd: 2024.06.20.
65
+
66
+ ## Dataset License
67
+
68
+ CC-BY-NC-SA-4.0
69
 
70
  ## Citation
71
 
72
+ If you are using the **Indspeech Teldialog Svcsr** dataloader in your work, please cite the following:
73
  ```
74
  @inproceedings{sakti-icslp-2004,
75
  title = "Indonesian Speech Recognition for Hearing and Speaking Impaired People",
 
79
  pages = "1037--1040"
80
  address = "Jeju Island, Korea"
81
  }
 
 
 
82
 
 
 
 
83
 
84
+ @article{lovenia2024seacrowd,
85
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
86
+ 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},
87
+ year={2024},
88
+ eprint={2406.10118},
89
+ journal={arXiv preprint arXiv: 2406.10118}
90
+ }
91
 
92
+ ```