Dataset Viewer
Auto-converted to Parquet Duplicate
The dataset viewer is not available for this split.
Server error while post-processing the split rows. Please report the issue.
Error code:   RowsPostProcessingError

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.

LibriSpeech: An ASR corpus based on public domain audio books

This is a mirror of the LibriSpeech ASR corpus. The original files were converted from FLAC to Opus to reduce the size and accelerate streaming. The transcripts are not included. This mirror is thus best suited for audio-to-audio tasks.

Usage

import io

import soundfile as sf
from datasets import Features, Value, load_dataset

for item in load_dataset(
    "philgzl/libri",
    split="train",
    streaming=True,
    features=Features({"audio": Value("binary"), "name": Value("string")}),
):
    print(item["name"])
    buffer = io.BytesIO(item["audio"])
    x, fs = sf.read(buffer)
    # do stuff...

Citation

@inproceedings{panayotov2015librispeech,
  title = {{LibriSpeech}: {An} {ASR} corpus based on public domain audio books},
  author = {Panayotov, Vassil and Chen, Guoguo and Povey, Daniel and Khudanpur, Sanjeev},
  booktitle = {Proc. ICASSP},
  pages = {5206--5210},
  year = {2015},
}
Downloads last month
159