AnonymousAuthor1 commited on
Commit
96f728a
·
verified ·
1 Parent(s): d8e232f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +85 -3
README.md CHANGED
@@ -1,3 +1,85 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - audio-classification
5
+ - audio-to-audio
6
+ language:
7
+ - en
8
+ tags:
9
+ - universal_sound_separation
10
+ - auditory_scene_analysis
11
+ pretty_name: ASA2 dataset
12
+ ---
13
+ <h1 align="center">🎧 Auditory Scene Analysis 2 (ASA2) Dataset </h1>
14
+
15
+ 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.
16
+
17
+ ---
18
+
19
+ # 📦 How to Download the ASA Dataset V2 (Linux)
20
+
21
+ This guide explains how to download and extract the **ASA Dataset** from [Hugging Face](https://huggingface.co/datasets/donghoney0416/ASA-dataset/tree/main) using Linux command-line tools.
22
+
23
+
24
+ ## 📁 1. Prerequisites
25
+
26
+ Ensure the following tools are installed:
27
+
28
+ ```bash
29
+ sudo apt update
30
+ sudo apt install wget unzip
31
+ ```
32
+
33
+ ## 📥 2. Download All Dataset Parts
34
+
35
+ There are 17 parts in total: `dataset.z01` through `dataset.z16`, and `dataset.zip`. You can download them with:
36
+
37
+ ```bash
38
+ mkdir ASA-dataset && cd ASA-dataset
39
+
40
+ # Set the base URL
41
+ BASE_URL="https://huggingface.co/datasets/donghoney0416/ASA-dataset/resolve/main"
42
+
43
+ # Download dataset.z01 to dataset.z16
44
+ for i in $(seq -w 1 16); do
45
+ wget "${BASE_URL}/dataset.z${i}"
46
+ done
47
+
48
+ # Download the final part
49
+ wget "${BASE_URL}/dataset.zip"
50
+ ```
51
+
52
+ ## 🔗 3. Merge and Extract the Dataset
53
+
54
+ These files are split parts of a single zip archive. You only need to run:
55
+
56
+ ```bash
57
+ unzip dataset.zip
58
+ ```
59
+
60
+ This will automatically merge all parts and extract the dataset.
61
+
62
+ ## 🧹 4. (Optional) Clean Up
63
+
64
+ After extraction, you can delete the original zip files:
65
+
66
+ ```bash
67
+ rm dataset.z* dataset.zip
68
+ ```
69
+
70
+ ## 📌 Notes
71
+
72
+ - These are standard split zip archives; `unzip` is sufficient to both merge and extract.
73
+ - Make sure all 17 files are in the **same directory** before running `unzip`.
74
+
75
+ <p align="center">
76
+ <img src="dataset_table.PNG" width="70%">
77
+ </p>
78
+
79
+ <p align="center">
80
+ <img src="Dataset_revised.png" width="50%">
81
+ </p>
82
+
83
+ ---
84
+ license: mit
85
+ ---