You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

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

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"])
Downloads last month
4,988