Datasets:
File size: 1,135 Bytes
929ddf9 | 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 | ---
task_categories:
- translation
language:
- my
size_categories:
- n<1K
---
# π’ My Audio Dataset
This dataset contains audio recordings and their corresponding transcriptions. It is designed for **Automatic Speech Recognition (ASR) tasks**.
## π Dataset Summary
- **Total Audio Files:** 1,000 (example)
- **Languages:** English, French (modify as needed)
- **Format:** `.wav` audio files with `.txt` metadata
- **License:** CC-BY-4.0
## π Dataset Structure
- `audio/`: Contains `.wav` files.
- `metadata.csv`: A CSV file mapping each audio file to its transcription.
## π Example Data
| Audio | Transcription |
|-------|--------------|
| <audio controls src="https://huggingface.co/datasets/your_username/audio_dataset/resolve/main/audio/sample1.wav"></audio> | **Hello, how are you?** |
| <audio controls src="https://huggingface.co/datasets/your_username/audio_dataset/resolve/main/audio/sample2.wav"></audio> | **This is a test sentence.** |
## π How to Use
You can load this dataset using `datasets`:
```python
from datasets import load_dataset
dataset = load_dataset("nangkham/openslr")
print(dataset) |