The AI distillation technique and why teams use it

Two people comparing a proposal on a laptop at an office desk
TL;DR

Distillation is a training technique where a large teacher model teaches a smaller student model to imitate it, retaining around 90 to 97 per cent of capability at a fraction of the cost and latency. Teams use it because it makes capable AI affordable to run at scale. For an owner-managed business, it is the engineering behind subscription-priced AI tools, and a useful word to look for in vendor documentation.

Key takeaways

- Distillation trains a smaller student model to imitate a larger teacher, keeping around 90 to 97 per cent of the capability at a fraction of the running cost. - DistilBERT, the best-known example, cut model size by 40 per cent and ran 60 per cent faster while retaining 97 per cent of BERT's language understanding. - Owner-managed businesses meet distillation inside the tools they buy, because vendors such as Amazon use it to keep AI features fast and affordable at subscription prices. - Distilled models inherit their teacher's flaws and can fail badly on multi-step reasoning, so testing and human oversight still apply. - Under ICO guidance the deploying firm remains accountable for AI-assisted decisions whether the model is distilled or not.

A vendor pitches you an AI assistant for your client enquiries. The demo looks close to ChatGPT quality, yet the subscription is £80 a month, a fraction of what running a frontier model at that volume ought to cost. Somewhere in the technical documentation you spot the word “distilled” and wonder whether you are being sold a watered-down version. You are usually being sold the opposite, and it is worth understanding why.

What is the AI distillation technique?

Distillation is a training method where a large, expensive AI model, called the teacher, trains a smaller model, called the student, to imitate its behaviour. The student learns from the teacher’s outputs rather than from raw data alone, so it captures much of the teacher’s capability in a fraction of the size, cost and running time.

The idea dates to 2015, when Geoffrey Hinton and colleagues showed that a small neural network trained on the probability outputs of a large one learns more than it would from the original data. The large model’s outputs carry useful nuance, including which wrong answers are nearly right, and that softer signal helps the student learn efficiently.

The best-known demonstration is DistilBERT, a compressed version of Google’s BERT language model. Its authors report a model 40 per cent smaller than the original that retains 97 per cent of its language understanding and runs about 60 per cent faster. Smaller, nearly as capable and faster is the whole value proposition in one result.

Why does distillation matter for your business?

Distillation is the main reason capable AI now fits owner-managed business budgets. Running a large language model at scale can cost millions of pounds a year in infrastructure, according to UK government guidance. A distilled model can deliver around 90 to 97 per cent of the capability for a fraction of the cost, which is what lets vendors sell near-frontier tools at subscription prices.

Speed matters as much as money. An assistant that helps staff draft replies is only useful if suggestions arrive within a second or two, and a model with fewer parameters responds faster on the same hardware. IBM notes that distilled models are often ten to twenty times smaller than their teachers while giving up little of the original performance.

Vendors depend on this. Amazon reports that its Bedrock service uses distillation to move function calling, the ability of a model to trigger tools such as a CRM update, from large teachers into smaller students, keeping accuracy comparable while cutting cost and response time. Features like that are what make AI agents viable at mid-tier price points rather than enterprise ones.

Where will you actually meet distillation?

You will meet distillation inside the tools you already buy rather than as a project you run yourself. Vendors distil frontier capability into smaller models so their products stay fast and profitable at subscription prices. It also appears in on-device AI features, in tools that run on your own servers, and in the smaller open models consultancies deploy for clients.

The practical question for a buyer is how a vendor keeps its models efficient. A product that calls a frontier model for every query is exposed to that provider’s pricing, and rises get passed on. A vendor that has distilled the capability it needs into smaller models is better placed to hold its subscription price as your usage grows. Words like distilled, compressed or efficient in technical documentation are a good sign, and worth a direct question on a sales call.

There is a data protection angle too. A distilled model is small enough to run on infrastructure you control, a UK-hosted cloud instance or even a decent laptop, which means client data need not leave your environment. The ICO’s guidance on AI expects organisations to manage where personal data flows and to explain AI-assisted decisions, and keeping the model close makes both easier.

A lighter version sits within reach of a data-savvy team. You can ask a frontier model to label a few hundred emails or case notes by category and urgency, then train a simple classifier on those labels. The large model’s judgement gets distilled into a small one that runs cheaply, while the frontier model never touches live client data.

When should you ask about distillation, and when can you ignore it?

Ask about distillation when query volume is high, response speed matters, or confidential data needs to stay on infrastructure you control. Ignore it when you are experimenting at low volume with hosted tools such as Copilot or ChatGPT, where policies and staff training matter far more than the model architecture underneath.

The limits are real. One distilled chat model of 1.1 billion parameters scores respectably on commonsense benchmarks but drops to low single-digit accuracy on multi-step maths problems, far below its teacher. If the task is financial projection or compliance calculation, a small distilled model is the wrong tool, and the frontier model should stay in the loop.

Students also inherit their teachers’ flaws. A 2024 survey of distillation for large language models notes that biases and hallucination habits transfer from teacher to student, sometimes in less visible forms. Whoever deploys the model remains accountable for its behaviour under UK GDPR, so a distilled model needs the same testing and human oversight as any other.

And building a distillation pipeline yourself is genuine machine learning work. Government guidance on model distillation is blunt that it requires expertise and infrastructure many organisations do not have, and that a managed tool is often the more realistic route. For a firm of five to fifty people, buying tools built on distilled models beats building them almost every time.

