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.

Synthetic English-Luganda Parallel Speech (149,486 pairs)

Synthetic parallel audio for English-Luganda speech-to-speech translation research, generated with Orpheus 3B TTS and stored as parquet shards with embedded audio.

Schema

field type notes
id string pair id, e.g. pair_000123
audio_eng Audio(22 050 Hz mono) English clip
audio_lug Audio(22 050 Hz mono) Luganda clip
text_eng string English transcript
text_lug string Luganda transcript
speaker_id string shared speaker identity across both clips
speaker_eng_voice string Orpheus voice tag used for English
speaker_lug_voice string Orpheus voice tag used for Luganda
domain string text domain
duration_eng float32 seconds
duration_lug float32 seconds
split string train

Usage

from datasets import load_dataset

ds = load_dataset("yigagilbert/lug-eng-synthetic-parallel-v1", split="train")
sample = ds[0]
sample["audio_eng"]["array"]   # waveform as numpy
sample["audio_lug"]["array"]
Downloads last month
13