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.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 210, in _split_generators
                  metadata_features = features_per_metadata_file[0][1]
                                      ~~~~~~~~~~~~~~~~~~~~~~~~~~^^^
              IndexError: list index out of range
              
              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.

AfricanVoices Hausa — Train Split

Hausa speech dataset from AfricanVoices.io, uploaded in Hugging Face audiofolder format.

Usage

from datasets import load_dataset

ds = load_dataset("suleiman2003/afri-temp-data2", split="train")
print(ds[0])
# {{'audio': Audio(...), 'transcript': '...', 'gender': '...', ...}}

Dataset Structure

Each sample contains:

Field Description
audio FLAC audio file (auto-loaded by HF)
transcript Hausa text transcription
speaker_id Speaker identifier
gender Speaker gender (m/f)
age_group Speaker age bracket
education Education level
duration Audio duration (seconds)
language Language code
snr Signal-to-noise ratio
domain Topic domain (ev/ag/he/bu)

Source

  • Platform: AfricanVoices.io
  • Organization: Data Science Nigeria
  • Supported by: Gates Foundation
Downloads last month
10