This repository provides our runner-up solution for MER2025-SEMI challenge at MRAC'25 workshop. If our project helps you, please give us a star ⭐ on GitHub to support us. 🙏🙏

We propose a comprehensive framework, grounded in the principle that "more is better," to construct a robust Mixture of Experts (MoE) emotion recognition system. Our approach integrates a diverse range of input modalities as independent experts, including novel signals such as knowledge from large Vision-Language Models (VLMs) and temporal Action Unit (AU) information.
Our environment setup is identical to that of MERBench.
conda env create -f environment.yml
Preprocessing
.npy file with shape (C,).prompt.txt for details.)./preprocess/check_feat_dim.py to obtain the dimensionality of each type of feature../config.py../preprocess/mer2025_base.py to split the dataset into training and validation sets.Training
./train.py to perform training and validation../run_eval_unimodal.sh to evaluate unimodal performance. (All three branches use the same input for fair comparison with the trimodal setting.)Saved as .npy files under ./train_lst/, each containing a Python dictionary with the following structure:
train_info = {
# List of video names, e.g., ["example1", ...]
"names": split_train_names,
# List of emotion labels, e.g., ["happy", ...]
"emos": split_train_emos,
# List of emotion valence values, e.g., [-10, ...]
"vals": split_train_vals,
}
valid_info = {
# List of video names, e.g., ["example1", ...]
"names": split_valid_names,
# List of emotion labels, e.g., ["happy", ...]
"emos": split_valid_emos,
# List of emotion valence values, e.g., [-10, ...]
"vals": split_valid_vals,
}
If you find this work useful for your research, please give us a star and use the following BibTeX entry for citation.
@inproceedings{xie2025more,
title={More is better: A moe-based emotion recognition framework with human preference alignment},
author={Xie, Jun and Zhu, Yingjian and Chen, Feng and Zhang, Zhenghao and Fan, Xiaohui and Yi, Hongzhu and Wang, Xinming and Yu, Chen and Bi, Yue and Zhao, Zhaoran and others},
booktitle={Proceedings of the 3rd International Workshop on Multimodal and Responsible Affective Computing},
pages={2--7},
year={2025}
}
7 commits
2 commits
Python
98.3%
Shell
1.7%
This repository provides our runner-up solution for MER2025-SEMI challenge at MRAC'25 workshop. If our project helps you, please give us a star ⭐ on GitHub to support us. 🙏🙏

We propose a comprehensive framework, grounded in the principle that "more is better," to construct a robust Mixture of Experts (MoE) emotion recognition system. Our approach integrates a diverse range of input modalities as independent experts, including novel signals such as knowledge from large Vision-Language Models (VLMs) and temporal Action Unit (AU) information.
Our environment setup is identical to that of MERBench.
conda env create -f environment.yml
Preprocessing
.npy file with shape (C,).prompt.txt for details.)./preprocess/check_feat_dim.py to obtain the dimensionality of each type of feature../config.py../preprocess/mer2025_base.py to split the dataset into training and validation sets.Training
./train.py to perform training and validation../run_eval_unimodal.sh to evaluate unimodal performance. (All three branches use the same input for fair comparison with the trimodal setting.)Saved as .npy files under ./train_lst/, each containing a Python dictionary with the following structure:
train_info = {
# List of video names, e.g., ["example1", ...]
"names": split_train_names,
# List of emotion labels, e.g., ["happy", ...]
"emos": split_train_emos,
# List of emotion valence values, e.g., [-10, ...]
"vals": split_train_vals,
}
valid_info = {
# List of video names, e.g., ["example1", ...]
"names": split_valid_names,
# List of emotion labels, e.g., ["happy", ...]
"emos": split_valid_emos,
# List of emotion valence values, e.g., [-10, ...]
"vals": split_valid_vals,
}
If you find this work useful for your research, please give us a star and use the following BibTeX entry for citation.
@inproceedings{xie2025more,
title={More is better: A moe-based emotion recognition framework with human preference alignment},
author={Xie, Jun and Zhu, Yingjian and Chen, Feng and Zhang, Zhenghao and Fan, Xiaohui and Yi, Hongzhu and Wang, Xinming and Yu, Chen and Bi, Yue and Zhao, Zhaoran and others},
booktitle={Proceedings of the 3rd International Workshop on Multimodal and Responsible Affective Computing},
pages={2--7},
year={2025}
}
7 commits
2 commits
Python
98.3%
Shell
1.7%