Datasets:
The dataset viewer is not available for this subset.
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.14/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
for split_generator in builder._split_generators(
~~~~~~~~~~~~~~~~~~~~~~~~~^
StreamingDownloadManager(base_path=builder.base_path, download_config=download_config)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/folder_based_builder/folder_based_builder.py", line 198, in _split_generators
for pa_metadata_table in self._read_metadata(downloaded_metadata_file, metadata_ext=metadata_ext):
~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/folder_based_builder/folder_based_builder.py", line 306, in _read_metadata
for df in csv_file_reader:
^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/readers.py", line 1843, in __next__
return self.get_chunk()
~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/readers.py", line 1985, in get_chunk
return self.read(nrows=size)
~~~~~~~~~^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/readers.py", line 1923, in read
) = self._engine.read( # type: ignore[attr-defined]
~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
nrows
^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/c_parser_wrapper.py", line 234, in read
chunks = self._reader.read_low_memory(nrows)
File "pandas/_libs/parsers.pyx", line 850, in pandas._libs.parsers.TextReader.read_low_memory
File "pandas/_libs/parsers.pyx", line 905, in pandas._libs.parsers.TextReader._read_rows
File "pandas/_libs/parsers.pyx", line 874, in pandas._libs.parsers.TextReader._tokenize_rows
File "pandas/_libs/parsers.pyx", line 891, in pandas._libs.parsers.TextReader._check_tokenize_status
File "pandas/_libs/parsers.pyx", line 2061, in pandas._libs.parsers.raise_parser_error
pandas.errors.ParserError: Error tokenizing data. C error: Expected 1 fields in line 8, saw 2
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 71, in compute_split_names_from_streaming_response
for split in get_dataset_split_names(
~~~~~~~~~~~~~~~~~~~~~~~^
path=dataset,
^^^^^^^^^^^^^
config_name=config,
^^^^^^^^^^^^^^^^^^^
token=hf_token,
^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
info = get_dataset_config_info(
path,
...<6 lines>...
**config_kwargs,
)
File "/usr/local/lib/python3.14/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.
Kabyle LJSpeech TTS Dataset (22kHz)
A high-quality, LJSpeech-formatted dataset designed for training Text-to-Speech (TTS) models in Kabyle (Taqbaylit) kab, an Amazigh language spoken primarily in northern Algeria and among the kabyle diaspora worldwide.
This dataset contains 59,462 utterances (approximately 40 hours of audio) resampled to 22,050 Hz, 16-bit mono WAV format, making it immediately ready for training VITS-based models (e.g., phoonnx, Piper TTS, or sherpa-onnx).
Dataset Summary
- Language: Kabyle (
kab) - Total Utterances: 59,462
- Estimated Duration: ~38–45 hours
- Audio Format: 22050 Hz, 16-bit PCM, Mono WAV
- Text Format: Raw Kabyle Latin script (Berber Latin alphabet), ready for Grapheme-to-Phoneme (G2P) conversion.
- Sources: Aggregated from Mozilla Common Voice and Tatoeba.
Dataset Structure
(max 10,000 files per directory), the audio files are organized into 6 subdirectories (wavs_00 through wavs_05).
Data Instances
The dataset follows the standard LJSpeech format. The metadata.csv file contains pipe-separated values with no header:
wavs_00/kab_00000.wav|Text in Kabyle Latin script here.
wavs_00/kab_00001.wav|Another sentence in Taqbaylit.
...
wavs_05/kab_59461.wav|The final utterance.
Data Fields
filename(string): Relative path to the WAV file (e.g.,wavs_00/kab_00000.wav).text(string): The raw, normalized Kabyle text transcript corresponding to the audio.
Intended Use & Phonemization
This dataset is explicitly prepared for training neural TTS models.
Recommended Phonemizer
For the best results, it is highly recommended to use orthography2ipa (often exposed as the "o2i" backend in tools like phoonnx). This data-driven G2P engine handles Kabyle-specific context-aware rules (e.g., occlusivization, specific consonant mappings) far more accurately than generic phonemizers like eSpeak or Epitran.
Example Usage with phoonnx
# Configuration for phoonnx train_vits.ipynb
LANG = "kab"
PHONEMIZER = "o2i" # Native orthography2ipa backend
ALPHABET = "ipa"
HF_DATASET = "boffire/kabyle-ljspeech-22khz"
SAMPLE_RATE = 22050
Dataset Creation
Curation Rationale
Kabyle is a low-resource language in the NLP and TTS domains. This dataset was curated to provide a clean, standardized, and sufficiently large corpus to train robust, natural-sounding TTS models from scratch, without relying on cross-lingual transfer from unrelated languages.
Source Data
- Mozilla Common Voice: Crowd-sourced, validated Kabyle voice clips.
- Tatoeba: High-quality, community-translated Kabyle sentences paired with synthetic or cleaned audio.
Annotation Process
The text transcripts are the original, validated strings from the source datasets. No manual phonetic annotation was applied; G2P is intended to be handled dynamically during the TTS preprocessing pipeline.
Considerations for Using the Data
Social Impact
Training TTS models for Kabyle helps preserve and promote the language in the digital age, improving accessibility for native speakers through screen readers, voice assistants, and educational tools.
Limitations and Bias
- Accent Diversity: As with many crowd-sourced datasets, the audio may contain a mix of regional Kabyle accents (e.g., Tizi Ouzou, Béjaïa, Bouira).
- Audio Quality: Some utterances from Common Voice may contain minor background noise or varying microphone qualities, though validation steps were taken by the original platforms to minimize this.
- Text Normalization: The text is provided in raw form. Numbers, dates, or URLs should be expanded into spoken Kabyle words during your preprocessing pipeline if your chosen G2P tool does not handle them automatically.
Additional Information
Dataset Curators
- Prepared and formatted by:
boffire
Licensing Information
- The audio and text are derived from Mozilla Common Voice (typically licensed under CC0 1.0) and Tatoeba (typically CC0 1.0 or CC-BY 4.0). Users should verify the specific licenses of the underlying source sentences if using this dataset for commercial purposes.
Citation
If you use this dataset in your research or project, please consider citing the original sources:
@misc{commonvoice,
author = {Ardila, R. and Branson, M. and Davis, K. and Henretty, M. and Kohler, M. and Meyer, J. and Morais, R. and Saunders, L. and Tyers, F. M. and Weber, G.},
title = {Common Voice: A Massively-Multilingual Speech Corpus},
year = {2020},
publisher = {arXiv},
url = {https://arxiv.org/abs/1912.06670}
}
- Downloads last month
- 25,319