Search is not available for this dataset
audio
audioduration (s)
0.42
54.6

All Bambara ASR Dataset

This dataset aims to gather all publicly available Bambara ASR datasets. It is primarily composed of the Jeli-ASR dataset (available at RobotsMali/jeli-asr), along with the Mali-Pense data curated and published by Aboubacar Ouattara (available at oza75/bambara-tts). Additionally, it includes 1 hour of audio recently collected by the RobotsMali AI4D Lab, featuring children's voices reading some of RobotsMali GAIFE books. This dataset is desihgned for automatic speech recognition (ASR) task primarily.

Important Note

Please note that this dataset is currently in development and is therefore not fixed. The structure, content, and availability of the dataset may change as improvements and updates are made.


Directory Structure

bam-asr-all/
|
β”œβ”€β”€ README.md
β”œβ”€β”€ metadata.jsonl
β”œβ”€β”€ manifests/
β”‚   β”œβ”€β”€ jeli-asr-rmai-test-manifest.json
β”‚   β”œβ”€β”€ jeli-asr-rmai-train-manifest.json
β”‚   β”œβ”€β”€ oza-bam-asr-test-manifest.json
β”‚   └── oza-bam-asr-train-manifest.json
β”‚   └── oza-mali-pense-train-manifest.json
β”‚   └── reading-tutor-train-manifest.jon
β”‚   └── train-manifest.json # jeli-asr-rmai-train-manifest.json + oza-bam-asr-train-manifest.json
β”‚   └── test-manifest.json # jeli-asr-rmai-test-manifest.json + oza-bam-asr-test-manifest.json
β”‚
β”œβ”€β”€ french-manifests/
β”‚   β”œβ”€β”€ jeli-asr-rmai-test-french-manifest.json
β”‚   β”œβ”€β”€ jeli-asr-rmai-train-french-manifest.json
β”‚   β”œβ”€β”€ oza-bam-asr-test-french-manifest.json
β”‚   └── oza-bam-asr-train-french-manifest.json
β”‚   └── oza-mali-pense-train-french-manifest.json
β”‚
β”œβ”€β”€ jeli-asr-rmai/
β”‚   β”œβ”€β”€ train/
β”‚   └── test/
β”‚
β”œβ”€β”€ bam-asr-oza/
β”‚   β”œβ”€β”€ train/
β”‚   └── test/
|
β”œβ”€β”€ oza-mali-pense/
β”‚   β”œβ”€β”€ train/
|
β”œβ”€β”€ oza-mali-pense/

manifests Directory

This directory contains the manifest files used for training speech recognition (ASR) and text-to-speech (TTS) models. Those are JSON files:

Each line in the manifest files is a JSON object with the following structure:

{
  "audio_filepath": "bam-asr-all/rt-data-collection/zctn7pFmtmR45FKym7d5.wav", 
  "duration": 10.24, 
  "text": "Ni Birituban dΙ” tun bΙ› se ka piyano fΙ”, a tun bΙ› fara SΙ› kan dΙ”nkilida la."
}
  • audio_filepath: The relative path to the corresponding audio file.
  • duration: The duration of the audio file in seconds.
  • text: The transcription of the audio in Bambara.

3. french-manifests/

This directory contains French equivalent manifest files for the dataset. The structure is similar to the manifests/ directory but with French transcriptions


Dataset Details

  • Total Duration: 37.41 hours
  • Number of Samples: 38,769
    • Training Set: 37,306 samples
    • Testing Set: 1,463 samples

Subsets:

  • Oza's Bambara-ASR: ~29 hours (clean subset).
  • Jeli-ASR-RMAI: ~3.5 hours (filtered subset).
  • oza-tts-mali-pense: ~4 hours
  • reading-tutor-data-collection: ~1 hour

Usage

The manifest files are specifically created for training Automatic Speech Recognition (ASR) models in NVIDIA NeMo framework, but they can be used with any other framework that supports manifest-based input formats or reformatted for other use cases.

To use the dataset, simply load the manifest files (train-manifest.json and test-manifest.json) in your training script. The file paths for the audio files and the corresponding transcriptions are already provided in these manifest files You can also load it directly in a HuggingFace dataset object.

Downloading the Dataset:

from datasets import load_dataset

# Clone dataset repository maintaining directory structure
!git clone https://huggingface.co/datasets/RobotsMali/jeli-asr

#  Or

# Load the dataset into Hugging Face Dataset object
dataset = load_dataset("RobotsMali/bam-asr-all")

Known Issues

While significantly improved, this dataset may still contain a few Slightly misaligned samples. It has conserved most of the issues of the original dataset such as: 

  • Inconsistent transcriptions
  • Non-standardized naming conventions.
  • Language and spelling issues

Citation

If you use this dataset in your research or project, please credit the creators of the original datasets.

Downloads last month
23