💡Use Cases
compressing a large model into a deployable small one, transferring knowledge on unlabeled data (teacher outputs as soft labels), and cross-architecture learning (LLM teacher to a smaller transformer); in LLM compression it is orthogonal to quantization — quantization cuts bit-width, distillation cuts model capacity, and the two stack.
⚡Key Problems Solved
when models are too large to deploy, distillation distills the teacher's generalization into the student at lower training cost than training from scratch, and soft labels retain inter-class similarity information that hard labels drop; together with quantization it forms two complementary compression axes.