Willy030125's picture
Update README.md
00a6018 verified
metadata
license: cc
language:
  - id
pretty_name: LibriVox Filtered ID
size_categories:
  - n<1K
task_categories:
  - automatic-speech-recognition

Librivox Filtered ID

Filtered Librivox Indonesian dataset

Audio has been preprocessed using FFmpeg as: wav -ar 16000 -ac 1 (mono 16kHz sample_rate) for Whisper-ready finetuning
Selected audio datasets on: ['id']['universal-declaration-of-human-rights']
num_rows: 136
Original dataset: indonesian-nlp/librivox-indonesia

Format

Each example is a dictionary with the following fields:

{
  "path": "audio/librivox_id_1.wav",
  "audio": {
    "path": "audio/librivox_id_1.wav",
    "array": [...],
    "sampling_rate": 16000
  },
  "sentence": "Some transcription"
}

Load dataset

Use HuggingFace datasets v2.18:

pip install datasets==2.18.0

Use HuggingFace datasets to load:

from datasets import load_dataset, Audio

dataset = load_dataset("Willy030125/librivox_filtered_id")