Skip to main content

Envisioning is an emerging technology research institute and advisory.

LinkedInInstagramGitHub

Since 2010

research
  • Observatory
  • Adaptive capacity
  • Newsletter
  • Methodology
  • Origins
  • Vocab
  • RSS feeds
services
  • Signals Session
  • Bespoke Projects
  • Build Sessions
  • Pricing
  • Use cases
  • Signals
  • Signal Scan↗free
impact
  • ANBIMAFuture of Brazilian Capital Markets
  • IEEECharting the Energy Transition
  • Horizon 2045Future of Human and Planetary Security
  • WKOTechnology Scanning for Austria
solutions
  • Innovation
  • Strategy
  • Consultants
  • Foresight
  • Associations
  • Governments
  • L&D
resources
  • Partners
  • Coding for Non-Coders
  • How we work
  • Data visualization
  • Multi-Model Convergence
  • FAQ
  • Security and privacy
  • Public sector
about
  • Manifesto
  • Community
  • Events
  • Support
  • Contact
ResearchCapabilityServicesSignalsAbout
ResearchCapabilityServicesSignalsAbout
  1. Home
  2. Vocab
  3. Distillation

Distillation

Compressing a large teacher model's knowledge into a smaller, efficient student model.

Year: 2015Generality: 792
Back to Vocab

Knowledge distillation is a model compression technique in which a compact "student" model is trained to replicate the behavior of a larger, more capable "teacher" model. Rather than training the student solely on ground-truth labels, distillation uses the teacher's output probability distributions, often called soft labels, which encode information about class relationships and model uncertainty. For example, a teacher classifying an image of a cat might assign small but nonzero probabilities to related categories like "lynx" or "tiger," and these inter-class similarities provide a richer training signal than a one-hot label.

The mechanics of distillation typically involve minimizing a combination of two losses: a standard cross-entropy loss against the true labels, and a divergence loss (often KL divergence) between the student's and teacher's output distributions, computed at a raised "temperature" that softens the probability peaks and amplifies the structure in the teacher's predictions. More advanced variants extend this idea beyond output logits, matching intermediate feature representations, attention maps, or relational structures between data points. These approaches are collectively known as feature-based or relation-based distillation.

Distillation matters in practical deployment. Large models like GPT-scale transformers or ResNet-family vision networks deliver strong performance but are expensive to run at inference time. Distillation offers a path to shrinking these models for use on mobile devices, embedded systems, or latency-sensitive APIs without retraining from scratch on limited data. Notable real-world examples include DistilBERT, which retains roughly 97% of BERT's language understanding performance at 40% fewer parameters, and TinyBERT, which applies distillation at multiple layers for greater compression.

Beyond compression, distillation has found broader applications: it is used in ensemble learning to merge multiple models into one, in semi-supervised learning to propagate knowledge from labeled to unlabeled data, and increasingly in reinforcement learning and generative modeling. Its range of uses has made it one of the most widely adopted techniques in modern machine learning pipelines.

Sources

  1. Distilling the Knowledge in a Neural Network

    arXiv · Jan 1, 2015

Research this in Signals

Scan Distillation for yourself.

Signals turns a topic into a sourced research record you can inspect and rerun. Your first scan is free, and this one starts with Distillation already loaded, so edit it or scan as is.

Related

Related

Model Distillation
Model Distillation

A compression technique that trains a small student model to mimic a larger teacher model.

2015Generality: 713
Distillation Tax
Distillation Tax

Performance ceiling when training smaller models from larger model outputs

2024Generality: 519Added: Apr 1, 2026
Teacher Model
Teacher Model

A large, pre-trained model that transfers knowledge to a smaller student model.

2015Generality: 620
TAID (Temporally Adaptive Interpolated Distillation)
TAID (Temporally Adaptive Interpolated Distillation)

A distillation technique that aligns teacher and student models across differing temporal resolutions.

2022Generality: 380
Model Compression
Model Compression

Techniques that shrink machine learning models while preserving predictive accuracy.

2006Generality: 795
Teacher Committee
Teacher Committee

An ensemble of expert models that jointly guide a student model's training.

2015Generality: 520