carlosdanielhernandezmena commited on
Commit
ef936a3
·
verified ·
1 Parent(s): c9c42dc

Adding information to the README file.

Browse files
Files changed (1) hide show
  1. README.md +191 -0
README.md CHANGED
@@ -31,4 +31,195 @@ configs:
31
  - split: train
32
  path: librivox_spanish/train-*
33
  default: true
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  - split: train
32
  path: librivox_spanish/train-*
33
  default: true
34
+ task_categories:
35
+ - automatic-speech-recognition
36
+ language:
37
+ - es
38
+ tags:
39
+ - librivox spanish
40
+ - ciempiess-unam project
41
+ - ciempiess-unam
42
+ - read speech
43
+ - spanish speech
44
+ pretty_name: LIBRIVOX SPANISH CORPUS
45
+ size_categories:
46
+ - 10K<n<100K
47
  ---
48
+
49
+ # Dataset Card for librivox_spanish
50
+ ## Table of Contents
51
+ - [Dataset Description](#dataset-description)
52
+ - [Dataset Summary](#dataset-summary)
53
+ - [Supported Tasks](#supported-tasks-and-leaderboards)
54
+ - [Languages](#languages)
55
+ - [Dataset Structure](#dataset-structure)
56
+ - [Data Instances](#data-instances)
57
+ - [Data Fields](#data-fields)
58
+ - [Data Splits](#data-splits)
59
+ - [Dataset Creation](#dataset-creation)
60
+ - [Curation Rationale](#curation-rationale)
61
+ - [Source Data](#source-data)
62
+ - [Annotations](#annotations)
63
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
64
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
65
+ - [Social Impact of Dataset](#social-impact-of-dataset)
66
+ - [Discussion of Biases](#discussion-of-biases)
67
+ - [Other Known Limitations](#other-known-limitations)
68
+ - [Additional Information](#additional-information)
69
+ - [Dataset Curators](#dataset-curators)
70
+ - [Licensing Information](#licensing-information)
71
+ - [Citation Information](#citation-information)
72
+ - [Contributions](#contributions)
73
+
74
+ ## Dataset Description
75
+ - **Homepage:** [CIEMPIESS-UNAM Project](https://ciempiess.org/)
76
+ - **Repository:** [LIBRIVOX SPANISH CORPUS at LDC](https://catalog.ldc.upenn.edu/LDC2020S01)
77
+ - **Point of Contact:** [Carlos Mena](mailto:[email protected])
78
+
79
+ ### Dataset Summary
80
+
81
+ Librivox is a non-commercial, non-profit and ad-free project that is dedicated to make all books in the public domain available, for free, in audio format on the internet. According to this, we downloaded 300 titles in Spanish to create the LIBRIVOX SPANISH CORPUS.
82
+
83
+ The LIBRIVOX SPANISH CORPUS has a duration of 73 hours and it is constituted by audio files between 3 and 10 seconds long, manually segmented. Transcription are also manually made by Spanish native speakers. The recordings are divided between male/female and native/non-native speakers.
84
+
85
+ ### Example Usage
86
+ The LIBRIVOX SPANISH CORPUS contains only the train split:
87
+
88
+ ```python
89
+ from datasets import load_dataset
90
+ librivox_spanish = load_dataset("ciempiess/librivox_spanish")
91
+ ```
92
+ It is also valid to do:
93
+ ```python
94
+ from datasets import load_dataset
95
+ librivox_spanish = load_dataset("ciempiess/librivox_spanish",split="train")
96
+ ```
97
+
98
+ ### Supported Tasks
99
+ automatic-speech-recognition: The dataset can be used to test a model for Automatic Speech Recognition (ASR). The model is presented with an audio file and asked to transcribe the audio file to written text. The most common evaluation metric is the word error rate (WER).
100
+
101
+ ### Languages
102
+ The language of the corpus is Spanish.
103
+
104
+ ## Dataset Structure
105
+
106
+ ### Data Instances
107
+ ```python
108
+ {
109
+ 'audio_id': 'LBVX_F_69_NNT_0035',
110
+ 'audio': {
111
+ 'path': '/home/carlos/.cache/HuggingFace/datasets/downloads/extracted/a506b24788064c4a89c858f829b408b0d2445c9cc30e52087e38ceee60fa03d7/non_native/female/F_69/LBVX_F_69_NNT_0035.flac',
112
+ 'array': array([ 2.4414062e-04, -6.1035156e-05, -2.1362305e-04, ...,
113
+ -6.1035156e-04, -4.8828125e-04, -7.6293945e-04], dtype=float32), 'sampling_rate': 16000
114
+ },
115
+ 'speaker_id': 'F_69',
116
+ 'speaker_group': 'non_native',
117
+ 'gender': 'female',
118
+ 'duration': 9.975000381469727,
119
+ 'normalized_text': 'del pequeño dormido en la mejilla que con timido afán su madre besa y se refleja alegre en la fajilla'
120
+ }
121
+ ```
122
+
123
+ ### Data Fields
124
+ * `audio_id` (string) - id of audio segment
125
+ * `audio` (datasets.Audio) - a dictionary containing the path to the audio, the decoded audio array, and the sampling rate. In non-streaming mode (default), the path points to the locally extracted audio. In streaming mode, the path is the relative path of an audio inside its archive (as files are not downloaded and extracted locally).
126
+ * `speaker_id` (string) - id of speaker
127
+ * `speaker_group` (string) - native or non native
128
+ * `gender` (string) - gender of speaker (male or female)
129
+ * `duration` (float32) - duration of the audio file in seconds.
130
+ * `normalized_text` (string) - normalized audio segment transcription
131
+
132
+ ### Data Splits
133
+
134
+ The corpus counts just with the train split which has a total of 36338 speech files from 77 female speakers and 77 male speakers with a total duration of 73 hours and 1 minute.
135
+
136
+ ## Dataset Creation
137
+
138
+ ### Curation Rationale
139
+
140
+ The LIBRIVOX SPANISH CORPUS (LSC) has the following characteristics:
141
+
142
+ * The LSC has an exact duration of 73 hours and 1 minute. It has 36338 audio files.
143
+
144
+ * The LSC counts with 154 different speakers: 77 men and 77 women.
145
+
146
+ * Every audio file in the LSC has a duration between 3 and 10 seconds approximately.
147
+
148
+ * Data in LSC is classified by speaker. It means, all the recordings of one single speaker are stored in one single directory.
149
+
150
+ * Data is also classified according to the gender (male/female) of the speakers and according to the way they speak (native/non-native).
151
+
152
+ * Audio and transcriptions in the LSC are segmented and transcribed by native speakers of the Spanish language
153
+
154
+ * Audio files in the LSC are distributed in a 16khz@16bit mono format.
155
+
156
+ * Every audio file has an ID that is compatible with ASR engines such as Kaldi and CMU-Sphinx.
157
+
158
+ ### Source Data
159
+
160
+ #### Initial Data Collection and Normalization
161
+
162
+ The LIBRIVOX SPANISH CORPUS is a speech corpus designed to train acoustic models for automatic speech recognition and it is made out of 300 audio books taken from [Librivox](https://librivox.org/).
163
+
164
+ ### Annotations
165
+
166
+ #### Annotation process
167
+
168
+ The annotation process is at follows:
169
+
170
+ * 1. A whole podcast is manually segmented keeping just the portions containing good quality speech.
171
+ * 2. A second pass os segmentation is performed; this time to separate speakers and put them in different folders.
172
+ * 3. The resulting speech files between 5 and 10 seconds are transcribed by students from different departments (computing, engineering, linguistics). Most of them are native speakers but not with a particular training as transcribers.
173
+
174
+ #### Who are the annotators?
175
+
176
+ The LIBRIVOX SPANISH CORPUS was created under the umbrella of the social service program ["Desarrollo de Tecnologías del Habla"](http://profesores.fi-b.unam.mx/carlos_mena/servicio.html) of the ["Facultad de Ingeniería"](https://www.ingenieria.unam.mx/) (FI) in the ["Universidad Nacional Autónoma de México"](https://www.unam.mx/) (UNAM) between 2016 and 2019 by Carlos Daniel Hernández Mena, head of the program.
177
+
178
+ ### Personal and Sensitive Information
179
+
180
+ The dataset could contain names revealing the identity of some speakers; on the other side, the recordings come from publicly available podcasts, so, there is not a real intent of the participants to be anonymized. Anyway, you agree to not attempt to determine the identity of speakers in this dataset.
181
+
182
+ ## Considerations for Using the Data
183
+
184
+ ### Social Impact of Dataset
185
+
186
+ This dataset is valuable because it contains well pronounced speech with low noise.
187
+
188
+ ### Discussion of Biases
189
+
190
+ The dataset is gender balanced. It is comprised of 77 female speakers and 77 male speakers.
191
+
192
+ ### Other Known Limitations
193
+
194
+ LIBRIVOX SPANISH CORPUS by Carlos Daniel Hernández Mena is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License [CC-BY-SA-4.0](http://creativecommons.org/licenses/by-sa/4.0/) and it utilizes material from [Librivox](https://librivox.org/). This work was done with the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
195
+
196
+ ### Dataset Curators
197
+
198
+ The dataset was collected by students belonging to the social service program ["Desarrollo de Tecnologías del Habla"](http://profesores.fi-b.unam.mx/carlos_mena/servicio.html). It was curated by [Carlos Daniel Hernández Mena](https://huggingface.co/carlosdanielhernandezmena) in 2019.
199
+
200
+ ### Licensing Information
201
+ [CC-BY-SA-4.0](http://creativecommons.org/licenses/by-sa/4.0/)
202
+
203
+ ### Citation Information
204
+ ```
205
+ @misc{carlosmena2020librivoxspanish,
206
+ title={LIBRIVOX SPANISH CORPUS: Audio and Transcriptions taken from Librivox.org},
207
+ ldc_catalog_no={LDC2020S01},
208
+ DOI={https://doi.org/10.35111/a44z-6x49},
209
+ author={Hernandez Mena, Carlos Daniel},
210
+ journal={Linguistic Data Consortium, Philadelphia},
211
+ year={2020},
212
+ url={https://catalog.ldc.upenn.edu/LDC2020S01},
213
+ }
214
+ ```
215
+
216
+ ### Contributions
217
+
218
+ The author would like to thank to Alejandro V. Mena, Elena Vera and Angélica Gutiérrez for their
219
+ support to the social service program: "Desarrollo de Tecnologías del Habla." He also thanks
220
+ to the social service students for all the hard work.
221
+
222
+ Special thanks to the Librivox team for publishing all the recordings that constitute the
223
+ LIBRIVOX SPANISH CORPUS.
224
+
225
+ This dataset card was created as part of the objectives of the 16th edition of the Severo Ochoa Mobility Program (PN039300 - Severo Ochoa 2021 - E&T).