"AGI” Team at SemEval-2026 Task 2: Predicting Variation in Emotional Valence and Arousal over Time from Ecological Essays
Summary
The "AGI" Team submitted an approach to SemEval-2026 Task 2, focusing on predicting emotional valence and arousal variations over time from ecological essays. Their model combines RoBERTa-Large for text encoding with a unidirectional GRU for temporal modeling and gated user embeddings for personalization. A four-phase staged training curriculum utilizes ordinal regression for absolute affect prediction and a zero-inflated delta model for change detection. The system achieved competitive performance on Subtask 1 (longitudinal affect assessment) with composite correlations of r=0.600 for valence and r=0.452 for arousal. However, it showed systematic degradation in Subtask 2A (state change detection), exhibiting negative correlations (r=-0.167 for valence, r=-0.147 for arousal). This reveals a fundamental trade-off between stability-oriented representations and change sensitivity in emotional dynamics modeling. Code and trained checkpoints are publicly available.
Key takeaway
For NLP engineers developing systems for longitudinal affect assessment, you should carefully consider the inherent trade-off between model stability and its ability to detect subtle emotional state changes. Your design choices, particularly in temporal modeling and change detection mechanisms, will directly impact performance on these distinct tasks. Prioritize either absolute assessment or change detection based on your application's primary goal, and analyze failure modes empirically.
Key insights
Modeling emotional dynamics reveals a trade-off between stable representations and sensitivity to state changes.
Principles
- Stability-oriented representations hinder change sensitivity.
- Personalization improves temporal affect modeling.
Method
The approach uses RoBERTa-Large, a unidirectional GRU, and gated user embeddings, trained in four phases with ordinal regression and a zero-inflated delta model.
In practice
- Utilize RoBERTa-Large for text encoding.
- Incorporate gated user embeddings.
- Access public code and checkpoints.
Topics
- Emotional Valence
- Emotional Arousal
- SemEval-2026 Task 2
- RoBERTa-Large
- GRU Networks
- Affective Computing
- Temporal Modeling
Best for: Research Scientist, AI Scientist, Machine Learning Engineer, NLP Engineer
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by Paper Index on ACL Anthology.