Datasets:
File size: 7,582 Bytes
2d54044 2fd4367 9e04d8d 2fd4367 b621639 2fd4367 64617f7 a967b21 9e04d8d 0848c54 9e04d8d 2d54044 3d78117 b8abcb7 3d78117 6e8c115 932ff46 c65e8ad 5fbd454 2c14dc4 5fbd454 4230445 3d78117 6e8c115 3d78117 4822eb2 e6ae895 6e8c115 e6ae895 a10db72 932ff46 3d78117 6e8c115 3d78117 4230445 3d78117 a34f80d b8abcb7 a34f80d 8e304c5 b8abcb7 a34f80d acfa2bb b8abcb7 acfa2bb b8abcb7 4230445 a34f80d a10db72 4822eb2 da2f8d3 b621639 6e8c115 da2f8d3 3d78117 4230445 3d78117 5fbd454 16d41e9 3d78117 16d41e9 5fbd454 16d41e9 3d78117 5fbd454 3d78117 6f0d192 d6af0a1 4b566da 3d78117 6953d3c 3d78117 5fbd454 3d78117 6953d3c 3d78117 67bad72 3d78117 6e8c115 3d78117 6e8c115 3d78117 b621639 4230445 b621639 3d78117 00d02f1 fd6cda7 3d78117 6e8c115 4b566da 5fbd454 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
---
annotations_creators:
- no-annotation
language_creators:
- crowdsourced
language:
- ca
license:
- cc-by-sa-4.0
multilinguality:
- monolingual
size_categories:
- 1K<n<10K
source_datasets: openslr
task_categories:
- text-to-speech
task_ids: []
pretty_name: openslr-slr69-ca-trimmed-denoised
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
dataset_info:
features:
- name: audio
dtype: audio
- name: transcription
dtype: string
splits:
- name: train
num_bytes: 811311975.4
num_examples: 4240
download_size: 721217811
dataset_size: 811311975.4
---
# Dataset Card for openslr-slr69-ca-denoised
This is a post-processed version of the Catalan subset belonging to the [Open Speech and Language Resources (OpenSLR)](https://www.openslr.org/index.html) speech dataset.
Specifically the subset [OpenSLR-69](https://www.openslr.org/69).
The original HF🤗 SLR-69 dataset is located [here](https://huggingface.co/datasets/openslr/viewer/SLR69).
Same license is maintained: [Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by/4.0/).
## Dataset Details
### Dataset Description
We processed the data of the Catalan OpenSLR with the following recipe:
- **Trimming:** Long silences from the start and the end of clips have been removed.
- [py-webrtcvad](https://pypi.org/project/webrtcvad/) -> Python interface to the Voice Activity Detector (VAD) developed by Google for the WebRTC.
- **Resampling:** From 48000 Hz to 22050 Hz, which is the most common sampling rate for training TTS models
- Resampler from [CoquiTTS](https://github.com/coqui-ai/TTS/tree/dev) framework
- **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.
- [CleanUNet](https://github.com/NVIDIA/CleanUNet) - [arXiv](https://arxiv.org/abs/2202.07790)
We kept the same number of wave files, also the original anonymized file names and transcriptions.
## Uses
The purpose of this dataset is mainly for training text-to-speech and automatic speech recognition models in Catalan.
## Dataset Structure
<!-- 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. -->
The dataset consists of a single split, providing audios and transcriptions:
```
DatasetDict({
train: Dataset({
features: ['audio', 'transcription'],
num_rows: 4240
})
})
```
Each data point is structured as:
```
>> data['train'][0]['audio']
{'path': 'caf_09901_01619988267.wav',
'array': array([-3.05175781e-05, -3.05175781e-05, -3.05175781e-05, ..., -6.10351562e-05, -6.10351562e-05, -6.10351562e-05])
'sampling_rate': 22050}
>> data['train'][0]['transcription']
"L'òpera de Sydney es troba a l'entrada de la badia"
```
### Dataset Splits
- ```audio (dict)```: 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]```.
* ```path (str)```: The path to the audio file.
* ```array (array)```: Decoded audio array.
* ```sampling_rate (int)```: Audio sampling rate.
- ```transcription (str)```: The sentence the user was prompted to speak.
## Dataset Creation
### Source Data
*SLR69: Crowdsourced high-quality Catalan multi-speaker speech data set*
This data set contains transcribed high-quality audio of Catalan sentences recorded by volunteers. The recordings
were prepared with the help of Direcció General de Política Lingüística del Departament de Cultura, Generalitat de
Catalunya. The data set consists of wave files, and a TSV file (line_index.tsv). The file line_index.tsv contains
an anonymized FileID and the transcription of audio in the file.
The data set has been manually quality checked, but there might still be errors.
Please report any issues in the following issue tracker on GitHub. https://github.com/googlei18n/language-resources/issues
The original dataset is distributed under Creative Commons Attribution-ShareAlike 4.0 International Public License.
See [LICENSE](https://www.openslr.org/resources/69/LICENSE) file and
[https://github.com/google/language-resources#license](https://github.com/google/language-resources#license) for license information.
#### Data Collection and Processing
<!-- This section describes the data collection and processing process such as data selection criteria, filtering and normalization methods, tools and libraries used, etc. -->
This is a post-processed version of the Catalan [OpenSLR-69](https://www.openslr.org/69) dataset.
For more inormation about the original data collection and processing refer to [this paper](https://aclanthology.org/2020.sltu-1.3/).
#### Who are the source data producers?
Copyright 2018, 2019 Google, Inc.
Copyright 2023 Language Technologies Unit (LangTech) at Barcelona Supercomputing Center
### Annotations
<!-- If the dataset contains annotations which are not part of the initial data collection, use this section to describe them. -->
(N/A)
#### Personal and Sensitive Information
<!-- 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. -->
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.
## Bias, Risks, and Limitations
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
### Recommendations
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
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.
## Citation
The original paper where authors detail how OpenSLR-69 was generated:
```
@inproceedings{kjartansson-etal-2020-open,
title = {{Open-Source High Quality Speech Datasets for Basque, Catalan and Galician}},
author = {Kjartansson, Oddur and Gutkin, Alexander and Butryna, Alena and Demirsahin, Isin and Rivera, Clara},
booktitle = {Proceedings of the 1st Joint Workshop on Spoken Language Technologies for Under-resourced languages (SLTU) and Collaboration and Computing for Under-Resourced Languages (CCURL)},
year = {2020},
pages = {21--27},
month = may,
address = {Marseille, France},
publisher = {European Language Resources association (ELRA)},
url = {https://www.aclweb.org/anthology/2020.sltu-1.3},
ISBN = {979-10-95546-35-1},
}
```
**APA:**
## Funding
This work has been promoted and financed by the Generalitat de Catalunya through the [Aina project](https://projecteaina.cat/).
## Dataset Card Contact
[email protected]
|