Datasets:
AI4SER: Artificial Intelligence for Speech Emotion Recognition
AI4SER is an emotional speech dataset designed for Speech Emotion Recognition (SER) tasks.
It contains utterances in Italian, recorded by multiple speakers, and annotated with 7 emotional categories.
The dataset has been created following Open Science and FAIR data principles, and it is publicly available under a CC BY 4.0 license.
π§ Emotion Labels
The emotional category of each utterance is encoded in the filename using a 3-letter prefix:
Code | Emotion |
---|---|
dis | Disgust |
hap | Happiness |
fea | Fear |
ang | Anger |
sur | Surprise |
sad | Sadness |
neu | Neutral |
ποΈ File Naming Convention
Each .wav
file is named using the following format:
<emotion_code>_<phrase_id>_<speaker_id>.wav
For example:
hap_03_07.wav
: Happiness, phrase 03, speaker 07sad_10_02.wav
: Sadness, phrase 10, speaker 02
π Directory Structure
The dataset is organized as follows:
AI4SER/ βββ 01/ # Speaker 01 β βββ dis_01_01.wav β βββ hap_02_01.wav β βββ ... βββ 02/ # Speaker 02 β βββ ang_03_02.wav β βββ neu_04_02.wav β βββ ... βββ ...
Each subfolder corresponds to a speaker ID.
π Technical Details
- Format: 16-bit PCM WAV
- Sampling Rate: 44,100 Hz
- Language: Italian
- Utterances per speaker: 70 (7 emotions Γ 10 phrases)
- Duration: Variable
π·οΈ Annotations
In addition to the main dataset splits, we provide four supplementary CSV files (values are separated by ;
):
File name | Description |
---|---|
EMOTIONS-HIT-RATIO.csv |
Fraction of listeners who identified each audio file with one of the 7 considered discrete emotions. |
VALIDATION.csv |
Mean value of the Validation parameter assigned by listeners for each audio file. |
DOMINANCE.csv |
Mean value of the Dominance parameter assigned by listeners for each audio file. |
AROUSAL.csv |
Mean value of the Arousal parameter assigned by listeners for each audio file. |
Rating scales
Listeners annotated valence, dominance, and arousal using discrete attributes mapped onto the following numerical scale:
Value | Valence interpretation | Dominance interpretation | Arousal interpretation |
---|---|---|---|
-3 | Very negative | Very submissive | Very calm |
-2 | Negative | Submissive | Calm |
-1 | Slightly negative | Slightly submissive | Slightly calm |
0 | Neutral | Neutral | Neutral |
+1 | Slightly positive | Slightly dominant | Slightly intense |
+2 | Positive | Dominant | Intense |
+3 | Very positive | Very dominant | Very intense |
π License
This dataset is released under the Creative Commons Attribution 4.0 International (CC BY 4.0) license.
π Citation & Funding Acknowledgement
This dataset was developed by the Digital Signal Processing Lab β Department of Engineering β University of Messina.
This work was supported by the European Union β Next Generation EU under the Italian National Recovery and Resilience Plan (NRRP), Mission 4, Component 2, Investment 1.3, CUP C49J24000240004, partnership on βTelecommunications of the Futureβ (PE00000001 β program βRESTARTβ).
If you use this dataset in your research, please cite it appropriately (a formal citation will be added upon publication).
π¦ Usage with Hugging Face π€ Datasets
Once published, you can load the dataset using:
from datasets import load_dataset
dataset = load_dataset("your-username/AI4SER")
- Downloads last month
- 4