Wake-up word emotion recognition is a task to capture the speakers’ emotional state using short lexically-matched speech such as Ok Google or Hey Siri.
Hi, KIA: A Speech Emotion Recognition Dataset for Wake-Up Words [ArXiv]
@inproceedings{kim2022hi,
title={Hi, KIA: A Speech Emotion Recognition Dataset for Wake-Up Words},
author={Taesu Kim, SeungHeon Doh, Gyunpyo Lee, Hyung seok Jun, Juhan Nam, Hyeon-Jeong Suk},
booktitle={Proceedings of the 14th Asia Pacific Signal and Information Processing Association Annual Summit and Conference (APSIPA)},
year={2022}
}
-
Install python and PyTorch:
- python==3.7
- pytorch-lightning==1.4.9 (important!)
- torch==1.7.1 (Please install it according to your CUDA version.)
-
Other requirements:
- pip install -r requirements.txt
conda create -n YOUR_ENV_NAME python=3.7
conda activate YOUR_ENV_NAME
pip install -r requirements.txt
-
Download the data files from HERE
-
Preprocessing audio: resampling to 16000
python preprocessing.py
-
Transfer Learning training options:
python train.py --freeze_type none python train.py --freeze_type feature # best option python train.py --freeze_type context python train.py --freeze_type all
Fore more examples, check bash files under scripts
folder.