Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -89,10 +89,6 @@ dataset_info:
|
|
| 89 |
dtype: string
|
| 90 |
- name: gender
|
| 91 |
dtype: string
|
| 92 |
-
- name: creator
|
| 93 |
-
dtype: string
|
| 94 |
-
- name: file_name
|
| 95 |
-
dtype: string
|
| 96 |
- name: audio
|
| 97 |
dtype: audio
|
| 98 |
---
|
|
@@ -230,25 +226,21 @@ train = tts_data['train']
|
|
| 230 |
```python
|
| 231 |
{
|
| 232 |
'id': 'swa_0',
|
| 233 |
-
'creator': 'media_trust',
|
| 234 |
'speaker_id': '...',
|
| 235 |
'audio': {
|
| 236 |
'array': [...],
|
| 237 |
'sample_rate': 16_000
|
| 238 |
},
|
| 239 |
'transcription': '...',
|
| 240 |
-
'file_name': 'audio_file.wav',
|
| 241 |
'locale': 'swa',
|
| 242 |
'gender': 'Female',
|
| 243 |
}
|
| 244 |
```
|
| 245 |
|
| 246 |
* **id**: Unique identifier.
|
| 247 |
-
* **creator**: Institution that provided the data.
|
| 248 |
* **speaker_id**: Unique identifier for the speaker.
|
| 249 |
* **audio**: Audio data.
|
| 250 |
* **transcription**: Transcription.
|
| 251 |
-
* **file_name**: Original filename.
|
| 252 |
* **locale**: ISO 639-2 language code.
|
| 253 |
* **gender**: Speaker gender.
|
| 254 |
|
|
|
|
| 89 |
dtype: string
|
| 90 |
- name: gender
|
| 91 |
dtype: string
|
|
|
|
|
|
|
|
|
|
|
|
|
| 92 |
- name: audio
|
| 93 |
dtype: audio
|
| 94 |
---
|
|
|
|
| 226 |
```python
|
| 227 |
{
|
| 228 |
'id': 'swa_0',
|
|
|
|
| 229 |
'speaker_id': '...',
|
| 230 |
'audio': {
|
| 231 |
'array': [...],
|
| 232 |
'sample_rate': 16_000
|
| 233 |
},
|
| 234 |
'transcription': '...',
|
|
|
|
| 235 |
'locale': 'swa',
|
| 236 |
'gender': 'Female',
|
| 237 |
}
|
| 238 |
```
|
| 239 |
|
| 240 |
* **id**: Unique identifier.
|
|
|
|
| 241 |
* **speaker_id**: Unique identifier for the speaker.
|
| 242 |
* **audio**: Audio data.
|
| 243 |
* **transcription**: Transcription.
|
|
|
|
| 244 |
* **locale**: ISO 639-2 language code.
|
| 245 |
* **gender**: Speaker gender.
|
| 246 |
|