MUCS@Dravidianlangtech@ACL2026: Hope Speech Detection in Code-Mixed Tulu Language Using Multiple Features
Summary
Team MUCS developed a system for hope speech detection in code-mixed Tulu, a low-resource language, for the DravidianLangTech@ACL 2026 shared task. Without pretrained language models for Tulu, the system uses multiple hand-crafted features. These include word n-grams (n=1, 3), character n-grams (n=1, 3), syllable n-grams (n=1, 3), and sub-words. These features train two ensembles of classical Machine Learning models. One ensemble combines Multinomial Naive Bayes (MNB) and Logistic Regression (LR) classifiers. The second pairs k Nearest Neighbor (kNN) and Decision Tree (DT) classifiers; both ensembles use soft-voting. Experimental results show feature integration effectively captures lexical, sub-lexical, and phonological cues in noisy code-mixed text. The system achieved competitive performance on development and test datasets. An ablation study also evaluated feature set contributions.
Key takeaway
For NLP Engineers developing solutions for low-resource languages like Tulu, where pretrained models are unavailable, you should prioritize robust feature engineering. Focus on hand-crafted features such as word, character, and syllable n-grams, alongside sub-words. These effectively capture linguistic nuances in code-mixed text. Consider implementing ensemble classical Machine Learning models with soft-voting, like MNB/LR or kNN/DT combinations, to achieve competitive performance. This approach offers a viable path for building effective language processing systems in data-scarce environments.
Key insights
Feature-based ML ensembles effectively detect hope speech in low-resource, code-mixed languages without pretrained models.
Principles
- Feature engineering is crucial for low-resource NLP.
- Ensemble methods enhance classification robustness.
- Sub-lexical cues aid noisy text analysis.
Method
The proposed system uses word, character, syllable n-grams (n=1, 3), and sub-words as features. These train soft-voting ensembles of MNB/LR and kNN/DT classifiers for hope speech detection.
In practice
- Use n-grams for code-mixed text.
- Combine MNB/LR for robust classification.
- Explore ablation studies for feature impact.
Topics
- Hope Speech Detection
- Code-Mixed Language
- Tulu Language
- Low-Resource NLP
- Feature Engineering
- Ensemble Machine Learning
- N-grams
Best for: AI Scientist, NLP Engineer, Research Scientist
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by Paper Index on ACL Anthology.