Datasets:

Modalities:
Audio
Text
Formats:
parquet
ArXiv:
Libraries:
Datasets
Dask
License:
Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html> <h"... is not valid JSON

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

EARS: Expressive Anechoic Recordings of Speech

This is a mirror of the Expressive Anechoic Recordings of Speech (EARS) dataset. The original files were 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/ears",
    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{richter2024ears,
  title = {{EARS}: {An} anechoic fullband speech dataset benchmarked for speech enhancement and dereverberation},
  author = {Richter, Julius and Wu, Yi-Chiao and Krenn, Steven and Welker, Simon and Lay, Bunlong and Watanabe, Shinjii and Richard, Alexander and Gerkmann, Timo},
  booktitle = {Proc. Interspeech},
  pages = {4873--4877},
  year = {2024},
}
Downloads last month
135

Paper for philgzl/ears