Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
---
|
4 |
+
|
5 |
+
# RAVDESS
|
6 |
+
|
7 |
+
This is an audio classification dataset for **Emotion Recognition**.
|
8 |
+
|
9 |
+
**Classes = 8 , Split = Train-Test**
|
10 |
+
|
11 |
+
|
12 |
+
## Structure
|
13 |
+
- `audios` folder contains audio files.
|
14 |
+
- `csv_files` folder contains CSV files contains train.csv for training split and test.csv for the testing split.
|
15 |
+
|
16 |
+
## Download
|
17 |
+
```python
|
18 |
+
import os
|
19 |
+
import huggingface_hub
|
20 |
+
audio_datasets_path = "DATASET_PATH/Audio-Datasets"
|
21 |
+
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.")
|
22 |
+
huggingface_hub.snapshot_download(repo_id="MahiA/RAVDESS", repo_type="dataset", local_dir=os.path.join(audio_datasets_path, "RAVDESS"))
|
23 |
+
```
|
24 |
+
|
25 |
+
|
26 |
+
## Acknowledgment
|
27 |
+
This dataset is a slightly processed/restructured version of data originally released by [Source](https://zenodo.org/records/1188976#.YFZuJ0j7SL8).<br>
|
28 |
+
Please refer to the respective source for their licensing details and any additional information.
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
## Contact
|
33 |
+
For questions or feedback, please create an issue.
|
34 |
+
|