CMATH: Cross-Modality Augmented Transformer with Hierarchical Variational Distillation for Multimodal Emotion Recognition in Conversation

Xiaofei Zhu,Jiawei Cheng,Zhou Yang,Zhuo Chen,Qingyang Wang,Jianfeng Yao
2024-11-15
Abstract:Multimodal emotion recognition in conversation (MER) aims to accurately identify emotions in conversational utterances by integrating multimodal information. Previous methods usually treat multimodal information as equal quality and employ symmetric architectures to conduct multimodal fusion. However, in reality, the quality of different modalities usually varies considerably, and utilizing a symmetric architecture is difficult to accurately recognize conversational emotions when dealing with uneven modal information. Furthermore, fusing multi-modality information in a single granularity may fail to adequately integrate modal information, exacerbating the inaccuracy in emotion recognition. In this paper, we propose a novel Cross-Modality Augmented Transformer with Hierarchical Variational Distillation, called CMATH, which consists of two major components, i.e., Multimodal Interaction Fusion and Hierarchical Variational Distillation. The former is comprised of two submodules, including Modality Reconstruction and Cross-Modality Augmented Transformer (CMA-Transformer), where Modality Reconstruction focuses on obtaining high-quality compressed representation of each modality, and CMA-Transformer adopts an asymmetric fusion strategy which treats one modality as the central modality and takes others as auxiliary modalities. The latter first designs a variational fusion network to fuse the fine-grained representations learned by CMA- Transformer into a coarse-grained representations. Then, it introduces a hierarchical distillation framework to maintain the consistency between modality representations with different granularities. Experiments on the IEMOCAP and MELD datasets demonstrate that our proposed model outperforms previous state-of-the-art baselines. Implementation codes can be available at <a class="link-external link-https" href="https://github.com/" rel="external noopener nofollow">this https URL</a> cjw-MER/CMATH.
Multimedia,Computation and Language
What problem does this paper attempt to address?
The problem that this paper attempts to solve is how to more effectively fuse modal information of different qualities in multi - modal emotion recognition to improve the accuracy of dialogue emotion recognition. Specifically, the paper points out that current methods usually assume that different modal information has the same quality and adopt a symmetric architecture for multi - modal fusion. However, in practical applications, there are often significant differences in the information quality of different modalities, and this symmetric fusion strategy is difficult to accurately recognize emotions in dialogue when dealing with uneven modal information. In addition, the single - granularity information fusion method may not fully integrate modal information, thus exacerbating the inaccuracy of emotion recognition. To overcome these problems, the paper proposes a new method - **CMATH (Cross - Modality Augmented Transformer with Hierarchical Variational Distillation)**. This method mainly consists of two modules: 1. **Multimodal Interaction Fusion Module**: - **Modality Reconstruction**: Down - sample and up - sample the original representations of different modalities through 1D convolutional layers to obtain high - quality compressed representations, and optimize these representations through reconstruction loss. - **Cross - Modality Augmented Transformer (CMA - Transformer)**: Adopt an asymmetric fusion strategy, regard one modality as the central modality and other modalities as auxiliary modalities, and enhance the representation of the central modality through the cross - attention mechanism and the feed - forward network. 2. **Hierarchical Variational Distillation Module**: - **Variational Fusion Network**: Fuse the fine - grained representations generated by the CMA - Transformer into coarse - grained representations, learn the Gaussian distribution parameters of each modality through a multi - layer perceptron, and sample using the reparameterization technique. - **Hierarchical Distillation**: Maintain the consistency between modal representations of different granularities through low - level distillation and high - level distillation strategies. Low - level distillation minimizes the difference between the teacher model and the student model in the semantic representation space, while high - level distillation minimizes the KL divergence in the decision representation space. Through these innovations, CMATH can more accurately recognize emotions in dialogue when dealing with multi - modal information of different qualities. Experimental results show that CMATH significantly outperforms existing baseline methods on the IEMOCAP and MELD datasets and achieves state - of - the - art performance.