Datasets:
0x3
/

Modalities:
Audio
Text
Formats:
parquet
ArXiv:
License:
wham / README.md
0x3's picture
Duplicate from philgzl/wham
3e6374c
|
Raw
History Blame Contribute Delete
1.56 kB
metadata
license: cc-by-nc-4.0
dataset_info:
  features:
    - name: audio
      dtype: audio
    - name: name
      dtype: string

WHAM!48kHz noise dataset

This is a mirror of the WHAM!48kHz noise dataset. The original files were segmented and converted from WAV to Opus to reduce the size and accelerate streaming.

Usage

import io

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

for item in load_dataset(
    "philgzl/wham",
    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{wichern2019wham,
  title = {{WHAM!}: {Extending} speech separation to noisy environments},
  author = {Wichern, Gordon and Antognini, Joe and Flynn, Michael and Zhu, Licheng Richard and McQuinn, Emmett and Crow, Dwight and Manilow, Ethan and Roux, Jonathan Le},
  booktitle = {Proc. Interspeech},
  pages = {1368--1372},
  year = {2019},
}