PFW at SemEval-2026 Task 6: Multi-Seed DeBERTa Ensembles for Political Response Clarity and Evasion Classification
Summary
The PFW system, developed for SemEval-2026 Task 6 (CLARITY), addresses the classification of political response clarity and evasion techniques in interview question-answer pairs. Eschewing large language model prompting, the system employs a non-LLM approach by fine-tuning DeBERTa-xlarge and DeBERTa-v3-large models. A multi-seed ensemble strategy is utilized, involving 5-fold cross-validation with 10 random seeds to generate 50 models per architecture, combined via simple logit averaging. The system achieved a macro F1 of 0.76 on Subtask 1 (clarity-level classification) and 0.50 on Subtask 2 (evasion-type classification). Interestingly, three post-hoc optimization techniques—learned ensemble weights, threshold calibration, and hierarchical masking—improved out-of-fold performance but degraded evaluation scores by 0.02–0.10 F1. This suggests an "optimization paradox" due to potential overfitting on a limited 237-sample evaluation set.
Key takeaway
For Machine Learning Engineers developing text classification systems for nuanced political discourse, you should consider multi-seed DeBERTa ensembles as a competitive non-LLM alternative. While these ensembles achieve strong baseline performance, be cautious with post-hoc optimizations like learned weights or threshold calibration. Your efforts to fine-tune on small evaluation sets (e.g., 237 samples) risk an "optimization paradox," where improvements on validation data degrade actual evaluation scores due to overfitting. Prioritize robust model generalization over marginal gains from late-stage tweaks.
Key insights
Multi-seed DeBERTa ensembles offer competitive non-LLM performance for political response classification, but small evaluation sets risk optimization paradoxes.
Principles
- Ensembling multiple models with varied initializations improves robustness.
- Limited evaluation data can lead to overfitting during post-hoc optimization.
- Non-LLM approaches remain competitive for specific NLP classification tasks.
Method
Fine-tune DeBERTa-xlarge and DeBERTa-v3-large using 5-fold cross-validation with 10 random seeds per fold, then combine 50 models per architecture via simple logit averaging.
In practice
- Utilize DeBERTa-xlarge and DeBERTa-v3-large for text classification.
- Implement multi-seed ensembling for robust model training.
- Be cautious applying post-hoc optimizations with small evaluation sets.
Topics
- Political Response Classification
- DeBERTa Ensembles
- Multi-Seed Training
- SemEval-2026
- Overfitting
- Natural Language Processing
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.