BibleTTS: a large, high-fidelity, multilingual, and uniquely African speech corpus
Paper • 2207.03546 • Published • 2
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.
High-quality Hausa speech dataset prepared for fine-tuning XTTS-v2 as part of the Suda project — an open-source Hausa voice AI.
| 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 |
Derived from BibleTTS Hausa by Meyer et al. (2022):
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.
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())
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
Dataset was prepared using open-source scripts in the OribAI-all repo:
scipy.signal.resample_poly)metadata.csvIf 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}
}
Part of Suda — open-source Hausa voice AI built by Keuro Lab.