artur-muratov commited on
Commit
5138f7e
·
verified ·
1 Parent(s): b81b785

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +140 -0
README.md CHANGED
@@ -1,3 +1,143 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ language:
4
+ - en
5
+ - ru
6
+ - kk
7
+ - tt
8
+ - ar
9
+ - tr
10
+ - fr
11
+ - de
12
+ - es
13
+ - it
14
+ - ca
15
+ - fa
16
+ - pl
17
+ - nl
18
+ - rw
19
+ pretty_name: Multilingual Speech Commands Dataset (15 Languages, Augmented)
20
+ tags:
21
+ - speech
22
+ - audio
23
+ - keyword-spotting
24
+ - speech-commands
25
+ - multilingual
26
+ - low-resource
27
+ - dataset
28
+ - augmentation
29
  ---
30
+
31
+ # Multilingual Speech Commands Dataset (15 Languages, Augmented)
32
+
33
+ This dataset contains **augmented speech command samples** in 15 languages, derived from multiple public datasets. Only commands that **overlap with the Google Speech Commands (GSC)** vocabulary are included, making the dataset suitable for multilingual keyword spotting tasks aligned with GSC-style classification.
34
+
35
+ Audio samples have been augmented using standard audio techniques to improve model robustness (e.g., time-shifting, noise injection, pitch variation).
36
+
37
+ The dataset is organized as a set of zip files, one per command label (e.g., `yes.zip`, `no.zip`, `go.zip`, `stop.zip`, etc.). Metadata files are included to facilitate training and evaluation.
38
+
39
+ ## Languages
40
+
41
+ - English
42
+ - Kazakh
43
+ - Russian
44
+ - Tatar
45
+ - Arabic
46
+ - Turkish
47
+ - French
48
+ - German
49
+ - Spanish
50
+ - Italian
51
+ - Catalan
52
+ - Persian
53
+ - Polish
54
+ - Dutch
55
+ - Kinyarwanda
56
+
57
+ ## Structure
58
+
59
+ The dataset includes:
60
+ - One zip file per speech command (e.g., `yes.zip`, `no.zip`, `go.zip`, `stop.zip`, etc.), each containing the audio samples for that command
61
+ - Metadata files:
62
+ - `training_list.txt`
63
+ - `validation_list.txt`
64
+ - `testing_list.txt`
65
+ - `label_map.json`
66
+ - `lang_map.json`
67
+
68
+ ## License
69
+
70
+ All audio samples are redistributed under the [Creative Commons Attribution 4.0 International (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/) license, as permitted by the original sources. Please cite the original datasets below if you use this dataset in your research.
71
+
72
+ ## Citations
73
+
74
+ ```
75
+ @article{speechcommandsv2,
76
+ author = {{Warden}, P.},
77
+ title = "{Speech Commands: A Dataset for Limited-Vocabulary Speech Recognition}",
78
+ journal = {ArXiv e-prints},
79
+ archivePrefix = "arXiv",
80
+ eprint = {1804.03209},
81
+ year = 2018,
82
+ month = apr,
83
+ url = {[https://arxiv.org/abs/1804.03209}](https://arxiv.org/abs/1804.03209})
84
+ }
85
+ ```
86
+ ```
87
+ @INPROCEEDINGS{TatarSCR,
88
+ author={Kuzdeuov, Askat and Gilmullin, Rinat and Khakimov, Bulat and Varol, Huseyin Atakan},
89
+ booktitle={Proc. of the Annual Conference of the IEEE Industrial Electronics Society (IECON)},
90
+ title={An Open-Source Tatar Speech Commands Dataset for IoT and Robotics Applications},
91
+ year={2024},
92
+ pages={1-5},
93
+ doi={10.1109/IECON55916.2024.10905876}
94
+ }
95
+ ```
96
+ ```
97
+ @INPROCEEDINGS{KazakhSCR,
98
+ author={Kuzdeuov, Askat and Nurgaliyev, Shakhizat and Turmakhan, Diana and Laiyk, Nurkhan and Varol, Huseyin Atakan},
99
+ booktitle={Proc. of the International Conference on Robotics, Automation and Artificial Intelligence (RAAI)},
100
+ title={Speech Command Recognition: Text-to-Speech and Speech Corpus Scraping Are All You Need},
101
+ year={2023},
102
+ pages={286-291},
103
+ doi={10.1109/RAAI59955.2023.10601292}
104
+ }
105
+ ```
106
+ ```
107
+ @INPROCEEDINGS{MultilingualSCR,
108
+ author={Kuzdeuov, Askat and Varol, Huseyin Atakan},
109
+ booktitle={2025 11th International Conference on Control, Automation and Robotics (ICCAR)},
110
+ title={Multilingual Speech Command Recognition for Voice Controlled Robots and Smart Systems},
111
+ year={2025}
112
+ }
113
+ ```
114
+ ```
115
+ @inproceedings{mazumder2021multilingual,
116
+ title = {Multilingual Spoken Words Corpus},
117
+ author = {Mazumder, Mark and Chitlangia, Sharad and Banbury, Colby and Kang, Yiping and Ciro, Juan Manuel and Achorn, Keith and Galvez, Daniel and Sabini, Mark and Mattson, Peter and Kanter, David and Diamos, Greg and Warden, Pete and Meyer, Josh and Reddi, Vijay Janapa},
118
+ booktitle = {Proc. of the NeurIPS Datasets and Benchmarks Track},
119
+ year = {2021},
120
+ url = {[https://mlcommons.org/en/multilingual-spoken-words}](https://mlcommons.org/en/multilingual-spoken-words})
121
+ }
122
+ ```
123
+ ```
124
+ @article{GHANDOURA2021104267,
125
+ author = {Ghandoura, Abdulkader and Hjabo, Farouk and Al Dakkak, Oumayma},
126
+ title = {Building and Benchmarking an Arabic Speech Commands Dataset for Small-Footprint Keyword Spotting},
127
+ journal = {Engineering Applications of Artificial Intelligence},
128
+ year = {2021},
129
+ publisher = {Elsevier}
130
+ }
131
+ ```
132
+ ```
133
+ @misc{turkish_speech_commands,
134
+ author = {Murat Kurtkaya},
135
+ title = {Turkish Speech Command Dataset},
136
+ year = {2021},
137
+ howpublished = {\url{[https://www.kaggle.com/datasets/muratkurtkaya/turkish-speech-command-dataset}}](https://www.kaggle.com/datasets/muratkurtkaya/turkish-speech-command-dataset}})
138
+ }
139
+ ```
140
+
141
+ ## Acknowledgements
142
+
143
+ This dataset reuses and builds upon data made publicly available by the authors of the original datasets listed above. We thank them for enabling open research.