Willy030125/ambient_noise_audio
Ambient Noise Collection dataset This dataset is useful for reducing ASR model Hallucinations (especially Whisper), by default Whisper often transcribing non-speech audio as hallucination transcriptions. This dataset attempts to improve ASR model that have hallucinations on non-speech audio. Collected several audio from source: https://www.kaggle.com/datasets/nafin59/hospital-ambient-noise https://www.kaggle.com/datasets/solorzano/ambient-noise… See the full description on the dataset page: https://huggingface.co/datasets/Willy030125/ambient_noise_audio.
Ambient Noise Collection dataset
This dataset is useful for reducing ASR model Hallucinations (especially Whisper), by default Whisper often transcribing non-speech audio as hallucination transcriptions.<br> This dataset attempts to improve ASR model that have hallucinations on non-speech audio.
Collected several audio from source:
- https://www.kaggle.com/datasets/nafin59/hospital-ambient-noise
- https://www.kaggle.com/datasets/solorzano/ambient-noise
- https://www.kaggle.com/datasets/minsithu/audio-noise-dataset
- https://www.kaggle.com/datasets/ivanj0/audiodata
- https://huggingface.co/datasets/Myrtle/CAIMAN-ASR-BackgroundNoise
Dataset info:<br> num_rows: 288<br>
Format
Each example is a dictionary with the following fields:
{
"path": "audio/ambient_noise_(1).wav",
"audio": {
"path": "audio/ambient_noise_(1).wav",
"array": [...],
"sampling_rate": 16000
},
"sentence": "<|nospeech|>"
}Load dataset
Use HuggingFace datasets v2.18:
pip install datasets==2.18.0Use HuggingFace datasets to load:
from datasets import load_dataset, Audio
try:
dataset = load_dataset("Willy030125/ambient_noise_audio", trust_remote_code=True, encoding="utf-8", errors="ignore")
except:
dataset = load_dataset("Willy030125/ambient_noise_audio", trust_remote_code=True)