ak0255 commited on
Commit
b5e203e
Β·
verified Β·
1 Parent(s): 24c858a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +104 -3
README.md CHANGED
@@ -1,3 +1,104 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: Synthesis SER
3
+ emoji: πŸŽ™οΈ
4
+ colorFrom: purple
5
+ colorTo: blue
6
+ sdk: static
7
+ app_port: 7860
8
+ pinned: false
9
+ license: apache-2.0
10
+ ---
11
+
12
+ # Synthesis SER Dataset
13
+
14
+ ## Overview
15
+
16
+ This dataset contains **synthetic speech audio files** for Speech Emotion Recognition (SER) training, specifically designed for training the **emotion2vec** model. The data is generated using two state-of-the-art TTS systems: **CosyVoice2** and **Kimi-Audio**.
17
+
18
+ ## Paper
19
+
20
+ If you use this dataset, please cite our paper:
21
+
22
+ ```
23
+ https://arxiv.org/pdf/2603.16483
24
+ ```
25
+
26
+ ## Dataset Structure
27
+
28
+ Each subdirectory corresponds to a source emotional speech dataset and contains synthetic data generated using both TTS engines:
29
+
30
+ | Subdirectory | Source | TTS Engines | # WAV Files |
31
+ |-------------|--------|-------------|-------------|
32
+ | `CREMA_D_SYN.tar.gz` | CREMA-D | CosyVoice2 + Kimi-Audio | 2,236 |
33
+ | `IEMOCAP_SYN.tar.gz` | IEMOCAP | CosyVoice2 + Kimi-Audio | 3,570 |
34
+ | `LLM_DATA_SYN.tar.gz` | LLM_DATA | CosyVoice2 + Kimi-Audio | 3,155 |
35
+ | `RAVDESS_SYN.tar.gz` | RAVDESS | CosyVoice2 + Kimi-Audio | 12 |
36
+ | `SAVEE_SYN.tar.gz` | SAVEE | CosyVoice2 + Kimi-Audio | 124 |
37
+ | `TESS_SYN.tar.gz` | TESS | CosyVoice2 + Kimi-Audio | 12,397 |
38
+
39
+ ### Internal Structure
40
+
41
+ Each tar.gz contains:
42
+ ```
43
+ β”œβ”€β”€ cosyvoice2/
44
+ β”‚ β”œβ”€β”€ train/
45
+ β”‚ β”‚ β”œβ”€β”€ *.wav
46
+ β”‚ β”‚ └── train.json
47
+ β”‚ └── test/
48
+ β”‚ β”œβ”€β”€ *.wav
49
+ β”‚ └── test.json
50
+ └── kimi-audio/
51
+ β”œβ”€β”€ train/
52
+ β”‚ β”œβ”€β”€ *.wav
53
+ β”‚ └── train.json
54
+ └── test/
55
+ β”œβ”€β”€ *.wav
56
+ └── test.json
57
+ ```
58
+
59
+ Each `train.json` / `test.json` contains metadata:
60
+ ```json
61
+ {
62
+ "emotion": "angry",
63
+ "wav_path": "..."
64
+ }
65
+ ```
66
+
67
+ ### Supported Emotions
68
+
69
+ - angry
70
+ - disgust
71
+ - fearful
72
+ - happy
73
+ - neutral
74
+ - sad
75
+ - surprised
76
+
77
+ ## Real Data Sources
78
+
79
+ Since the real emotional speech data is publicly available, we only host the **synthetic** data on HuggingFace. If you need the **real** data for research, please download from the original sources:
80
+
81
+ | Dataset | Kaggle Link |
82
+ |---------|-------------|
83
+ | IEMOCAP | https://www.kaggle.com/datasets/samuelsamsudinng/iemocap-emotion-speech-database |
84
+ | RAVDESS | https://www.kaggle.com/datasets/uwrfkaggler/ravdess-emotional-speech-audio |
85
+ | RAVDESS_SONG | https://www.kaggle.com/datasets/uwrfkaggler/ravdess-emotional-song-audio |
86
+ | SAVEE | https://www.kaggle.com/datasets/ejlok1/surrey-audiovisual-expressed-emotion-savee |
87
+ | TESS | https://www.kaggle.com/datasets/ejlok1/toronto-emotional-speech-set-tess |
88
+ | MELD | https://www.kaggle.com/datasets/zaber666/meld-dataset |
89
+ | CREMA-D | https://www.kaggle.com/datasets/ejlok1/cremad |
90
+
91
+ ## Usage
92
+
93
+ ```python
94
+ from huggingface_hub import hf_hub_download
95
+
96
+ # Download and extract a dataset
97
+ repo_id = "ak0255/Synthesis_SER"
98
+ filename = "SAVEE_SYN.tar.gz"
99
+ path = hf_hub_download(repo_id=repo_id, filename=filename, repo_type="dataset")
100
+ ```
101
+
102
+ ## License
103
+
104
+ Apache 2.0