SG-UniBuc-NLP at SemEval-2026 Task 6: Multi-Head RoBERTa with Chunking for Long-Context Evasion Detection

· Source: Paper Index on ACL Anthology · Field: Technology & Digital — Artificial Intelligence & Machine Learning, Data Science & Analytics · Depth: Expert, quick

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

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

Topics

Best for: Research Scientist, AI Scientist, Machine Learning Engineer, NLP Engineer

Related on AIssential

Open in AIssential →

Editorial summary, takeaway, and curation by AIssential. Original article published by Paper Index on ACL Anthology.