Code for our paper "Recursive Joint Attention for Audio-Visual Fusion in Regression Based Emotion Recognition" accepted to ICASSP 2023. Our paper can be found here https://ieeexplore.ieee.org/abstract/document/10095234.
If you find this code useful for your research, please cite our paper.
@INPROCEEDINGS{10095234,
author={Praveen, R Gnana and Granger, Eric and Cardinal, Patrick},
booktitle={IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
title={Recursive Joint Attention for Audio-Visual Fusion in Regression Based Emotion Recognition},
year={2023},
}
This code uses the Affwild2 dataset to validate the proposed approach for Dimensional Emotion Recognition. There are three major blocks in this repository to reproduce the results of our paper. This code uses Mixed Precision Training (torch.cuda.amp). The dependencies and packages required to reproduce the environment of this repository can be found in the environment.yml
file.
Create an environment using the environment.yml
file
conda env create -f environment.yml
The pre-trained models of audio and visual backbones are obtained here
The fusion models trained using our fusion approach can be found here
recursivejointattention.pt: Fusion model trained using our approach on the Affwild2 dataset
Return to Table of Content Please download the following.
- The dataset for the valence-arousal track can be downloaded here
- The cropped-aligned images are necessary. They are used to form the visual input. They are already provided by the dataset organizers. Otherwise, you may choose to use OpenFace toolkit to extract the cropped-aligned images. However, the per-frame success rate is lower compared to the database-provided version.
- The audio files are extracted and segmented to generate the corresponding audio files in alignment with the visual files using mkvextract. To generate these audio files, you can use the file Preprocessing/audio_preprocess.py.
- The annotations provided by the dataset organizers are preprocessed to obtain the labels of aligned audio and visual files. To generate these audio files, you can use the file Preprocessing/preprocess_labels.py.
- After obtaining the preprocessed audio and visual files along with annotations, we can train the model using the proposed fusion approach using the main.py script.
- The results of the proposed model can be reproduced using the trained model. In order to obtain the predictions on the test set using our proposed model, we can use the test.py.
Our code is based on TSAV and Recursive-joint-co-attention