Hari5115/hinglish-retail-intent-classifier
09
Hinglish Retail Intent Classifier
Fine-tuned version of google/muril-base-cased for classifying Indian ecommerce customer support messages (Hinglish) into 13 intent categories.
Performance
- Test accuracy: 97.6%
- Macro F1: 97.6%
Usage
from transformers import pipeline
classifier = pipeline(
"text-classification",
model="Hari5115/hinglish-retail-intent-classifier"
)
result = classifier("mera order kab aayega?")
print(result)
# [{'label': 'track_order', 'score': 0.96}]Intents supported
Training data
Trained on Hari5115/hinglish-retail-intent-dataset
Training config
- Base model:
google/muril-base-cased - Epochs: 5
- Learning rate: 2e-5
- Batch size: 16 (train), 32 (eval)
- Max sequence length: 128
- Best model selected by macro F1 on validation set
Limitations
- Synthetic data — may not capture all real-world linguistic variation
- Primarily Hindi-English mixing; does not cover Tamil-English, Telugu-English, or other Indian language combinations
- Skewed toward common intents; rare edge cases are underrepresented
