Different Teachers, Different Capabilities: Sub-1B On-Device Distillation for Structured Text Enrichment
Summary
A study investigates distilling an 8B reasoning teacher model (deepseek-r1:8b) into a 0.6B student model (Qwen3-0.6B) for high-volume structured text enrichment, specifically news article summarization and classification into JSON objects. The student model runs significantly faster (0.8 s/article vs. 39 s/article), reducing batch processing from 5.4 hours to ~7 minutes for 500 articles. Distillation recovers 58% of the summary quality gap, outperforming constrained decoding by +16.8 points and few-shot prompting by +4.9 points. This gain stems from the teacher's reasoning nature, not its scale. Capabilities split: reasoning teachers transfer writing quality, while a managed pipeline with synthetic data transfers label diversity. Faithfulness on short articles (<=1200 characters) remains a concern for reasoning-lineage students, which fabricate, unlike instruction teacher students. The study concludes with a per-field routing map, as no single engine wins every field.
Key takeaway
For MLOps Engineers deploying on-device structured text enrichment, you should implement a per-field routing strategy. Distill a reasoning teacher for summary quality, but route thin-source articles to a larger, more grounded engine to prevent fabrication. For categorical labels, consider few-shot prompting for difficult fields like "tone" where distillation underperforms. This approach optimizes performance and cost while mitigating specific quality risks.
Key insights
Distilling reasoning teachers into small models significantly boosts summary quality and speed for structured text enrichment.
Principles
- Teacher's reasoning nature, not scale, drives summary quality transfer.
- Capabilities split: reasoning for writing, synthetic data for label diversity.
- Aggregate metrics hide critical per-subtask performance differences.
Method
Distilled an 8B reasoning teacher (deepseek-r1:8b) into a 0.6B student (Qwen3-0.6B) using QLoRA for structured JSON output. Evaluated with a blinded, reference-free, three-judge panel.
In practice
- Route thin-source articles to larger, more grounded engines.
- Use seed-ensemble agreement as a per-item confidence flag.
- Employ few-shot prompting for specific, hard-to-distill labels like "tone".
Topics
- Knowledge Distillation
- On-Device LLMs
- Structured Text Enrichment
- Model Evaluation
- Reasoning Teachers
- Hallucination Mitigation
Best for: Research Scientist, AI Engineer, NLP Engineer, AI Scientist, Machine Learning Engineer, MLOps Engineer
Related on AIssential
See Counsel's argued verdicts on the open AI decisions leaders are weighing →
Editorial summary, takeaway, and curation by AIssential. Original article published by cs.AI updates on arXiv.org.