Dataset Viewer
Auto-converted to Parquet
file
stringlengths
20
21
audio
dict
text
stringlengths
20
294
speaker_id
int64
374
8.24k
chapter_id
int64
24.7k
283k
id
stringlengths
15
16
374-180298-0000.flac
{"array":[0.000701904296875,0.000732421875,0.000732421875,0.000762939453125,0.000762939453125,0.0007(...TRUNCATED)
"CHAPTER SIXTEEN I MIGHT HAVE TOLD YOU OF THE BEGINNING OF THIS LIAISON IN A FEW LINES BUT I WANTED (...TRUNCATED)
374
180,298
374-180298-0000
374-180298-0001.flac
{"array":[-0.000091552734375,-0.000152587890625,-0.000152587890625,-0.0001220703125,-0.0000915527343(...TRUNCATED)
"MARGUERITE TO BE UNABLE TO LIVE APART FROM ME IT WAS THE DAY AFTER THE EVENING WHEN SHE CAME TO SEE(...TRUNCATED)
374
180,298
374-180298-0001
374-180298-0002.flac
{"array":[-0.000244140625,-0.000244140625,-0.00018310546875,-0.00018310546875,-0.000091552734375,-0.(...TRUNCATED)
"I WISHED ABOVE ALL NOT TO LEAVE MYSELF TIME TO THINK OVER THE POSITION I HAD ACCEPTED FOR IN SPITE (...TRUNCATED)
374
180,298
374-180298-0002
374-180298-0003.flac
{"array":[-0.000244140625,-0.000396728515625,-0.000579833984375,-0.000579833984375,-0.00039672851562(...TRUNCATED)
"ASSUMED ALL AT ONCE AN APPEARANCE OF NOISE AND DISORDER NEVER BELIEVE HOWEVER DISINTERESTED THE LOV(...TRUNCATED)
374
180,298
374-180298-0003
374-180298-0004.flac
{"array":[0.000274658203125,0.00030517578125,0.000213623046875,0.00018310546875,0.000244140625,0.000(...TRUNCATED)
"NOTHING IS SO EXPENSIVE AS THEIR CAPRICES FLOWERS BOXES AT THE THEATRE SUPPERS DAYS IN THE COUNTRY (...TRUNCATED)
374
180,298
374-180298-0004
374-180298-0005.flac
{"array":[0.000152587890625,0.000152587890625,0.000091552734375,0.0001220703125,0.000091552734375,0.(...TRUNCATED)
"MY FATHER WAS AND STILL IS RECEVEUR GENERAL AT C HE HAS A GREAT REPUTATION THERE FOR LOYALTY THANKS(...TRUNCATED)
374
180,298
374-180298-0005
374-180298-0006.flac
{"array":[-0.000152587890625,-0.00018310546875,-0.00018310546875,-0.00018310546875,-0.00006103515625(...TRUNCATED)
"I CAME TO PARIS STUDIED LAW WAS CALLED TO THE BAR AND LIKE MANY OTHER YOUNG MEN PUT MY DIPLOMA IN M(...TRUNCATED)
374
180,298
374-180298-0006
374-180298-0007.flac
{"array":[-0.000152587890625,-0.00018310546875,-0.000091552734375,-0.00006103515625,-0.0000305175781(...TRUNCATED)
"MY EXPENSES WERE VERY MODERATE ONLY I USED UP MY YEAR'S INCOME IN EIGHT MONTHS AND SPENT THE FOUR S(...TRUNCATED)
374
180,298
374-180298-0007
374-180298-0008.flac
{"array":[0.00091552734375,0.000732421875,0.000518798828125,0.000396728515625,0.000030517578125,-0.0(...TRUNCATED)
"FOR THE REST NOT A PENNY OF DEBT THIS THEN WAS MY POSITION WHEN I MADE THE ACQUAINTANCE OF MARGUERI(...TRUNCATED)
374
180,298
374-180298-0008
374-180298-0009.flac
{"array":[-0.00042724609375,-0.000335693359375,-0.000396728515625,-0.000518798828125,-0.000457763671(...TRUNCATED)
"MARGUERITE'S NATURE WAS VERY CAPRICIOUS AND LIKE SO MANY WOMEN SHE NEVER REGARDED AS A SERIOUS EXPE(...TRUNCATED)
374
180,298
374-180298-0009
End of preview. Expand in Data Studio

Condensed LibriSpeech ASR

This dataset is a condensed version of the LibriSpeech ASR dataset, created by subsampling approximately 10% of the original data from each split. It is intended for quick experimentation, prototyping, and debugging when working with Automatic Speech Recognition (ASR) tasks.

Dataset Details

  • Original Dataset: LibriSpeech ASR
  • Condensation Ratio: Approximately 10% of the full dataset
  • Splits Included:
    • train.clean.100
    • train.clean.360
    • train.other.500
    • validation.clean
    • validation.other
    • test.clean
    • test.other

For each split, a default number of examples was extracted:

  • Training Splits: 1,000 examples each
  • Validation/Test Splits: 100 examples each

Data Format

Each sample in the dataset contains the following fields:

  • file:
    A path to the original audio file (FLAC format).

  • audio:
    A dictionary containing:

    • path: Path to the audio file.
    • array: The decoded audio waveform as a NumPy array.
    • sampling_rate: The sampling rate (typically 16 kHz).
  • text:
    The transcription corresponding to the audio.

  • id:
    A unique identifier for the sample.

  • speaker_id:
    A unique identifier for the speaker.

  • chapter_id:
    An identifier corresponding to the audiobook chapter.

How Was This Dataset Created?

The condensed dataset was generated by streaming the full LibriSpeech ASR dataset using the Hugging Face Datasets library and selecting approximately 10% of each split. This process preserves the original structure and fields, enabling seamless use with models and workflows designed for LibriSpeech.

Usage Example

Below is a Python snippet to load and inspect the dataset:

from datasets import load_dataset

# Load the condensed dataset from the Hugging Face Hub
dataset = load_dataset("nyalpatel/condensed_librispeech_asr")

# Access a specific split (e.g., test.clean)
test_dataset = dataset["test.clean"]

# Display the first example in the test set
print(test_dataset[0])





Downloads last month
12