Views
No views yet
Loss = α · CE(student, teacher_response)
+ (1 − α) · T² · KL(teacher_top256 ∥ student)| Source | Examples | Task |
|---|---|---|
| NormAd (India/Pakistan/Bangladesh) | 97 | Cultural norm classification |
| MILU-en | 15 | Indian knowledge MCQ (English) |
| MILU-hi | 15 | Indian knowledge MCQ (Hindi) |
| BhED | 12 | Caste/religion stereotype reduction |
| GlobalOpinion | 12 | Indian survey opinion |
Pilot run with small dataset (151 unique examples, 33 optimizer steps). See full report in the indic-alignment repo.
| Metric | Baseline | Post-SFT | This model |
|---|---|---|---|
| NormAd best accuracy | 38.9% | 30.6% | 37.5% |
| BhED caste stereotype | 58.2% | 47.2% | 49.1% |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("amaljoe88/deepseek-r1-1.5b-indic-kl")
4tokenizer = AutoTokenizer.from_pretrained("amaljoe88/deepseek-r1-1.5b-indic-kl")