MahiA commited on
Commit
832b804
·
verified ·
1 Parent(s): b3cccd9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -3
README.md CHANGED
@@ -1,3 +1,35 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+ # UrbanSound8K
6
+
7
+ This is an audio classification dataset for **Sound Event Classification**.
8
+
9
+ **Classes = 10   ,   Split = Ten-Fold**
10
+
11
+
12
+ ## Structure
13
+ - `audios` folder contains audio files.
14
+ - `csv_files` folder contains CSV files for **five-fold** cross-validation.
15
+ - To perform cross-validation on fold 1, `train_1.csv` will be used for the training split and `test_1.csv` for the testing split, with the same pattern followed for the other folds.
16
+
17
+ ## Download
18
+ ```python
19
+ import os
20
+ import huggingface_hub
21
+ audio_datasets_path = "DATASET_PATH/Audio-Datasets"
22
+ if not os.path.exists(audio_datasets_path): print(f"Given {audio_datasets_path=} does not exist. Specify a valid path ending with 'Audio-Datasets' folder.")
23
+ huggingface_hub.snapshot_download(repo_id="MahiA/UrbanSound8K", repo_type="dataset", local_dir=os.path.join(audio_datasets_path, "UrbanSound8K"))
24
+ ```
25
+
26
+
27
+ ## Acknowledgment
28
+ This dataset is a slightly processed/restructured version of data originally released by [Source](https://urbansounddataset.weebly.com/urbansound8k.html).<br>
29
+ Please refer to the respective source for their licensing details and any additional information.
30
+
31
+
32
+
33
+ ## Contact
34
+ For questions or feedback, please create an issue.
35
+