SG-UniBuc-NLP at SemEval-2026 Task 6: Multi-Head RoBERTa with Chunking for Long-Context Evasion Detection
Summary
SG-UniBuc-NLP developed a system for SemEval-2026 Task 6 (CLARITY: Unmasking Political Question Evasions), designed to classify English political interview responses. The system performs both coarse-grained clarity classification (3-way) and fine-grained evasion strategy classification (9-way). To overcome the 512-token limit of standard Transformer encoders for long responses, it employs an overlapping sliding-window chunking strategy with element-wise Max-Pooling aggregation. A shared RoBERTa-large encoder powers two task-specific heads, trained jointly using a multi-task objective. Inference-time ensembling is applied over 7-fold stratified cross-validation. The system achieved a Macro-F1 of 0.80 on Subtask 1 and 0.51 on Subtask 2, securing 11th place in both.
Key takeaway
For Machine Learning Engineers building long-context text classification systems, this approach offers a robust strategy. If your inputs frequently exceed standard Transformer token limits, you should consider implementing overlapping sliding-window chunking with Max-Pooling. Combining this with a shared encoder and multi-task learning for related classification objectives can significantly improve performance and model efficiency, as demonstrated by the 0.80 Macro-F1 on clarity detection.
Key insights
A multi-head RoBERTa system uses chunking and Max-Pooling to classify political question evasion in long contexts.
Principles
- Chunking handles long text sequences for Transformers.
- Multi-task learning improves related classification tasks.
- Ensembling boosts model robustness and performance.
Method
The system applies overlapping sliding-window chunking with element-wise Max-Pooling over chunk representations from a shared RoBERTa-large encoder, feeding two jointly trained task-specific heads.
In practice
- Implement overlapping chunking for long text inputs.
- Use multi-task learning for related NLP classification.
- Apply cross-validation ensembling for robust models.
Topics
- SemEval-2026
- Evasion Detection
- Long-Context NLP
- RoBERTa
- Multi-task Learning
- Text Chunking
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.