Dataset Viewer
Auto-converted to Parquet Duplicate
Search is not available for this dataset
The dataset viewer is not available for this split.
Job manager crashed while running this job (missing heartbeats).
Error code:   JobManagerCrashedError

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

Hausa TTS Dataset

Multi-speaker Hausa text-to-speech dataset.

Usage

from datasets import load_dataset, Audio

# Load the dataset
ds = load_dataset("parquet", data_files="hausa_tts_embedded.parquet", split="train")

# Cast audio column to Audio type with 24kHz sampling rate
ds = ds.cast_column("audio", Audio(sampling_rate=24000))

# Use with Unsloth TTS
from transformers import AutoProcessor
processor = AutoProcessor.from_pretrained("unsloth/csm-1b")

# Your training code here...

Dataset Structure

  • text: The Hausa text to be spoken
  • source: Speaker identifier (multi-speaker)
  • audio: Audio recording (embedded as bytes)
Downloads last month
30