CoPol at SemEval-2026 Task 9: Modeling Polarization Type Co-occurrence with Label Correlation Networks
Summary
The POLAR-LDA system, developed for SemEval-2026 Task 9 on multi-label polarization type classification, integrates an mDeBERTa-v3-base encoder with a Label Correlation Network (LCN) utilizing language-specific directed co-occurrence matrices and a Graph Attention Network (GAT). It also employs Asymmetric Loss (ASL) tuned for extreme positive scarcity and a language-grouped ensemble. Achieving a 0.567 macro F1 across 22 languages, with scores ranging from 0.784 in Hindi to 0.256 in Italian, the system demonstrated significant ablation gains: ASL contributed +0.041, LCN +0.030, and the ensemble +0.018. Key findings highlight that absolute data voids (0–1 positive examples) establish an unrecoverable floor for supervised learning, and label co-occurrence patterns are culturally situated, benefiting from language-specific graphs. Furthermore, per-label training volume proved a better predictor of cross-lingual performance than linguistic family.
Key takeaway
For NLP Engineers developing multi-label classification systems, particularly in multi-lingual or low-resource contexts, you should integrate language-specific label correlation networks and Asymmetric Loss. This approach significantly improves performance, as demonstrated by POLAR-LDA's +0.030 F1 gain from LCN and +0.041 from ASL. Be aware that absolute data voids (0–1 positive examples) represent an unrecoverable floor for supervised learning, necessitating alternative strategies for extremely rare labels. Your cross-lingual performance will likely correlate more with per-label training volume than linguistic family.
Key insights
POLAR-LDA models multi-label polarization using language-specific label correlation networks and specialized loss, highlighting data scarcity and cultural co-occurrence.
Principles
- Absolute data voids set an unrecoverable floor for supervised learning.
- Label co-occurrence is culturally situated; language-specific graphs improve modeling.
- Per-label training volume predicts cross-lingual performance better than linguistic family.
Method
Augment an mDeBERTa-v3-base encoder with a Label Correlation Network (language-specific co-occurrence matrices + GAT), Asymmetric Loss, and a language-grouped ensemble for multi-label classification.
In practice
- Use language-specific label correlation graphs for multi-lingual tasks.
- Employ Asymmetric Loss for datasets with extreme positive label scarcity.
- Recognize data voids as a fundamental limit for supervised learning.
Topics
- Multi-label Classification
- Polarization Detection
- Label Correlation Networks
- Graph Attention Networks
- Asymmetric Loss
- Multi-lingual NLP
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.