Semantic Vectors at SemEval-2026 Task 9: Robust Multilingual Polarization Detection via Dual-Encoder Fusion and Expert Ensembling
Summary
The SEMANTIC VECTORS system, developed by Ankit Dash, Priyanshu Mittal, Piyush Prashant, and Sunil Saumya, addresses the POLAR@SemEval-2026 Task 9 for robust multilingual online polarization detection. This system operates across 22 typologically diverse languages, tackling the challenge of implicit rhetorical framing in cross-lingual contexts. It employs a Siamese dual-encoder architecture, jointly fine-tuning mDeBERTa-v3-base and XLM-ROBERTa-large using 4-bit QLoRA. This core model is then fused with language-specific expert models, including GBERT, Italian BERT, and Swahili BERT, via an XGBoost meta-stacker that incorporates per-language Platt calibration. The system utilizes focal loss as a hard-example miner to concentrate gradients on subtly framed instances, rather than lexically obvious ones, and applies per-language threshold optimization. This approach achieved a macro-F1 score of 0.797 and an accuracy of 0.827 across all 22 languages.
Key takeaway
For NLP Engineers developing robust multilingual classification systems, particularly for nuanced tasks like polarization detection, you should consider a hybrid architecture. Integrate a dual-encoder fine-tuned with 4-bit QLoRA for broad language coverage, then enhance it with language-specific expert models via a calibrated meta-stacker. This approach, combined with focal loss to prioritize subtle examples and per-language threshold optimization, can significantly improve macro-F1 and accuracy across diverse languages, addressing implicit rhetorical framing effectively.
Key insights
Robust multilingual polarization detection is achievable by fusing dual-encoder models with language-specific experts and optimizing for subtle framing.
Principles
- Implicit rhetorical framing complicates cross-lingual polarization detection.
- Focal loss functions as a hard-example miner for subtle instances.
Method
A Siamese dual-encoder (mDeBERTa-v3-base, XLM-ROBERTa-large via 4-bit QLoRA) is fused with language-specific BERTs using an XGBoost meta-stacker with Platt calibration, applying focal loss and per-language threshold optimization.
In practice
- Apply 4-bit QLoRA for efficient fine-tuning of large language models.
- Combine general multilingual models with language-specific expert models.
- Utilize focal loss to prioritize subtly framed examples over obvious ones.
Topics
- Multilingual Polarization Detection
- SemEval-2026
- Dual-Encoder Fusion
- QLoRA
- XGBoost
- Focal Loss
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.