OLMoASR-Pool is a web-scale audio-text dataset collected from the public internet, consisting of approximately 3M hours of audio and 17M transcripts.
With OLMoASR-Pool, we trained OLMoASR π¬ποΈ, a series of English speech recognition models and observed strong generalization and robust capabilities!
pip install huggingface_hub[cli]huggingface-cli login in your CLI and paste the HF access token to loginfrom datasets import load_dataset
dataset = load_dataset("allenai/OLMoASR-Pool", streaming=True)
print(dataset) # features: ['id']
print(next(iter(dataset['train'])))
from datasets import load_dataset
dataset = load_dataset("allenai/OLMoASR-Pool", streaming=False, cache_dir=<where you want to download the IDs to>)
The collection was used to train a speech recognition model, but it can also be used in research areas such as conversational data, audio understanding, speaker diarization, voice detection and more.
This dataset is licensed under ODC-BY. It is intended for research and educational use in accordance with Ai2's Responsible Use Guidelines.
@misc{ngo2025olmoasropenmodelsdata,
title={OLMoASR: Open Models and Data for Training Robust Speech Recognition Models},
author={Huong Ngo and Matt Deitke and Martijn Bartelds and Sarah Pratt and Josh Gardner and Matt Jordan and Ludwig Schmidt},
year={2025},
eprint={2508.20869},
archivePrefix={arXiv},
primaryClass={cs.SD},
url={https://arxiv.org/abs/2508.20869},
}
3 commits
3 commits
OLMoASR-Pool is a web-scale audio-text dataset collected from the public internet, consisting of approximately 3M hours of audio and 17M transcripts.
With OLMoASR-Pool, we trained OLMoASR π¬ποΈ, a series of English speech recognition models and observed strong generalization and robust capabilities!
pip install huggingface_hub[cli]huggingface-cli login in your CLI and paste the HF access token to loginfrom datasets import load_dataset
dataset = load_dataset("allenai/OLMoASR-Pool", streaming=True)
print(dataset) # features: ['id']
print(next(iter(dataset['train'])))
from datasets import load_dataset
dataset = load_dataset("allenai/OLMoASR-Pool", streaming=False, cache_dir=<where you want to download the IDs to>)
The collection was used to train a speech recognition model, but it can also be used in research areas such as conversational data, audio understanding, speaker diarization, voice detection and more.
This dataset is licensed under ODC-BY. It is intended for research and educational use in accordance with Ai2's Responsible Use Guidelines.
@misc{ngo2025olmoasropenmodelsdata,
title={OLMoASR: Open Models and Data for Training Robust Speech Recognition Models},
author={Huong Ngo and Matt Deitke and Martijn Bartelds and Sarah Pratt and Josh Gardner and Matt Jordan and Ludwig Schmidt},
year={2025},
eprint={2508.20869},
archivePrefix={arXiv},
primaryClass={cs.SD},
url={https://arxiv.org/abs/2508.20869},
}
3 commits
3 commits