Views
No views yet
zagreus-0.4B-ita → SFT on Italian instruction data → on-policy distillation from nesso-3B — but with every ITALIC near-duplicate removed from the distillation pool (semantic similarity ≥ 0.80 to any ITALIC question, 9,127 rows dropped).| Model | fast |
|---|---|
| SFT only (no distillation) | 13.1 |
| zagreus-competition-italic-sft-opd (contaminated pool) | 34.29 |
| this model (decontaminated pool) | 34.18 |
| Coloss/nesso-3B (teacher ceiling) | 50.71 |
mii-llm/zagreus-0.4B-ita weights + nesso-3B chat template (so the distillation token bridge is the identity).DeepMount00/OpenItalianData, lr 1e-3 (palingenesis pgs train).nesso-3B on the decontaminated, teacher-correct-filtered pool, 1,800 steps (pgs distill).efederici/pinocchio (config text). Exact-hash dedup misses reworded questions; a semantic (paraphrase-multilingual) + option/content matcher finds them. Full method, scripts, and clean-rerun proof: experiment repo.1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3tok = AutoTokenizer.from_pretrained("giux78/zagreus-competition-italic-sft-opd-decontaminated")
4model = AutoModelForCausalLM.from_pretrained("giux78/zagreus-competition-italic-sft-opd-decontaminated", dtype="bfloat16")
5# ITALIC-style: greedy, max_new_tokens=8 (answers with the bare option letter)