Two-Stage Multimodal Framework for Emotion Mimicry Intensity Prediction
Summary
A two-stage multimodal framework was developed for the Hume-ABAW10 Emotional Mimicry Intensity (EMI) Challenge, aiming to predict six continuous emotion intensities from in-the-wild video clips. This approach combines textual, acoustic, and visual representations, with an optional motion branch. It first trains modality-specific encoders independently, then fuses their learned representations via a lightweight regressor with modality dropout and controlled encoder adaptation. The best validation performance, an average Pearson correlation of 0.4722, was achieved by the text–audio–vision–motion fusion model under an expanded 4:1 data split. The team placed third in the EMI challenge with a test set Pearson correlation of 0.57, providing a reproducible baseline for EMI prediction. Text and audio were found to be the strongest unimodal predictors.
Key takeaway
For Machine Learning Engineers developing multimodal affective computing systems, this framework offers a robust strategy for handling sparse and imbalanced "in-the-wild" data. You should consider a staged training approach, pre-training unimodal encoders before fusion, and incorporating modality dropout to improve robustness. Experiment with expanding your training data, as a 4:1 train-to-validation split significantly boosted performance in this challenge.
Key insights
Staged multimodal fusion with independent encoder pre-training improves robustness for continuous emotion intensity prediction.
Principles
- Pre-train unimodal encoders before fusion for stable representations.
- Modality dropout enhances robustness to missing or weak channels.
- CCC-oriented loss is effective for imbalanced, sparse targets.
Method
Train modality-specific encoders independently. Fuse learned embeddings via a FusionRegressor with modality dropout and limited encoder adaptation, using a combined CCC and MSE loss for continuous emotion intensity prediction.
In practice
- Use DINOv2 for visual and customized wav2vec 2.0 for acoustic features.
- Employ OpenFace AU+pose features for motion representation.
- Combine CCC and MSE loss with α=0.7 for robust regression.
Topics
- Emotional Mimicry Intensity
- Multimodal Fusion
- Affective Computing
- Staged Training
- Wav2Vec 2.0
- DINOv2
- Hume-ABAW10 Challenge
Code references
Best for: AI Scientist, Machine Learning Engineer, Research Scientist
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by cs.CV updates on arXiv.org.