Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -26,3 +26,57 @@ configs:
|
|
| 26 |
- split: test
|
| 27 |
path: data/test-*
|
| 28 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
- split: test
|
| 27 |
path: data/test-*
|
| 28 |
---
|
| 29 |
+
|
| 30 |
+
## Dataset Description
|
| 31 |
+
|
| 32 |
+
### Dataset Summary
|
| 33 |
+
|
| 34 |
+
Crowdsourced high-quality Colombian Spanish speech dataset. This dataset, originally collected by Google, provides 4,903 high-quality utterances, representing 7.58 hours of audio specifically from Colombian Spanish speakers.
|
| 35 |
+
|
| 36 |
+
### Languages
|
| 37 |
+
|
| 38 |
+
Spanish
|
| 39 |
+
|
| 40 |
+
### Sample Instance
|
| 41 |
+
|
| 42 |
+
```py
|
| 43 |
+
{'audio': {'path': 'com_07508_01944220782.wav',
|
| 44 |
+
'array': array([0.00228882, 0.00231934, 0.00198364, ..., 0.00097656, 0.00088501,
|
| 45 |
+
0.00097656]),
|
| 46 |
+
'sampling_rate': 48000},
|
| 47 |
+
'text': 'Quiero irme de vacaciones a Hawái pero tengo ésta duda de si el volcán está activo',
|
| 48 |
+
'speaker_id': 7508,
|
| 49 |
+
'phonemes_ipa': ['k ʝ e ɾ o',
|
| 50 |
+
'i ɾ m e',
|
| 51 |
+
'd e',
|
| 52 |
+
'b a k a θ ʝ o n e s',
|
| 53 |
+
'a',
|
| 54 |
+
'a ai',
|
| 55 |
+
'p e ɾ o',
|
| 56 |
+
't e n g o',
|
| 57 |
+
'e s t a',
|
| 58 |
+
'd u d a',
|
| 59 |
+
'd e',
|
| 60 |
+
's i',
|
| 61 |
+
'e l',
|
| 62 |
+
'b o l k a n',
|
| 63 |
+
'e s t a',
|
| 64 |
+
'a k t i b o']}
|
| 65 |
+
```
|
| 66 |
+
|
| 67 |
+
The following describe the information on each column in the dataset:
|
| 68 |
+
|
| 69 |
+
- `audio`: Contains the audio data including the file path, waveform array, and sampling rate
|
| 70 |
+
- `text`: Text transcription of the spoken content in Spanish
|
| 71 |
+
- `speaker_id`: Unique numeric identifier for the speaker
|
| 72 |
+
- `phonemes_ipa`: Phonetic transcription using International Phonetic Alphabet (IPA) symbols, segmented by words
|
| 73 |
+
|
| 74 |
+
### Data Splits
|
| 75 |
+
|
| 76 |
+
| Split | Number of examples |
|
| 77 |
+
| :---- | -----------------: |
|
| 78 |
+
| Train | 3922 |
|
| 79 |
+
| Test | 981 |
|
| 80 |
+
|
| 81 |
+
**Total**: 4,903 utterances (~7.58 hours of audio)
|
| 82 |
+
|