UMUTeam at SemEval-2026 Task 6: Soft-Voting Transformer Ensembles for Detecting and Classifying Response Ambiguity in Political Discourse
Summary
UMUTeam participated in the SemEval 2026 CLARITY shared task, specifically Task 1, which involves classifying response ambiguity in English political discourse. Their approach utilized a weighted soft-voting ensemble combining four fine-tuned encoder-only transformer models: RoBERTa-large, BERT-large-cased, DistilBERT-cased, and ModernBERT-large. Each model underwent optimization through grid search, and their predicted class probability distributions were linearly combined. On the official test set, the system achieved a macro-F1 score of 0.71, securing the 26th rank among 41 participating teams. This result indicates that a lightweight set of moderately sized encoder models can deliver stable and competitive performance for this challenging task, without requiring external data or large-scale architectures.
Key takeaway
For NLP Engineers developing systems to analyze political discourse, consider implementing weighted soft-voting ensembles of moderately sized transformer models. Your team can achieve competitive ambiguity classification performance, like the 0.71 macro-F1 score, without relying on extensive external data or large-scale architectures. This approach offers a stable and efficient solution, particularly if you face computational resource constraints or seek to minimize data dependency.
Key insights
A soft-voting ensemble of moderately sized transformer models can effectively classify political response ambiguity.
Principles
- Ensemble methods improve robustness in NLP classification.
- Smaller transformer models can achieve competitive results.
- External data is not always necessary for strong performance.
Method
Fine-tune four encoder-only transformer models (RoBERTa-large, BERT-large-cased, DistilBERT-cased, ModernBERT-large) via grid search, then aggregate their predicted class probability distributions using a weighted linear combination.
In practice
- Apply soft-voting ensembles for text classification tasks.
- Consider smaller BERT-family models for resource-constrained settings.
- Evaluate model performance using macro-F1 score for imbalanced classes.
Topics
- Political Discourse Analysis
- Response Ambiguity Classification
- Transformer Ensembles
- Soft-Voting
- SemEval 2026
- Encoder-Only Models
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.