Team Habib Disambiguators at SemEval-2026 Task 5: Assessing Semantic Plausibility using Regularized Transformer Fine-Tuning
Summary
Team Habib Disambiguators developed a system for SemEval-2026 Task 5, which focuses on rating the plausibility of word senses in ambiguous sentences within short stories where narrative context resolves the ambiguity. Their approach models this as a regression problem, fine-tuning a DeBERTa-v3 transformer to predict the distribution of human judgments rather than a single hard label. To counter limited training data and potential overfitting, the system incorporates R-Drop (Consistency Regularization) for prediction stability and Layer-wise Learning Rate Decay (LLRD) to preserve pre-trained linguistic knowledge. This combination of soft-label distribution and aggressive regularization improved generalization, achieving a Spearman correlation of 0.56 and an Accuracy (within SD) of 0.74 on the official test set.
Key takeaway
For NLP Engineers developing systems for semantic plausibility or word sense disambiguation, consider modeling the problem as a regression task predicting soft-label distributions. You should integrate aggressive regularization techniques like R-Drop and Layer-wise Learning Rate Decay during transformer fine-tuning, especially when working with limited training data. This approach can significantly improve generalization and robustness in handling ambiguous contexts.
Key insights
Treating semantic plausibility as a soft-label distribution with aggressive regularization improves generalization.
Principles
- Soft-label distributions enhance generalization for ambiguous samples.
- Aggressive regularization combats limited training data and overfitting.
Method
Fine-tuning a DeBERTa-v3 transformer for regression, predicting human judgment distributions, and applying R-Drop and Layer-wise Learning Rate Decay.
In practice
- Apply R-Drop for prediction stability across dropout masks.
- Utilize LLRD to preserve pre-trained model knowledge.
Topics
- SemEval-2026 Task 5
- Semantic Plausibility
- Word Sense Disambiguation
- Transformer Fine-Tuning
- DeBERTa-v3
- R-Drop
- Layer-wise Learning Rate Decay
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.