|
--- |
|
language: |
|
- uk |
|
license: cc-by-4.0 |
|
--- |
|
|
|
# Voice of America transcriptions |
|
|
|
## Community |
|
|
|
- **Discord**: https://discord.gg/yVAjkBgmt4 |
|
- Speech Recognition: https://t.me/speech_recognition_uk |
|
- Speech Synthesis: https://t.me/speech_synthesis_uk |
|
|
|
## Overview |
|
|
|
This dataset has transcriptions with other metadata for the VOA Ukrainian dataset (~398h). |
|
|
|
## Usage |
|
|
|
```python |
|
from datasets import load_dataset |
|
|
|
ds = load_dataset('Yehor/voa-uk-transcriptions', split='train') |
|
|
|
for row in ds: |
|
print(row['text']) |
|
``` |
|
|