Is it even possible for the Chinese Labs to distill US models?

gk11 pts0 comments

Is it even possible for the Chinese Labs to distill US models?

Complete Skeptic

SubscribeSign in

Is it even possible for the Chinese Labs to distill US models?<br>TL;DR: yes, but how it works is unintuitive!

Diogo<br>Jul 24, 2026

Share

Everyone is arguing whether Kimi K3 distilled Anthropic. This whole conversation involves a horrible abuse of the term “distillation” which has come to mean almost anything the speaker wants it to mean.

The white house claiming that Moonshot AI distilled

RLHF researcher claiming that isn’t how distillation works<br>I’m an AI researcher who’s ex-OpenAI, I was a co-author on the original RLHF paper that led to ChatGPT. I know what I’m talking about. So here’s how to actually understand the distillation debate, because it’s way more complicated than the government is trying to make it seem.<br>What do people mean by distillation?

There actually are multiple techniques here that often get mixed up for each other. But here are the three types of distillation, in order of how powerful they are.<br>1: Logit Distillation

This is what was originally meant by distillation. Most people (not Schmidhuber) would consider the original distillation paper as Hinton et al. There they show that models can be trained much more efficiently given a teacher’s raw outputs (“logits” - basically probabilities of each next token), which started the trend of using the technique to more efficiently train mostly smaller models given large teachers.<br>When people say that all the labs distill models, this is what they mean. Anthropic for example likely distilled Opus from training on Mythos logits, trying to get Opus’ logits to match Mythos’ logits as closely as possible.<br>But when talking about cross-lab distillation, no one refers to logit distillation. This is because logits aren’t returned via frontier APIs anymore (they used to be!), although it would be possible to do logit distillation on an open weight model. Obviously, if we’re accusing the Chinese of doing distillation, it’s not classic distillation, because they don’t have access to logits.<br>2: Behavior Cloning

Instead of learning the raw logits, one can instead learn to replicate output tokens from a teacher. It’s not as informative as distilling from logits, but is similar in expectation and most importantly, you can do it from the outputs of an API.<br>Supervised Fine-tuning (SFT), the first phase of most post-training algorithms, is equivalent to this, and it’s also commonly referred to as Imitation Learning.<br>When referring to cross-lab distillation, people almost always refer to behavior cloning, but importantly, this is not possible with today’s frontier reasoning models because reasoning models don’t return their full outputs! They show abridged reasoning traces which are just summaries, specifically to make behavior cloning less effective. The thinking goes, if you can’t see the actual steps the model took to reason and instead just see some “chicken scratch” and the final answer, you won’t be able to re-derive that yourself.<br>Distillation had been a big issue long before today, and the big labs have known this for a while, which is why when reasoning models were created, they chose not to share the reasoning traces with users and instead showed a summary. This allows for the model to do hidden work before outputting a final response, and this was supposed to prevent distillation - hence all the discussion about how distillation may not be possible (including from myself).

From OpenAI’s o1 launch announcement in 2024<br>3: Behavior Parroting

Instead, I want to talk about what I call “behavior parroting” - mimicking the outputs of privileged work - and whether or not this can be used to train frontier models.<br>Note: past work (Chen et al.) has called the no-chain-of-thought version of this “Only Answer” training, though it was mostly negative results on small models.<br>Can Behavior Parroting work?

The case against behavior parroting: Hallucination

Intuitively, it doesn’t look like it should work. If you make a smart model do a lot of work in secret, then copy its outputs, the student doesn’t learn to mimic that work, it just learns to make plausible looking outputs. Hence, hallucination.<br>Case for behavior parroting #1: Style Transfer

Point 1.1: most of instruction following is style

This was a very bitter pill to swallow when first teaching models to follow instructions, but it’s unfortunately the simplest best explanation for a lot of the phenomena we’ve observed. One of the most surprising results here was in Hewitt et al. where training on only outputs without instructions closed most of the gap with fully trained RLHFed models. (Sounds familiar?)

Source<br>Point 1.2: most of reasoning is style too

There is fairly strong evidence that this applies to reasoning models as well.<br>Reasoning models work almost as well when trained on reasoning traces that lead to incorrect answers. [source1] [source2]<br>Point 1.3: there seems to be transfer between...

distillation models reasoning logits behavior work

Related Articles