Datasets:
File size: 2,856 Bytes
3cc9ddc 0617eab 3cc9ddc 0617eab 3cc9ddc e5b57d9 3cc9ddc 320ab04 e5b57d9 320ab04 be2ea1c e5b57d9 14c6a8b 320ab04 e5b57d9 320ab04 e5b57d9 320ab04 3a8d46f 320ab04 14c6a8b 320ab04 beff3b6 320ab04 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
---
dataset_info:
features:
- name: audio
dtype:
audio:
sampling_rate: 16000
- name: sentence
dtype: string
- name: source
dtype: string
splits:
- name: train
num_bytes: 5387295926.242
num_examples: 28807
- name: test
num_bytes: 1290121556.452
num_examples: 6268
download_size: 6474496191
dataset_size: 6677417482.693999
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: test
path: data/test-*
license: apache-2.0
task_categories:
- automatic-speech-recognition
language:
- wo
size_categories:
- 10K<n<100K
---
# Wolof Audio Dataset
The **Wolof Audio Dataset** is a collection of audio recordings and their corresponding transcriptions in Wolof. This dataset is designed to support the development of Automatic Speech Recognition (ASR) models for the Wolof language. It was created by combining three existing datasets:
- **ALFFA**: Available at [serge-wilson/wolof_speech_transcription](https://huggingface.co/datasets/serge-wilson/wolof_speech_transcription)
- **FLEURS**: Available at [vonewman/fleurs-wolof-dataset](https://huggingface.co/datasets/vonewman/fleurs-wolof-dataset)
- **Urban Bus Wolof Speech Dataset**: Available at [vonewman/urban-bus-wolof](https://huggingface.co/datasets/vonewman/urban-bus-wolof)
- **Kallama Dataset**: Available at [Moustapha91/wolof_kalama_TTS](https://huggingface.co/datasets/Moustapha91/wolof_kalama_TTS)
## Dataset Description
- **Language**: Wolof (`wo`)
- **Domain**: General speech and urban transportation
- **Data Type**: Audio recordings and transcriptions
- **Audio Format**: Varies (e.g., WAV, MP3)
- **Sampling Rate**: 16 kHz
- **Total Examples**: 24,346
- **Training Set**: 20224 examples
- **Test Set**: 4122 examples
### Features
- `audio`: An audio file containing speech in Wolof.
- **Format**: Varies (e.g., WAV, MP3)
- **Sampling Rate**: 16 kHz
- `sentence`: The textual transcription of the audio in Wolof.
- `source`: The origin of the example, either `'alffa'`, `'fleurs'`, `'urban_bus'`, or `'kallama'`
### Dataset Structure
#### Splits
The dataset is divided into two splits:
| Split | Number of Examples |
|--------|---------------------|
| Train | 28,807 |
| Test | 6,268 |
## Usage Example
Here's how to load and use this dataset with the 🤗 Datasets library:
```python
from datasets import load_dataset
# Load the dataset
dataset = load_dataset("vonewman/wolof-audio-data")
# Access an example from the 'train' split
print(dataset['train'][0])
# Expected output:
# {
# 'audio': {
# 'path': '.../train/audio/<audio_file>',
# 'array': array([...]),
# 'sampling_rate': 16000
# },
# 'sentence': 'Transcription of the audio in Wolof',
# 'source': 'alffa' # or 'fleurs' or 'urban_bus' or 'kallama'
# }
|