my_dataset / README.md
007ask's picture
Add files using upload-large-folder tool
aba19c4 verified
|
Raw
History Blame Contribute Delete
621 Bytes
---
language:
- ta
task_categories:
- automatic-speech-recognition
tags:
- tamil
- audio
- speech
---
# Tamil Audio Dataset
## Description
Large Tamil speech/audio transcription dataset generated from `T_VOICE_OVR`.
## Structure
- audio/ -> one audio clip per transcript segment
- metadata.jsonl -> training rows
## Usage
```python
from datasets import Audio, load_dataset
ds = load_dataset("007ask/my_dataset", split="train", streaming=True)
ds = ds.cast_column("audio", Audio(sampling_rate=16000))
first = next(iter(ds))
print(first["audio"]["array"].shape, first["text"])
```