Datasets:

Modalities:
Audio
Text
Formats:
parquet
Languages:
Catalan
DOI:
Libraries:
Datasets
Dask
License:
martillopartbsc commited on
Commit
9cbfd24
·
verified ·
1 Parent(s): a2a7676

Copy of Festcat

Browse files
Files changed (1) hide show
  1. README.md +234 -3
README.md CHANGED
@@ -1,3 +1,234 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - no-annotation
4
+ language_creators:
5
+ - crowdsourced
6
+ language:
7
+ - ca
8
+ license:
9
+ - cc-by-sa-4.0
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - 10K<n<100K
14
+ source_datasets: openslr
15
+ task_categories:
16
+ - text-to-speech
17
+ task_ids: []
18
+ pretty_name: openslr-slr69-ca-reviewed
19
+ configs:
20
+ - config_name: default
21
+ data_files:
22
+ - split: train
23
+ path: data/train-*
24
+ dataset_info:
25
+ features:
26
+ - name: audio
27
+ dtype: audio
28
+ - name: transcription
29
+ dtype: string
30
+ - name: speaker_id
31
+ dtype: string
32
+ splits:
33
+ - name: train
34
+ num_bytes: 3639831130.625
35
+ num_examples: 12435
36
+ download_size: 3331720350
37
+ dataset_size: 3639831130.625
38
+ ---
39
+ # Dataset Card for festcat_trimmed_denoised
40
+
41
+ This is a post-processed version of the Catalan Festcat speech dataset.
42
+
43
+ The original data can be found [here](http://festcat.talp.cat/ca/download-legacy.php).
44
+
45
+ Same license is maintained: [Creative Commons Attribution-ShareAlike 3.0 Spain License](http://creativecommons.org/licenses/by-sa/3.0/es/).
46
+
47
+ ## Dataset Details
48
+
49
+ ### Dataset Description
50
+
51
+ We processed the data of the Catalan Festcat with the following recipe:
52
+
53
+ - **Trimming:** Long silences from the start and the end of clips have been removed.
54
+ - [py-webrtcvad](https://pypi.org/project/webrtcvad/) -> Python interface to the Voice Activity Detector (VAD) developed by Google for the WebRTC.
55
+ - **Resampling:** From 48000 Hz to 22050 Hz, which is the most common sampling rate for training TTS models
56
+ - Resampler from [CoquiTTS](https://github.com/coqui-ai/TTS/tree/dev) framework
57
+ - **Denoising:** Although base quality of the audios is high, we could remove some background noise and small artifcats thanks to the CleanUNet denoiser developed by NVIDIA.
58
+ - [CleanUNet](https://github.com/NVIDIA/CleanUNet) - [arXiv](https://arxiv.org/abs/2202.07790)
59
+
60
+ We kept the same number of samples, filenames, also the original anonymized speaker IDs and transcriptions.
61
+ Our dataset version, after trimming, accumulates a total of 22.91h (divided by speaker IDs) as follows:
62
+
63
+ - bet (female): 0.97h
64
+ - mar (female): 0.96h
65
+ - pol (male): 0.97h
66
+ - eli (female): 0.99
67
+ - ona (female): 6.86h
68
+ - teo (male): 0.80h
69
+ - eva (female): 1.11h
70
+ - pau (male): 7.32h
71
+ - uri (male): 1.04h
72
+ - jan (male): 0.98h
73
+ - pep (male): 0.91h
74
+
75
+
76
+ ## Uses
77
+
78
+ The purpose of this dataset is mainly for training text-to-speech and automatic speech recognition models in Catalan.
79
+
80
+ ### Languages
81
+
82
+ The dataset is in Catalan (`ca-ES`).
83
+
84
+
85
+ ## Dataset Structure
86
+
87
+ <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
88
+
89
+ The dataset consists of a single split, providing audios and transcriptions:
90
+ ```
91
+ DatasetDict({
92
+ train: Dataset({
93
+ features: ['audio', 'transcription'],
94
+ num_rows: 12435
95
+ })
96
+ })
97
+ ```
98
+ Each data point is structured as:
99
+ ```
100
+ >> data['train'][0]['audio']
101
+
102
+ {'path': 'upc_ca_eli_204478.wav', 'array': array([ 0.00000000e+00, 0.00000000e+00, -3.05175781e-05, ...,
103
+ 0.00000000e+00, 0.00000000e+00, -3.05175781e-05]), 'sampling_rate': 22050}
104
+
105
+ >> data['train'][0]['transcription']
106
+
107
+ "Què potser el seu fill tenia l'endemà el matí lliure? Si era el cas, el podia convidar a jugar una partideta de golf."
108
+ ```
109
+
110
+ ### Dataset Splits
111
+
112
+ - <u>```audio (dict)```</u>: A dictionary containing the path to the downloaded audio file, the decoded audio array, and the sampling rate. Note that when accessing the audio column: dataset[0]["audio"] the audio file is automatically decoded and resampled to dataset.features["audio"].sampling_rate. Decoding and resampling of a large number of audio files might take a significant amount of time. Thus, it is important to first query the sample index before the "audio" column, i.e. dataset[0]["audio"] should always be preferred over dataset["audio"][0].
113
+
114
+ * path (str): The path to the audio file.
115
+ * array (array): Decoded audio array.
116
+ * sampling_rate (int): Audio sampling rate.
117
+
118
+
119
+ - <u>```transcription (str)```</u>: The sentence the user was prompted to speak.
120
+
121
+
122
+ ## Dataset Creation
123
+
124
+ ### Source Data
125
+
126
+ *FestCat: Speech Synthesis in Catalan using Festival*
127
+
128
+ The goal of this dataset is to provide a Catalan Speech Corpora. This corpora
129
+ is needed to produce quality synthetic voices in Catalan language. The main propouse of this
130
+ voices will be to be used in future voice synthesis applications.
131
+ This project has been developed by the Universitat Politècnica de Catalunya (UPC) within
132
+ the Speech Technology Department (TSC), in the TALP Research Center. This project is included
133
+ in the TALP’s FestCat project, which principal objective is to produce an open and high quality
134
+ voice synthesizer for Catalan.
135
+
136
+ The data set has been manually quality checked, but there might still be errors.
137
+
138
+ Please report any issues in the following issue tracker on GitHub. https://github.com/FestCat/festival-ca/issues
139
+
140
+ The original dataset is distributed under Creative Commons Attribution-ShareAlike 4.0 International Public License.
141
+ See [LICENSE](https://github.com/FestCat/festival-ca/blob/upstream/LICENSE-gpl-2.0.txt) and [LICENSE](https://github.com/FestCat/festival-ca/blob/upstream/LICENSE-lgpl-2.1.txt) files as well as
142
+ [https://github.com/google/language-resources#license](https://github.com/FestCat/festival-ca) for license information under License.
143
+
144
+ #### Data Collection and Processing
145
+
146
+ <!-- This section describes the data collection and processing process such as data selection criteria, filtering and normalization methods, tools and libraries used, etc. -->
147
+ This is a post-processed version of the Catalan [FestCat](http://festcat.talp.cat/download.php) dataset.
148
+ For more inormation about the original data collection and processing refer to [this website](http://festcat.talp.cat/).
149
+
150
+
151
+ #### Who are the source data producers?
152
+
153
+ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
154
+
155
+ Upstream-Name: FestCat
156
+
157
+ Upstream-Contact: Sergio Oller <[email protected]>, Antonio Bonafonte <[email protected]>
158
+
159
+ Source: http://festcat.talp.cat
160
+
161
+ Copyright: 2007-2012, Antonio Bonafonte
162
+ 2007-2012, Universitat Politècnica de Catalunya
163
+ 2007-2012, Sergio Oller <[email protected]>
164
+ 2023, Language Technologies Unit (LangTech) at Barcelona Supercomputing Center
165
+
166
+ License: LGPL-2.1
167
+
168
+ ### Annotations [optional]
169
+
170
+ <!-- If the dataset contains annotations which are not part of the initial data collection, use this section to describe them. -->
171
+ (N/A)
172
+
173
+ #### Personal and Sensitive Information
174
+
175
+ <!-- State whether the dataset contains data that might be considered personal, sensitive, or private (e.g., data that reveals addresses, uniquely identifiable names or aliases, racial or ethnic origins, sexual orientations, religious beliefs, political opinions, financial or health data, etc.). If efforts were made to anonymize the data, describe the anonymization process. -->
176
+ The dataset consists of people who have donated their voice online. You agree to not attempt to determine the identity of speakers in this dataset.
177
+
178
+ ## Bias, Risks, and Limitations
179
+
180
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
181
+
182
+
183
+ ### Recommendations
184
+
185
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
186
+
187
+ This dataset is a post-processed version of another previously created dataset. Please, refer to its documentation to know about any possible risks, biases and limitations.
188
+
189
+ ## Citation
190
+
191
+ These are the relevant publications related to the creation and development of the festcat dataset:
192
+
193
+ ```
194
+ @inproceedings{bonafonte2008corpus,
195
+ title={Corpus and Voices for Catalan Speech Synthesis.},
196
+ author={Bonafonte, Antonio and Adell, Jordi and Esquerra, Ignasi and Gallego, Silvia and Moreno, Asunci{\'o}n and P{\'e}rez, Javier},
197
+ booktitle={LREC},
198
+ year={2008}
199
+ }
200
+ ```
201
+
202
+ ```
203
+ @article{bonafonte2009recent,
204
+ title={Recent work on the FESTCAT database for speech synthesis},
205
+ author={Bonafonte, Antonio and Aguilar, Lourdes and Esquerra, Ignasi and Oller, Sergio and Moreno, Asunci{\'o}n},
206
+ journal={Proc. SLTECH},
207
+ pages={131--132},
208
+ year={2009}
209
+ }
210
+ ```
211
+
212
+ ```
213
+ @article{gallego2010corpus,
214
+ title={Corpus ling{\"u}{\'\i}stic pel desenvolupament d'una veu sint{\`e}tica en catal{\`a} per a Festival},
215
+ author={Gallego Gonz{\`a}lez, Silvia},
216
+ year={2010},
217
+ publisher={Universitat Polit{\`e}cnica de Catalunya}
218
+ }
219
+ ```
220
+
221
+ ```
222
+ @phdthesis{moyano2007desenvolupament,
223
+ title={Desenvolupament d'una veu en catal{\`a} per a Festival},
224
+ author={Moyano, Francesc Jarque},
225
+ year={2007}
226
+ }
227
+ ```
228
+ **APA:**
229
+
230
+ ## Funding
231
+ This work has been promoted and financed by the Generalitat de Catalunya through the [Aina project] (https://projecteaina.cat/).
232
+
233
+ ## Dataset Card Contact
234