FSD50K: An Open Dataset of Human-Labeled Sound Events
Paper • 2010.00475 • Published • 1
Error code: RowsPostProcessingError
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.
This is a mirror of the FSD50K sound event dataset. The original files were converted from WAV to Opus to reduce the size and accelerate streaming.
dev_clips_info_FSD50K.json and eval_clips_info_FSD50K.json.import io
import soundfile as sf
from datasets import Features, Value, load_dataset
for item in load_dataset(
"philgzl/fsd50k",
split="dev",
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...
@article{fonseca2022fsd50k,
title = {{FSD50K}: {An} open dataset of human-labeled sound events},
author = {Fonseca, Eduardo and Favory, Xavier and Pons, Jordi and Font, Frederic and Serra, Xavier},
journal = {IEEE/ACM} Trans. Audio, Speech, Lang. Process.},
volume = {30},
pages = {829--852},
year = {2022},
}