Binary Token-Level Classification with DeBERTa for All-Type MWE Identification: A Lightweight Approach with Linguistic Enhancement
Diego Rossini, Lonneke van der Plas
TL;DR
This work reframes all-type MWE identification as binary token-level START/END/INSIDE classification, implemented on a DeBERTa-v3-large backbone augmented with NP chunking and dependency-path features. By converting span annotations to token-level labels and reconstructing MWE spans with learned thresholds, the approach achieves a runtime-linear complexity $O(n)$ versus $O(n^2)$ for span enumeration, enabling efficient reasoning over long sequences. Across CoAM and STREUSLE, the method delivers state-of-the-art F1 scores (notably 69.8% on CoAM and 78.9% on STREUSLE) while using dramatically fewer parameters than large LLMs, and shows particular strength in discontinuous MWEs when combined with linguistic cues and data augmentation. The results highlight that carefully designed smaller models with targeted linguistic information can surpass massive LLMs on structured NLP tasks and offer practical benefits for resource-constrained deployments, albeit with limitations in dataset scale, language coverage, and typed MWE categorization.
Abstract
We present a comprehensive approach for multiword expression (MWE) identification that combines binary token-level classification, linguistic feature integration, and data augmentation. Our DeBERTa-v3-large model achieves 69.8% F1 on the CoAM dataset, surpassing the best results (Qwen-72B, 57.8% F1) on this dataset by 12 points while using 165x fewer parameters. We achieve this performance by (1) reformulating detection as binary token-level START/END/INSIDE classification rather than span-based prediction, (2) incorporating NP chunking and dependency features that help discontinuous and NOUN-type MWEs identification, and (3) applying oversampling that addresses severe class imbalance in the training data. We confirm the generalization of our method on the STREUSLE dataset, achieving 78.9% F1. These results demonstrate that carefully designed smaller models can substantially outperform LLMs on structured NLP tasks, with important implications for resource-constrained deployments.
