Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,52 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: odc-by
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: odc-by
|
| 3 |
+
---
|
| 4 |
+
OLMoASR-Mix is the curated version of OLMoASR-Pool, a web-scale audio-text dataset collected from the public internet. The dataset consists of approximately 1M hours of audio.
|
| 5 |
+
|
| 6 |
+
With OLMoASR-Mix from OLMoASR-Pool, we trained OLMoASR π¬ποΈ, a series of English speech recognition models and observed strong generalization and robust capabilities!
|
| 7 |
+
|
| 8 |
+
# Content
|
| 9 |
+
The dataset spans approximately 1M hours of audio.
|
| 10 |
+
It also spans across a variety speaking styles, accents and audio setups such as news segments π°, podcasts ποΈ, outdoors π³ποΈ, crowds π§βπ€βπ§, speeches π€, commentary π£οΈ, interviews π€³ and more!
|
| 11 |
+
OLMoASR-Mix is English-only as it has been curated for training English speech recognition models.
|
| 12 |
+
|
| 13 |
+
# Usage
|
| 14 |
+
Download from HuggingFace
|
| 15 |
+
Retrieve HF access token from here to gain access to the dataset.
|
| 16 |
+
Run pip install huggingface_hub[cli]
|
| 17 |
+
Run huggingface-cli login in your CLI and paste the HF access token to login
|
| 18 |
+
Use the code below to access the IDs
|
| 19 |
+
```
|
| 20 |
+
from datasets import load_dataset
|
| 21 |
+
dataset = load_dataset("allenai/OLMoASR-Mix", streaming=True)
|
| 22 |
+
print(dataset) # features: ['id']
|
| 23 |
+
print(next(iter(dataset['train'])))
|
| 24 |
+
```
|
| 25 |
+
If you're downloading all the IDs, you can run the code below
|
| 26 |
+
```
|
| 27 |
+
from datasets import load_dataset
|
| 28 |
+
dataset = load_dataset("allenai/OLMoASR-Mix", streaming=False, cache_dir=<where you want to download the IDs to>)
|
| 29 |
+
```
|
| 30 |
+
Download the audio and transcript files from ID information.
|
| 31 |
+
Preprocess the audio and transcript files. Follow the instructions at the OLMoASR repo.
|
| 32 |
+
|
| 33 |
+
# Uses
|
| 34 |
+
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.
|
| 35 |
+
|
| 36 |
+
# License
|
| 37 |
+
This dataset is licensed under ODC-BY. It is intended for research and educational use in accordance with Ai2's Responsible Use Guidelines.
|
| 38 |
+
|
| 39 |
+
# Reference
|
| 40 |
+
```
|
| 41 |
+
@misc{ngo2025olmoasropenmodelsdata,
|
| 42 |
+
title={OLMoASR: Open Models and Data for Training Robust Speech Recognition Models},
|
| 43 |
+
author={Huong Ngo and Matt Deitke and Martijn Bartelds and Sarah Pratt and Josh Gardner and Matt Jordan and Ludwig Schmidt},
|
| 44 |
+
year={2025},
|
| 45 |
+
eprint={2508.20869},
|
| 46 |
+
archivePrefix={arXiv},
|
| 47 |
+
primaryClass={cs.SD},
|
| 48 |
+
url={https://arxiv.org/abs/2508.20869},
|
| 49 |
+
}
|
| 50 |
+
```
|
| 51 |
+
# Contact
|
| 52 |
+
If you have any questions regarding the dataset, please contact Huong Ngo at zoengo2002@gmail.com.
|