carlosdanielhernandezmena commited on
Commit
ef409fa
·
verified ·
1 Parent(s): 95b2d68

Adding info to the README file

Browse files
Files changed (1) hide show
  1. README.md +170 -0
README.md CHANGED
@@ -30,3 +30,173 @@ configs:
30
  path: chm150_asr/train-*
31
  default: true
32
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  path: chm150_asr/train-*
31
  default: true
32
  ---
33
+
34
+ # Dataset Card for chm150_asr
35
+ ## Table of Contents
36
+ - [Dataset Description](#dataset-description)
37
+ - [Dataset Summary](#dataset-summary)
38
+ - [Supported Tasks](#supported-tasks-and-leaderboards)
39
+ - [Languages](#languages)
40
+ - [Dataset Structure](#dataset-structure)
41
+ - [Data Instances](#data-instances)
42
+ - [Data Fields](#data-fields)
43
+ - [Data Splits](#data-splits)
44
+ - [Dataset Creation](#dataset-creation)
45
+ - [Curation Rationale](#curation-rationale)
46
+ - [Source Data](#source-data)
47
+ - [Annotations](#annotations)
48
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
49
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
50
+ - [Social Impact of Dataset](#social-impact-of-dataset)
51
+ - [Discussion of Biases](#discussion-of-biases)
52
+ - [Other Known Limitations](#other-known-limitations)
53
+ - [Additional Information](#additional-information)
54
+ - [Dataset Curators](#dataset-curators)
55
+ - [Licensing Information](#licensing-information)
56
+ - [Citation Information](#citation-information)
57
+ - [Contributions](#contributions)
58
+
59
+ ## Dataset Description
60
+ - **Homepage:** [CIEMPIESS-UNAM Project](https://ciempiess.org/)
61
+ - **Repository:** [CIEMPIESS LIGHT at LDC](https://catalog.ldc.upenn.edu/LDC2017S23)
62
+ - **Paper:** [CIEMPIESS: A New Open-Sourced Mexican Spanish Radio Corpus](http://www.lrec-conf.org/proceedings/lrec2014/pdf/182_Paper.pdf)
63
+ - **Point of Contact:** [Carlos Mena](mailto:carlos.mena@ciempiess.org)
64
+
65
+ ### Dataset Summary
66
+
67
+ The CHM150 is a corpus of microphone speech of mexican Spanish taken from 75 male speakers and 75 female speakers in a noise environment of a "quiet office" with a total duration of 1.63 hours.
68
+
69
+ Speakers were encouraged to respond between some pre selected open questions or they could also describe a particular painting showed to them in a computer monitor. By so, the speech is completely spontaneous and one can see it in the transcription file, that captures disfluencies and mispronunciations in an orthographic way.
70
+
71
+ The CHM150 Corpus was created at the "Laboratorio de Tecnologías del Habla" of the "Facultad de Ingeniería (FI)" in the "Universidad Nacional Autónoma de México (UNAM)" in 2012 by Carlos Daniel Hernández Mena, supervised by José Abel Herrera Camacho, head of Laboratory.
72
+
73
+ ### Example Usage
74
+ The CHM150 CORPUS contains only the train split:
75
+ ```python
76
+ from datasets import load_dataset
77
+ cm150_asr = load_dataset("carlosdanielhernandezmena/chm150_asr")
78
+ ```
79
+ It is also valid to do:
80
+ ```python
81
+ from datasets import load_dataset
82
+ cm150_asr = load_dataset("carlosdanielhernandezmena/chm150_asr",split="train")
83
+ ```
84
+
85
+ ### Supported Tasks
86
+ 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).
87
+
88
+ ### Languages
89
+ The language of the corpus is Spanish with the accent of Central Mexico.
90
+
91
+ ## Dataset Structure
92
+
93
+ ### Data Instances
94
+ ```python
95
+ {
96
+ 'audio_id': 'CHMC_F_43_20ABR1232_0002',
97
+ 'audio': {
98
+ 'path': '/home/carlos/.cache/HuggingFace/datasets/downloads/extracted/eadb709611fa8f6fa88f7fa085738cf1e438d9a98d9a4c95314944f0730a8893/train/female/F20ABR1232/CHMC_F_43_20ABR1232_0002.flac',
99
+ 'array': array([ 0.00067139, 0.00387573, -0.00784302, ..., -0.00485229,
100
+ 0.00497437, -0.00338745], dtype=float32),
101
+ 'sampling_rate': 16000
102
+ },
103
+ 'speaker_id': 'F_43',
104
+ 'gender': 'female',
105
+ 'duration': 3.6689999103546143,
106
+ 'normalized_text': 'suma memoria uno más memoria dos'
107
+ }
108
+ ```
109
+
110
+ ### Data Fields
111
+ * `audio_id` (string) - id of audio segment
112
+ * `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).
113
+ * `speaker_id` (string) - id of speaker
114
+ * `gender` (string) - gender of speaker (male or female)
115
+ * `duration` (float32) - duration of the audio file in seconds.
116
+ * `normalized_text` (string) - normalized audio segment transcription
117
+
118
+ ### Data Splits
119
+
120
+ The corpus counts just with the train split which has a total of 2663 speech files from 75 male speakers and 75 female speakers with a total duration of 1 hour and 38 minutes.
121
+
122
+ ## Dataset Creation
123
+
124
+ ### Curation Rationale
125
+
126
+ The CHM150 is a corpus of microphone speech of mexican Spanish taken from 75 male speakers and 75 female speakers in a noise environment of a "quiet office" with a total duration of 1.63 hours.
127
+
128
+ Only the most "clean" utterances were selected to be part of the corpus. By "clean" one can understand that there is no background music, loud noises, or more than one people speaking at the same time.
129
+
130
+ The audio equipment utilized to create the corpus was modest, it consisted in:
131
+
132
+ * [USB Interface](http://www.produktinfo.conrad.com/datenblaetter/300000-324999/303350-an-01-en-U_Control_UCA200.pdf)
133
+ * [Analogic Audio Mixer](http://www.music-group.com/Categories/Behringer/Mixers/Small-Format-Mixers/502/p/P0576)
134
+ * [Dynamic Cardioid Vocal Microphone](http://www.music-group.com/Categories/Behringer/Microphones/Dynamic-Microphones/XM8500/p/P0120)
135
+
136
+ The software utilized for recording was [Audacity](http://audacityteam.org/) and then the audio was downsampled and normalized with [SoX](http://sox.sourceforge.net/).
137
+
138
+ The main characteristics of the audio files are:
139
+
140
+ * Encoding: Signed PCM
141
+ * Sample Rate: 16000
142
+ * Precision: 16 bit
143
+ * Channels: 1 (mono)
144
+
145
+ ### Source Data
146
+
147
+ #### Initial Data Collection and Normalization
148
+
149
+ Speakers were encouraged to respond between some pre selected open questions or they could also describe a particular painting showed to them in a computer screen. By so, the speech is completely spontaneous and one can see it in the transcription file, that captures disfluencies and mispronunciations in an orthographic way.
150
+
151
+ ### Annotations
152
+ #### Annotation process
153
+
154
+ The annotation process is at follows:
155
+
156
+ * 1. A whole session is manually segmented keeping just the portions containing good quality speech.
157
+ * 2. The resulting speech files between 2 and 10 seconds are transcribed by the author.
158
+
159
+ #### Who are the annotators?
160
+
161
+ The CHM150 Corpus was collected and transcribed by [Carlos Daniel Hernández Mena](https://huggingface.co/carlosdanielhernandezmena) in 2012 as part of the objectives of his PhD studies.
162
+
163
+ ### Personal and Sensitive Information
164
+
165
+ The dataset could contain names (not full names) revealing the identity of some speakers. However, you agree to not attempt to determine the identity of speakers in this dataset.
166
+
167
+ ## Considerations for Using the Data
168
+
169
+ ### Social Impact of Dataset
170
+
171
+ This dataset is valuable because it contains spontaneous speech and presents particular challenges, making it highly recommended for testing purposes.
172
+
173
+ ### Discussion of Biases
174
+
175
+ The dataset is gender balanced. It is comprised of 75 male speakers and 75 female speakers and the vocabulary is limited to the description of 5 different images.
176
+
177
+ ### Other Known Limitations
178
+
179
+ "CHM150 CORPUS" by Carlos Daniel Hernández Mena and Abel Herrera is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)](https://creativecommons.org/licenses/by-sa/4.0/) License 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.
180
+
181
+ ### Dataset Curators
182
+
183
+ The dataset was collected and curated by [Carlos Daniel Hernández Mena](https://huggingface.co/carlosdanielhernandezmena) in 2012 as part of the objectives of his PhD studies. The corpus was published in 2016 at the Linguistic Data Consortium (LDC).
184
+
185
+ ### Licensing Information
186
+ [CC-BY-SA-4.0](https://creativecommons.org/licenses/by-sa/4.0/)
187
+
188
+ ### Citation Information
189
+ ```
190
+ @misc{carlosmena2016chm150,
191
+ title={CHM150 CORPUS: Audio and Transcripts of Mexican Spanish Spontaneous Speech.},
192
+ ldc_catalog_no={LDC2016S04},
193
+ DOI={https://doi.org/10.35111/ygn0-wm25},
194
+ author={Hernandez Mena, Carlos Daniel and Herrera, Abel},
195
+ journal={Linguistic Data Consortium, Philadelphia},
196
+ year={2016},
197
+ url={https://catalog.ldc.upenn.edu/LDC2016S04},
198
+ }
199
+ ```
200
+ ### Contributions
201
+
202
+ 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).