All Topics
All Topics
Technology
Technology
Design
Design
Programming
Programming
Science
Science
News
News
Gaming
Gaming
Entertainment
Entertainment
Business
Business
Finance
Finance
Sports
Sports
Health
Health
Food
Food
Travel
Travel
Art
Art
Music
Music
Books
Books
Education
Education
Politics
Politics
Personal
Personal
No algorithm. No AI slop. No ads. Just RSS. Pro-human. Indie writers. Real journalism. Open web. Chronological. Hand toasted.

Bridge-Garden Theory Explains Why Mixing Hard and Soft Labels Improves Knowledge Distillation for LLMs

By

[Submitted on 25 May 2026]

4d ago· 2 min readenInsight

Summary

This research paper investigates knowledge distillation (KD) for language models, specifically why mixing hard labels (sampled tokens) and soft labels (full token distributions) from a teacher model yields better student performance than using either alone. The authors find the improvement comes from reduced exposure bias, not closer teacher matching. They introduce the Bridge-Garden Decomposition theory, which categorizes generation steps into "Bridges" (where exact tokens are required) and "Gardens" (where flexibility is allowed). Hard-only KD works better for Bridges by avoiding risky deviations, while soft-only KD preserves diversity in Gardens. A hybrid strategy handles both cases, reducing exposure bias. The authors develop Bridge-Garden hybrid supervision methods that adaptively balance hard and soft labels, outperforming baselines across seven teacher-student model pairs (Qwen, Llama, Gemma, DeepSeek) on reasoning and coding benchmarks, while reducing training cost by 9.7x.

Key quotes

· 5 pulled
Despite soft labels appear strictly richer, we find that mixing hard and soft labels consistently yields better results.
Crucially, we show that this gain cannot be explained by closer teacher matching during training. Instead, it comes from reduced exposure bias, the mismatch between training and inference distributions.
We introduce the Bridge-Garden Decomposition theory, which categorizes generation steps into two types: Bridges, where the next token must be exact, and Gardens, where it can be flexible.
Hard-only KD excels in Bridges by avoiding risky deviations, while soft-only KD preserves diversity in Gardens.
Our approach outperforms divergence-based and on-policy KD baselines while reducing training cost by 9.7x, enabling efficient model compression.
Snippet from the RSS feed
Knowledge distillation (KD) transfers knowledge from a large teacher model to a smaller student. In language modeling, the student is trained either on tokens sampled from the teacher (hard labels) or the teacher's full next-token distribution (soft label

You might also wanna read