Dataset Viewer
The dataset viewer is not available for this subset.
Cannot get the split names for the config 'default' of the dataset.
Exception:    SplitsNotFoundError
Message:      The split names could not be parsed from the dataset config.
Traceback:    Traceback (most recent call last):
                File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
                  for split_generator in builder._split_generators(
                                         ^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/folder_based_builder/folder_based_builder.py", line 192, in _split_generators
                  raise ValueError(f"Found metadata files with different extensions: {list(metadata_ext)}")
              ValueError: Found metadata files with different extensions: ['.jsonl', '.csv']
              
              The above exception was the direct cause of the following exception:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 65, in compute_split_names_from_streaming_response
                  for split in get_dataset_split_names(
                               ^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
                  info = get_dataset_config_info(
                         ^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
                  raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
              datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.

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.

Suda Hausa TTS Dataset

High-quality Hausa speech dataset prepared for fine-tuning XTTS-v2 as part of the Suda project — an open-source Hausa voice AI.

Dataset Details

Property Value
Language Hausa (ha)
Clips 4,960
Duration ~10 hours
Sample rate 22,050 Hz mono WAV
Format LJSpeech (metadata.csv + wavs/)
Speaker Single speaker (male, Nigerian Hausa)
Source BibleTTS Hausa
License CC-BY-SA 4.0

Source

Derived from BibleTTS Hausa by Meyer et al. (2022):

  • Original: 40,603 verses, 86.6 hours, studio-quality 48kHz FLAC, single speaker
  • This subset: 4,960 clips (1–30s), resampled from 48kHz → 22,050 Hz mono WAV

Structure

suda-dataset/
├── metadata.csv      # pipe-delimited: wavs/file.wav|transcript
└── wavs/
    ├── suda_0000000.wav
    ├── suda_0000001.wav
    └── ...

metadata.csv format (LJSpeech):

wavs/suda_0000000.wav|Zan miƙa hannuna gāba da Yahuda da kuma dukan mazaunan Urushalima.
wavs/suda_0000001.wav|Aka yi shela a duk fāɗin Yahuda da Urushalima.

Usage

Load metadata

import pandas as pd

df = pd.read_csv(
    "hf://datasets/Alkamal01/suda-hausa-tts/metadata.csv",
    sep="|",
    header=None,
    names=["path", "transcript"],
)
print(df.head())

Fine-tune XTTS-v2

from TTS.tts.configs.xtts_config import XttsConfig
from TTS.tts.datasets import load_tts_samples

config = XttsConfig()
config.datasets = [{
    "formatter": "ljspeech",
    "dataset_name": "suda_hausa",
    "path": "/path/to/suda-dataset",
    "meta_file_train": "metadata.csv",
    "language": "ha",
}]

See full training script: train_xtts_hausa.py

Processing

Dataset was prepared using open-source scripts in the OribAI-all repo:

  1. Streamed BibleTTS Hausa parquet shards from HuggingFace
  2. Filtered clips to 1–30 seconds
  3. Resampled 48kHz FLAC → 22,050 Hz mono WAV (scipy.signal.resample_poly)
  4. Wrote LJSpeech-format metadata.csv

Citation

If you use this dataset, cite the original BibleTTS paper:

@article{meyer2022bibletts,
  title     = {BibleTTS: a large, high-fidelity, multilingual, and uniquely African speech corpus},
  author    = {Meyer, Josh and others},
  journal   = {arXiv preprint arXiv:2207.03546},
  year      = {2022}
}

Project

Part of Suda — open-source Hausa voice AI built by Keuro Lab.

Downloads last month
196

Paper for Alkamal01/suda-hausa-tts