TLDR: This research introduces the Long-Short Distance Graph Neural Network (LSDGNN) and an Improved Curriculum Learning (ICL) strategy for Emotion Recognition in Conversation (ERC). LSDGNN uses a Directed Acyclic Graph (DAG) to process both long- and short-distance conversational features, employing a Differential Regularizer to ensure feature distinctiveness and a BiAffine Module for feature interaction. ICL addresses data imbalance by defining a “weighted emotional shift” metric based on emotional similarity, allowing the model to learn easier samples before harder ones. The combined approach achieves state-of-the-art performance on IEMOCAP and MELD datasets, demonstrating significant improvements in recognizing emotions in complex conversational contexts.
Emotion Recognition in Conversation (ERC) is a vital and challenging task with applications ranging from chatbots to social media analysis. It involves identifying the emotion of a speaker’s utterance within a conversation, considering the influence of previous statements from both the speaker and other participants. Current methods often struggle with overly complex models that lead to redundant features and the persistent issue of data imbalance in datasets.
To tackle these challenges, researchers have introduced a novel approach called the Long-Short Distance Graph Neural Network (LSDGNN) combined with an Improved Curriculum Learning (ICL) strategy. This new model aims to enhance the accuracy and efficiency of emotion recognition in conversational settings.
Understanding LSDGNN: Bridging Distant and Nearby Emotions
The LSDGNN is designed to capture both long-distance and short-distance contextual information within a conversation. It builds upon a Directed Acyclic Graph (DAG) structure, where each utterance is a node and connections are made based on speaker identity and temporal order. This allows the model to process how emotions evolve over time, influenced by both immediate and more distant conversational turns.
A key innovation within LSDGNN is its dual-channel processing: one for long-distance features and another for short-distance features. To ensure that these two types of features are as distinct as possible, the model incorporates a Differential Regularizer. This mechanism helps prevent redundancy between the long- and short-distance representations, making each more informative.
Furthermore, the LSDGNN includes a BiAffine Module. This module acts as a bridge, enabling effective interaction and mutual enhancement between the long-distance and short-distance feature sets. By allowing these features to influence each other, the model can better capture subtle emotional nuances that might otherwise be missed.
Improved Curriculum Learning: A Smarter Training Approach
Beyond the model architecture, the paper also proposes an Improved Curriculum Learning (ICL) strategy to optimize the training process, particularly addressing the problem of data imbalance in ERC datasets. Curriculum Learning mimics how humans learn, starting with easier concepts and gradually moving to more difficult ones.
The ICL strategy introduces a “weighted emotional shift” metric. This metric calculates the difficulty of a conversation by considering the similarity between emotions in consecutive utterances by the same speaker. It uses a 2D arousal-valence emotion wheel to quantify emotional similarity. The core idea is that emotional shifts between very similar emotions are harder for the model to learn than shifts between very different emotions. By assigning higher difficulty to more similar emotional shifts, the training process prioritizes learning samples with larger emotional differences first, before tackling the more subtle and challenging shifts.
This adaptive training scheduler organizes the dataset into bins of increasing difficulty, gradually introducing more complex samples as the model progresses. This approach helps the model to adequately learn characteristics of less frequent emotion categories, improving overall performance and generalization ability.
Also Read:
- Synthetic Emotions: How AI is Creating Diverse Text for Emotion Recognition
- Detecting Robot Errors Through Human Signals: The ERR@HRI 2.0 Challenge
Performance and Future Outlook
The effectiveness of the LSDGNN with ICL was rigorously tested on two widely used ERC datasets: IEMOCAP and MELD. The experimental results demonstrate that the proposed model outperforms existing state-of-the-art benchmarks on both datasets, showing particularly strong improvements on IEMOCAP.
The researchers have made their code and data publicly available on GitHub, providing a new benchmark for future ERC research. This work represents a significant step forward in developing more robust and accurate systems for understanding emotions in human conversations. For more details, you can refer to the full research paper here.
Future work will explore more advanced transformation methods for weighted emotional shifts and investigate adaptive graph strategies for multi-party and low-resource scenarios, further pushing the boundaries of emotion recognition in conversations.


