AFourP at SemEval-2026 Task 2: Predicting Variation in Emotional Valence and Arousal over Time from Ecological Essays
Summary
AFourP's submission to SemEval-2026 Task 2, Subtask 1, addressed the challenge of predicting continuous emotional Valence and Arousal scores from ecological diary texts. The team's system utilized a fine-tuned RoBERTa-base model, enhanced with a single linear regression head, and processed each essay independently to capture emotional nuances. This approach yielded an rcomposite score of .679 for Valence and .466 for Arousal on the official test set. These results positioned AFourP 4th on the Subtask 1 leaderboard, highlighting a competitive performance in modeling temporal variations of emotional states from free-form textual data. The task required systems to infer emotional intensity and pleasantness from personal narratives.
Key takeaway
For NLP Engineers developing systems for continuous emotion prediction from free-form text, consider fine-tuning a RoBERTa-base model. This approach, demonstrated by AFourP's 4th place SemEval-2026 performance, shows that a simple linear regression head can effectively map textual features to Valence and Arousal scores. You should evaluate independent text processing for similar tasks to simplify model architecture and improve focus on individual narrative emotional states.
Key insights
Fine-tuning RoBERTa-base with a linear head effectively predicts emotional valence and arousal from diary texts.
Principles
- RoBERTa-base is effective for emotion prediction.
- Independent essay processing simplifies modeling.
- Linear regression heads can map embeddings to scores.
Method
The method involves fine-tuning a RoBERTa-base model with a single linear regression head. Each ecological diary essay is processed independently to predict continuous Valence and Arousal scores.
In practice
- Apply RoBERTa-base for similar text-based emotion tasks.
- Use linear heads for continuous score prediction.
- Consider independent processing for distinct text units.
Topics
- SemEval-2026
- Emotional Valence
- Emotional Arousal
- RoBERTa-base
- Natural Language Processing
- Textual Emotion Prediction
- Linear Regression
Best for: Research Scientist, AI Scientist, NLP Engineer
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by Paper Index on ACL Anthology.