license: mit
task_categories:
- audio-classification
- audio-to-audio
language:
- en
tags:
- universal_sound_separation
- auditory_scene_analysis
pretty_name: ASA2 dataset
🎧 Auditory Scene Analysis 2 (ASA2) Dataset
We constructed a new dataset for multichannel USS and polyphonic audio classification tasks. The proposed dataset is designed to reflect various conditions, including moving sources with temporal onsets and offsets. For foreground sound sources, signals from 13 audio classes were selected from open-source databases (Pixabay¹, FSD50K, Librispeech, MUSDB18, Vocalsound). These signals were resampled to 16 kHz and pre-processed by either padding zeros or cropping to 4 seconds. Each sound source has a 75% probability of being a moving source, with speeds ranging from 0 to 3 m/s. The dataset features between 2 to 5 foreground sound sources, along with one background noise from the diffused TAU-SNoise dataset² with a signal-to-noise ratio (SNR) ranging from 6 to 30 dB. The simulations were conducted using gpuRIR. Room dimensions were set to a width and length between 5 and 8 meters, and a height between 3 and 4 meters, with reverberation times ranging from 0.2 to 0.6 seconds. These parameters were sampled from uniform distributions. We simulated spatialized sound sources using a 4-channel tetrahedral microphone array with a radius of 4.2 cm. The procedure for dataset generation is illustrated in the below figure, and details about class configuration and durations of audio clips are provided in the below table. This dataset poses a significant challenge for separation tasks due to the inclusion of moving sources, onset and offset conditions, overlapped in-class sources, and noisy reverberant environments.
📦 How to Download the ASA Dataset V2 (Linux)
This guide explains how to download and extract the ASA Dataset from Hugging Face using Linux command-line tools.
📁 1. Prerequisites
Ensure the following tools are installed:
sudo apt update
sudo apt install wget unzip
📥 2. Download All Dataset Parts
There are 17 parts in total: dataset.z01
through dataset.z16
, and dataset.zip
. You can download them with:
mkdir ASA-dataset && cd ASA-dataset
# Set the base URL
BASE_URL="https://huggingface.co/datasets/donghoney0416/ASA-dataset/resolve/main"
# Download dataset.z01 to dataset.z16
for i in $(seq -w 1 16); do
wget "${BASE_URL}/dataset.z${i}"
done
# Download the final part
wget "${BASE_URL}/dataset.zip"
🔗 3. Merge and Extract the Dataset
These files are split parts of a single zip archive. You only need to run:
unzip dataset.zip
This will automatically merge all parts and extract the dataset.
🧹 4. (Optional) Clean Up
After extraction, you can delete the original zip files:
rm dataset.z* dataset.zip
📌 Notes
- These are standard split zip archives;
unzip
is sufficient to both merge and extract. - Make sure all 17 files are in the same directory before running
unzip
.