Distillation sits in a family of techniques for making AI cheaper and more controllable. Fine-tuning adjusts a model directly on your own labelled data. Small language models are compact models, often produced through distillation, that run on modest hardware. Edge deployment puts those models on local devices, and quantisation shrinks them further by reducing numerical precision.

The nearest neighbour is fine-tuning, and the choice between them turns on data. If you already hold thousands of well-labelled examples, tuning an existing model directly on them can be simpler than involving a teacher. When labels are scarce, and in an owner-managed business they usually are, distillation earns its keep because the teacher generates the training signal for you. Teams often combine the two, distilling first and then fine-tuning the student on whatever labelled data exists.

Regulation is the other neighbour worth knowing. The Alan Turing Institute points out that rules aimed at foundation models may not automatically cover every distilled variant, which can shift responsibility onto whoever deploys one. The NCSC’s secure AI development guidelines add a supply-chain point. Check the provenance of any model you download, distilled or otherwise, before it touches your data.

None of this asks you to implement a training loop. The Monday move is smaller. When a vendor pitches an AI tool, ask how they keep their models efficient and what happens to their pricing if frontier API costs rise. When the documentation mentions a distilled model, read it as engineering maturity rather than a shortcut. The firms getting durable value from AI at this scale are already running on distilled models, whether they know the word or not.

Sources

- Hinton, G., Vinyals, O. and Dean, J. (2015). Distilling the Knowledge in a Neural Network. The paper that introduced the teacher-student distillation technique. https://arxiv.org/abs/1503.02531 - Sanh, V. et al. (2019). DistilBERT, a distilled version of BERT. Reports 40 per cent size reduction, 97 per cent capability retention and 60 per cent faster inference. https://arxiv.org/abs/1910.01108 - Xu, X. et al. (2024). A Survey on Knowledge Distillation of Large Language Models. Covers capability transfer, compression and the risk of students inheriting teacher biases. https://arxiv.org/abs/2402.13116 - Department for Science, Innovation and Technology (2025). AI Insights: Model Distillation. Plain-language UK government guidance covering cost comparisons and the expertise required to build pipelines. https://www.gov.uk/government/publications/ai-insights/ai-insights-model-distillation-html - Information Commissioner's Office (2023). Guidance on AI and data protection. Accountability, explainability and data-flow expectations for organisations deploying AI. https://ico.org.uk/for-organisations/uk-gdpr-guidance-and-resources/artificial-intelligence/ - National Cyber Security Centre (2023). Guidelines for secure AI system development. Supply-chain and model-provenance advice for any model an organisation deploys. https://www.ncsc.gov.uk/collection/guidelines-secure-ai-system-development - The Alan Turing Institute (2023). How to regulate foundation models. On how obligations aimed at foundation models may fall to deployers of derived models. https://www.turing.ac.uk/research/interest-groups/fairness-transparency-privacy/how-to-regulate-foundation-models - Amazon Web Services (2025). Amazon Bedrock model distillation for function calling at lower cost and latency. Named vendor example of distilling capability into smaller production models. https://aws.amazon.com/blogs/machine-learning/amazon-bedrock-model-distillation-boost-function-calling-accuracy-while-reducing-cost-and-latency/ - IBM (2024). What is knowledge distillation? Overview of typical size reductions and performance retention in distilled models. https://www.ibm.com/think/topics/knowledge-distillation - Hugging Face (2024). DistiLabelOrca-TinyLlama-1.1B model card. Benchmark scores showing a distilled 1.1 billion parameter model's weakness on multi-step maths. https://huggingface.co/eren23/DistiLabelOrca-TinyLLama-1.1B

Frequently asked questions

Is a distilled AI model a lower-quality version of the original?

The quality trade-off is real but far narrower than the word suggests. DistilBERT retained 97 per cent of its teacher's language understanding while being 40 per cent smaller and about 60 per cent faster. The gap shows up in specific places such as multi-step maths, where small distilled models can drop to low single-digit accuracy. For drafting, classifying and summarising, the difference is often too small to justify paying for the full-size model.

Do I need to build distillation myself to benefit from it?

No. Almost every owner-managed business meets distillation inside tools it buys, because vendors distil frontier capability into smaller models to keep products fast and profitable. UK government guidance is clear that building distillation pipelines needs machine learning expertise and infrastructure many organisations lack. A lighter version is within reach of a data-savvy team, using a frontier model to label examples and training a simple classifier on the result.

Does using a distilled model change my data protection duties?

Your duties stay the same. ICO guidance holds the deploying organisation accountable for AI-assisted decisions regardless of how the model was built, so a distilled model needs the same lawful basis, testing and human oversight as any other. What distillation changes is your options. A model small enough to run on infrastructure you control can keep client data inside your environment, which makes several ICO expectations easier to meet.

This post is general information and education only, not legal, regulatory, financial, or other professional advice. Regulations evolve, fee benchmarks shift, and every situation is different, so please take qualified professional advice before acting on anything you read here. See the Terms of Use for the full position.

Ready to talk it through?

Book a free 30 minute conversation. No pitch, no pressure, just a useful chat about where AI fits in your business.

Book a conversation

Related reading

If any of this sounds familiar, let's talk.

The next step is a conversation. No pitch, no pressure. Just an honest discussion about where you are and whether I can help.

Book a conversation