Hope_Speech_Alchemists@DravidianLangTech 2026: TF-IDF SVM and XLM-RoBERTa with Focal Loss for Hope Speech Detection in Tulu
Summary
The Hope_Speech_Alchemists team submitted a system for hope speech detection in Tulu to the DravidianLangTech@ACL 2026 shared task. Their system addresses two sub-tasks: coarse-grained classification into four categories (Task 1) and fine-grained classification into five categories (Task 2). They compared a traditional TF-IDF + LinearSVC baseline against an XLM-RoBERTa model fine-tuned with minority-class oversampling and Focal Loss. Experiments showed a trade-off: XLM-RoBERTa achieved the best validation Macro-F1 of 0.57 on the coarse-grained task, but the TF-IDF baseline surpassed it on the smaller fine-grained task. This indicates that large pre-trained models may struggle with data scarcity. On the official test set, their system achieved a Macro-F1 of 0.55 for Task 1 and 0.40 for Task 2. The project code is publicly available.
Key takeaway
For NLP Engineers developing models for low-resource languages or fine-grained classification tasks, you should carefully evaluate traditional baselines like TF-IDF SVM. Your large pre-trained models, even with techniques like Focal Loss and oversampling, might struggle with data scarcity, as seen in the Tulu hope speech detection task. Consider starting with simpler models for smaller datasets before investing in complex transformer fine-tuning.
Key insights
Large pre-trained models may underperform simpler baselines on tasks with limited fine-grained data.
Principles
- Data scarcity impacts large model generalization.
- Simpler models can excel on small datasets.
- Focal Loss aids imbalanced classification.
Method
The system fine-tuned XLM-RoBERTa using minority-class oversampling and Focal Loss, comparing it against a TF-IDF + LinearSVC baseline for hope speech detection.
In practice
- Evaluate simpler models for low-resource language tasks.
- Apply Focal Loss for imbalanced classification problems.
- Consider data augmentation for fine-grained tasks.
Topics
- Hope Speech Detection
- Tulu Language
- XLM-RoBERTa
- TF-IDF SVM
- Low-Resource NLP
- Imbalanced Classification
Code references
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.