carlosdanielhernandezmena commited on
Commit
246c8a3
1 Parent(s): 729c674

Adding info to the README file

Browse files
Files changed (1) hide show
  1. README.md +209 -2
README.md CHANGED
@@ -1,6 +1,213 @@
1
  ---
2
- license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
4
 
5
 
6
- UPLOAD IN PROGRESS ...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - crowdsourced
4
+ language:
5
+ - is
6
+ language_creators:
7
+ - crowdsourced
8
+ license:
9
+ - cc-by-4.0
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: "Samrómur Milljón, Audio and Transcriptions"
13
+ size_categories:
14
+ - 1M<n<10M
15
+ source_datasets:
16
+ - original
17
+ tags:
18
+ - crowd-sourced icelandic
19
+ - samrómur
20
+ - icelandic speech
21
+ - samromur
22
+ - iceland
23
+ task_categories:
24
+ - automatic-speech-recognition
25
+ task_ids: []
26
  ---
27
 
28
 
29
+
30
+ # Dataset Card for samromur_milljon
31
+ ## Table of Contents
32
+ - [Dataset Description](#dataset-description)
33
+ - [Dataset Summary](#dataset-summary)
34
+ - [Supported Tasks](#supported-tasks-and-leaderboards)
35
+ - [Languages](#languages)
36
+ - [Dataset Structure](#dataset-structure)
37
+ - [Data Instances](#data-instances)
38
+ - [Data Fields](#data-fields)
39
+ - [Data Splits](#data-splits)
40
+ - [Dataset Creation](#dataset-creation)
41
+ - [Curation Rationale](#curation-rationale)
42
+ - [Source Data](#source-data)
43
+ - [Annotations](#annotations)
44
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
45
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
46
+ - [Social Impact of Dataset](#social-impact-of-dataset)
47
+ - [Discussion of Biases](#discussion-of-biases)
48
+ - [Other Known Limitations](#other-known-limitations)
49
+ - [Additional Information](#additional-information)
50
+ - [Dataset Curators](#dataset-curators)
51
+ - [Licensing Information](#licensing-information)
52
+ - [Citation Information](#citation-information)
53
+ - [Contributions](#contributions)
54
+
55
+ ## Dataset Description
56
+ - **Homepage:** [Samrómur Milljón](https://huggingface.co/datasets/language-and-voice-lab/samromur_milljon)
57
+ - **Repository:** [Language and Voice Laboratory](https://huggingface.co/language-and-voice-lab)
58
+ - **Point of Contact:** [Carlos Mena](mailto:carlos.mena@ciempiess.org), [Jón Guðnason](mailto:jg@ru.is)
59
+
60
+ ### Dataset Summary
61
+
62
+ Samrómur Milljón is the result of the automatic verification of the corpus [Samromur Unverified 22.07](http://hdl.handle.net/20.500.12537/265) which contains 2,159,314 (2233 hours) speech-recordings in Icelandic that are essentially unverified. Samrómur Milljón consists of 1,002,157 of speech recordings (967 hours). The transcripts accompanying these recordings were automatically verified using various ASR systems such as: [Wav2Vec2](https://huggingface.co/carlosdanielhernandezmena/wav2vec2-large-xlsr-53-icelandic-ep10-1000h), [Whisper](https://huggingface.co/language-and-voice-lab/whisper-large-icelandic-30k-steps-1000h), [Faster-Whisper](https://huggingface.co/language-and-voice-lab/whisper-large-icelandic-30k-steps-1000h-ct2) and [NeMo](https://huggingface.co/carlosdanielhernandezmena/stt_is_quartznet15x5_ft_ep56_875h). If any of the ASR systems gets a transcript that perfectly matches the reference transcription, the speech-recording is then cosidered as verified.
63
+
64
+
65
+ ### Example Usage
66
+ Samrómur Milljón is divided in 7 portions. To load a specific split pass its name as a config name:
67
+
68
+ ```python
69
+ from datasets import load_dataset
70
+ samromur_milljon = load_dataset("language-and-voice-lab/samromur_milljon")
71
+ ```
72
+ To load an specific split (for example, the split with female speakers between 18 and 49 years old) do:
73
+ ```python
74
+ from datasets import load_dataset
75
+ samromur_milljon = load_dataset("language-and-voice-lab/samromur_milljon",split="female_18to49_yrs")
76
+ ```
77
+
78
+ ### Supported Tasks
79
+ automatic-speech-recognition: The dataset can be used to train 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).
80
+
81
+ ### Languages
82
+ The audio is in Icelandic.
83
+ The reading prompts were gathered from a variety of sources, mainly from the [Icelandic Gigaword Corpus](http://clarin.is/en/resources/gigaword). The corpus includes text from novels, news, plays, and from a list of location names in Iceland. The prompts also came from the [Icelandic Web of Science](https://www.visindavefur.is/).
84
+
85
+ ## Dataset Structure
86
+
87
+ ### Data Instances
88
+ ```python
89
+ {
90
+ 'audio_id': '000664-0013663',
91
+ 'audio': {
92
+ 'path': '/home/carlos/.cache/HuggingFace/datasets/downloads/extracted/5238762551eb35654e659f0bf3f3bf30ba02b40036715337500cba84051fed4e/FEM_18to49_YRS_PART_0001/000664/000664-0013663.flac',
93
+ 'array': array([0.0000000e+00, 0.0000000e+00, 0.0000000e+00, ..., 0.0000000e+00,
94
+ 3.0517578e-05, 3.0517578e-05], dtype=float32),
95
+ 'sampling_rate': 16000
96
+ },
97
+ 'speaker_id': '000664',
98
+ 'gender': 'female',
99
+ 'age': '30-39',
100
+ 'duration': 3.7799999713897705,
101
+ 'verified_with': 'V+F',
102
+ 'normalized_text': 'mattías lækkaðu í hátalaranum'
103
+ }
104
+ ```
105
+
106
+ ### Data Fields
107
+ * `audio_id` (string) - id of audio segment
108
+ * `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).
109
+ * `speaker_id` (string) - id of speaker
110
+ * `gender` (string) - gender of speaker (male or female)
111
+ * `age` (string) - range of age of the speaker.
112
+ * `duration` (float32) - duration of the audio file in seconds.
113
+ * `verified_with` (string) - Set of ASR systems that found a perfect match between the current speech file and the reference transcription : V = wav2vec, N = NeMo, W = Whisper, F = Whisper-Faster
114
+ * `normalized_text` (string) - normalized audio segment transcription.
115
+
116
+ ### Data Splits
117
+
118
+ Due to its large size, the corpus is divided in 7 splits with the objective that it will be more manageable this way.
119
+
120
+ * Female speakers less than 18 years old (n < 18): **female_lt_18_yrs**
121
+ * Female speakers from 18 to 49 years old (18 <= n <=49): **female_18to49_yrs**
122
+ * Female speakers greater than 49 years old (n > 49): **female_gt_49_yrs**
123
+
124
+ * Male speakers less than 18 years old (n < 18): **male_lt_18_yrs**
125
+ * Male speakers from 18 to 49 years old (18 <= n <=49): **male_18to49_yrs**
126
+ * Male speakers greater than 49 years old (n > 49): **male_gt_49_yrs**
127
+
128
+ * Speakers where age, gender or both are unknown: **other**
129
+
130
+ To load an specific portion please see the above section "Example Usage".
131
+
132
+ ## Dataset Creation
133
+
134
+ ### Curation Rationale
135
+
136
+ * The collection process started in October 2019.
137
+
138
+ * The aim is to create an open-source speech corpus to enable research and development for Icelandic Language Technology.
139
+
140
+ * The corpus comprises of audio recordings and metadata files containing the text sentences read by the participants.
141
+
142
+ * At the beginning, some data was manually verified by summer students, but due to the success of the collection process, we ended up with more than 2 million of unverified speech-recordings. In 2023, it was decided to use the distict ASR systems that we already had in Icelandic to automatically verify as much data as possible. The verification process consited in transcribing the recordings using various ASR systems. If one or more of them get a transcription that perfectly matches the reference transcription, the recording is considered as verified.
143
+
144
+ * The resulting corpus of more than 1 million recordings is too big to download it all at once. In consequence, it was decided to split it in 7 portions with the hope that it will be more manageable this way.
145
+
146
+ ### Source Data
147
+
148
+ #### Initial Data Collection and Normalization
149
+
150
+ * The utterances were recorded by a smartphone or the web app.
151
+
152
+ * The data was collected using the website https://samromur.is, code of which is available at https://github.com/cadia-lvl/samromur.
153
+
154
+ * Each recording contains one read sentence from a script.
155
+
156
+ ### Annotations
157
+
158
+ #### Annotation process
159
+
160
+ Prompts were pulled from these corpora if they met the criteria of having only letters which are present in the Icelandic alphabet, and if they are listed in the [DIM: Database Icelandic Morphology](https://aclanthology.org/W19-6116.pdf).
161
+
162
+ There are also synthesised prompts consisting of a name followed by a question or a demand, in order to simulate a dialogue with a smart-device.
163
+
164
+ #### Who are the annotators?
165
+ The audio files content was automatically verified using ASR systems such as: [Wav2Vec2](https://huggingface.co/carlosdanielhernandezmena/wav2vec2-large-xlsr-53-icelandic-ep10-1000h), [Whisper](https://huggingface.co/language-and-voice-lab/whisper-large-icelandic-30k-steps-1000h), [Faster-Whisper](https://huggingface.co/language-and-voice-lab/whisper-large-icelandic-30k-steps-1000h-ct2) and [NeMo](https://huggingface.co/carlosdanielhernandezmena/stt_is_quartznet15x5_ft_ep56_875h). If any of the ASR systems gets a transcript that perfectly matches the reference transcription, the speech-recording is then cosidered as verified.
166
+
167
+ ### Personal and Sensitive Information
168
+ The dataset consists of people who have donated their voice. You agree to not attempt to determine the identity of speakers in this dataset.
169
+
170
+ ## Considerations for Using the Data
171
+
172
+ ### Social Impact of Dataset
173
+ This contribution describes a project of speech data collection, using the web application [Samrómur](samromur.is) which is built upon [Common Voice](https://commonvoice.mozilla.org/), Mozilla Foundation's web platform for open-source voice collection. The goal of the project is to build a large-scale speech corpus for Automatic Speech Recognition (ASR) for Icelandic. Samrómur is the largest open speech corpus for Icelandic collected from the public domain.
174
+
175
+ ### Discussion of Biases
176
+
177
+ * The participants are aged between 4 to 90 years old. The speech files were recorded by a smartphone or the web app.
178
+
179
+ * Participants self-reported their age group, gender, and the native language.
180
+
181
+ * The corpus contains 1,002,157 from 16,729 speakers, totalling 967 hours and 7 minutes.
182
+
183
+ * The number of recordings coming from female speakers are 714,564, totalling 697h22m.
184
+
185
+ * The number of recordings coming from male speakers are 282,499, totalling 264h28m.
186
+
187
+ * The number of recordings where the gender, the age or both is unknown are 5,094, totalling 5h16m. These recordings belong to the split called "other".
188
+
189
+ ### Other Known Limitations
190
+ "Samrómur Milljón" by the Language and Voice Laboratory (LVL) from Reykjavik University (RU) is licensed under a Creative Commons Attribution 4.0 International (CC BY 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.
191
+
192
+ ## Additional Information
193
+
194
+ ### Dataset Curators
195
+
196
+ The corpus was curated by [Carlos Daniel Hernández Mena](https://huggingface.co/carlosdanielhernandezmena) during 2023 at the [Language and Voice Laboratory](https://lvl.ru.is/) from [Reykjavik University](https://en.ru.is/).
197
+
198
+ ### Licensing Information
199
+ [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
200
+
201
+ ### Citation Information
202
+ ```
203
+ @misc{menasamromurmilljon2023,
204
+ title={Samrómur Milljón, Audio and Transcriptions},
205
+ author={Hernández Mena, Carlos Daniel and Guðnason, Jón},
206
+ publisher={Reykjavík University}
207
+ year={2023},
208
+ url={https://huggingface.co/datasets/language-and-voice-lab/samromur_milljon},
209
+ }
210
+ ```
211
+
212
+ ### Contributions
213
+ This project was funded by the Language Technology Programme for Icelandic 2019-2023. The programme, which is managed and coordinated by Almannarómur, is funded by the Icelandic Ministry of Education, Science and Culture.