File size: 2,009 Bytes
ce8101a
 
afc1613
 
 
 
f1a6d15
 
ce8101a
afc1613
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
license: cc-by-4.0
task_categories:
- audio-classification
size_categories:
- n>1T
tags:
- pedestrian detection
---
# ASPED: An Audio Dataset for Detecting Pedestrians

This repo contains the data for the ASPED dataset, presented at ICASSP 2024.
- [Paper Link](https://arxiv.org/abs/2309.06531), [Project Homepage](https://urbanaudiosensing.github.io/ASPED.html)

- Pavan Seshadri, Chaeyeon Han, Bon-Woo Koo, Noah Posner, Suhbrajit Guhathakurta, Alexander Lerch

## Usage
This dataset contains audio and video recordings of pedestrian activity collected at various locations in and around Georgia Tech. 

Labels of pedestrian counts per each second of audio/video are provided as well, calculated via a computer vision model (Mask2Former trained on msft-coco) using the video recordings.
### Access
It is recommended to use the huggingface_hub library to download the dataset from this location. [Info on downloading with huggingface_hub](https://huggingface.co/docs/huggingface_hub/guides/download).

Downloading the entire dataset can be done with the following code:
```
from huggingface_hub import snapshot_download
snapshot_download(repo_id="pseshadri9/ASPED", repo_type="dataset")
```
Alternatively if you would like to download only the audio or video, pass the ignore_patterns flag to snapshot_download to avoid downloading the entire set. 

**Audio Only**
```
from huggingface_hub import snapshot_download
snapshot_download(repo_id="pseshadri9/ASPED", repo_type="dataset", ignore_patterns="*.mp4")
```

**Video Only**

```
from huggingface_hub import snapshot_download
snapshot_download(repo_id="pseshadri9/ASPED", repo_type="dataset", ignore_patterns="*.flac")
```


## Citation 
```
@inproceedings{Seshadri24,
  title={ASPED: An Audio Dataset for Detecting Pedestrians},
  author={Seshadri, Pavan and Han, Chaeyeon and Koo, Bon-Woo and Posner, Noah and Guhathakurta, Suhbrajit and Lerch, Alexander},
  booktitle={Proc. of ICASSP 2024},
  pages={1--5},
  year={2024},
  organization={IEEE}
}
```