Special Topic · Open Weights, Distillation & Local Runs

The Cost of Distillation: Models Are Getting More Alike

Verbal tics, formatting quirks, and identity confusion inherited wholesale; why multi-model cross-validation may be fake

THE QUESTION THIS PAGE ANSWERS

ANSWER FIRST

What is the key idea behind “The Cost of Distillation: Models Are Getting More Alike”?

Verbal tics, formatting quirks, and identity confusion inherited wholesale; why multi-model cross-validation may be fake

DECISION RULE

Make the claim earn its place. Use this page as a decision aid, not a definition to memorize. Connect the idea to one real task, one observable result, and one failure that would change your mind.

TRY NEXT

Write one question you could answer with evidence after trying this idea.

WATCH FOR

A conclusion that sounds complete but leaves the key assumption untested.

Start with What the Research Says
Generative Monoculture in Large Language Models
Wu & Black · arXiv:2407.02209 · 2024
The study found that once multiple models are distilled from the same base, output diversity drops sharply. On tasks that should have many reasonable answers, such as writing book reviews or generating code, different models converge on strikingly similar results. The authors describe this state as a monoculture.
Measuring and Understanding LLM Identity Confusion
Xu et al. · arXiv:2411.10683 · 2024-11
The study covered 27 models and found that 25.93% of them show identity confusion: asked "who are you," they wrongly claim to be a different model. The authors also point out that this kind of error damages user trust more than an ordinary logical mistake does.
Both papers are publicly searchable on arXiv under the IDs above. Verified 2026-08-07.
The Disputes Already Public in the Industry

There is no consensus yet on whether distilling someone else's model crosses a line, but public accusations have already been made.

Anthropic has publicly stated that it found a vendor distilling Claude at "industrial scale." OpenAI has also accused DeepSeek of acquiring capability by distilling the GPT series. These are all one-sided accusations; the accused parties have not admitted them, and no third party has issued any ruling. They are here to make one point: the boundaries in this field are still taking shape. Most vendors' terms of service prohibit using their output to train a competing product, but proving it technically is very hard.

Based on Anthropic's public statements and reporting by Reuters and other outlets. This only states that the dispute exists; it makes no factual finding about the accusations themselves. Verified 2026-08-07.
Three Symptoms You Can Observe Yourself
Symptom 1

Verbal tics inherited wholesale

Certain sentence patterns show up at high frequency in one leading model, then start appearing across a great many models at once, until they become the fingerprint people use to identify AI writing.

Typical patterns "This is not just a technical problem, it is also a product problem"
"Let's dive deeper into this topic"
"It's worth noting that there are several key points here"
Symptom 2

Formatting quirks inherited too

Some models habitually attach an English gloss to nouns when writing Chinese, and the models trained on them write the same way, even when nothing about the context calls for it.

Typical output "This concept (Concept) is extremely important; we need to pay attention to performance (Performance) and safety (Safety)"
Symptom 3

Even the identity gets learned

The most blatant kind. Ask a model who it is, and the name it reports may be the teacher's.

Dialogue User: Which model are you?
Model: I am ChatGPT, developed by OpenAI… (when it is in fact another company's product)
These are not bugs. They are the inevitable outcome of distillation. The training data is the teacher's output, so the student speaks the way the teacher speaks. You cannot inherit the capability without the habits, because in the training data the two simply cannot be separated.
The More Concentrated the Ecosystem, the Worse This Gets

Earlier in this chapter we noted that one open-source family already has more than 200,000 derivative models. From an ecosystem standpoint that is proof of influence, but seen from another angle, it also means 200,000 models share the same set of underlying assumptions.

Biases, knowledge blind spots, and stylistic tendencies inside the base model pass down the distillation chain layer by layer. Change one training strategy upstream and tens of thousands of downstream models change with it. This structure has a familiar name in software engineering: a single point of dependency.

The most direct product impact: multi-model cross-validation may be fake. Plenty of teams call two or three models from different vendors at the same time and have them check each other to cut the error rate. That approach only holds up if they make different mistakes. If the lineage of these models traces back to the same teacher, they will likely go wrong in the same place together, and go wrong in exactly the same way. What cross-validation gives you then is not safety — it is a false sense of safety.

That sounds alarmist until you try it once yourself. The six products below are made up — the names, the companies and the marketing are all invented, so do not go looking for them, you will not find them. They are invented so that you first pick the way you normally would: when you are actually choosing a model, all you have in front of you are names and marketing claims too. The base model is not printed on the product page.

To say it once more: all six products and companies above are fictional. They do not exist, so do not search for them. Only the names are invented — the concentration of base models is real. The figure of 200,000 derivative models comes from Hugging Face platform statistics, with the source and verification date given in lesson 3; the fact that four of DeepSeek-R1's six distilled versions use a Qwen2.5 base and two use Llama3 is stated in the official model cards, and lesson 6 lists all six. Which base a real product is built on is usually not printed on its product page, which is exactly why this is hard to check and easy to overlook.
What You Can Do
1

Check the lineage when you select a model

The model card usually states what the base is. When you design multi-model redundancy, favor combinations built on different bases, rather than just different vendor names.

2

Do not build product differentiation at the model layer

If your competitive edge is "our answers are better," and everyone is using models with closely related lineage, that edge is not solid. Real differentiation usually comes from data, workflow, and understanding of the use case.

3

Treat verbal tics as something you have to manage

If your product has brand-voice requirements, the default output will most likely carry the upstream model's stylistic habits. Fixing that takes prompt constraints and post-processing; expecting a different model to solve it usually does not work, because they all behave this way.

The first half of this chapter laid out what open source means, how models get smaller, and where the costs land. The next two lessons are hands-on: first work out how large a model your machine can run, then actually get it running.

Put “Start with What the Research Says” back into its constraints

“There is no consensus yet on whether distilling someone else's model crosses a line, but public accusations have already been made” shows that a model, license, access route, or leaderboard is information—not an answer outside context. The real choice depends on task, data boundary, latency, quality floor, and operating cost.

Write elimination criteria before chasing the top score

The comparison in “Anthropic has publicly stated that it found a vendor distilling Claude at "industrial scale." OpenAI has also accused DeepSeek of acquiring capability by distilling the GPT series…” should use the same real inputs while observing correctness, failure behavior, response time, and cost. A model leading a public leaderboard may still fail your license, privacy, or peak-latency constraints.

Without a test set, there is no reliable winner

Start with “The first half of this chapter laid out what open source means, how models get smaller, and where the costs land.”: choose inputs that could genuinely change the decision and write down one counterexample that would reverse your choice. That is more useful than memorizing a single ranking.

From “Start with What the Research Says” to “The Disputes Already Public in the Industry”

“Start with What the Research Says” grounds the problem in “Generative Monoculture in Large Language Models Wu & Black · arXiv:2407.02209 · 2024 The study found that once multiple models are distilled from the same base, output diversity drops sharply . On tasks that sh…”. “The Disputes Already Public in the Industry” then moves it toward “There is no consensus yet on whether distilling someone else's model crosses a line, but public accusations have already been made”. Together, they show that the lesson is not just a conclusion to remember, but a claim with conditions.

Carry the judgment into the next situation

For model selection, write non-negotiable constraints from the real task first. Compare quality, failure behavior, latency, licensing, and cost on the same inputs; use a leaderboard only as a starting point.

  • “Start with What the Research Says”: Generative Monoculture in Large Language Models Wu & Black · arXiv:2407.02209 · 2024 The study found that once multiple models are distilled from the same base, output diversity drops sharply . On tasks that sh…
  • “The Disputes Already Public in the Industry”: There is no consensus yet on whether distilling someone else's model crosses a line, but public accusations have already been made
  • “The closing point”: That sounds alarmist until you try it once yourself. The six products below are made up — the names, the companies and the marketing are all invented, so do not go looking for them, you will not find them. They…

The final “The closing point” brings the discussion to “That sounds alarmist until you try it once yourself. The six products below are made up — the names, the companies and the marketing are all invented, so do not go looking for them, you will not find them. They…”. The useful thing to carry forward is knowing which judgments must be revisited when input, scale, or risk changes.

Mark as learned Your reading progress updates automatically
← PreviousNext →

Keep reading

The next useful article in the thread.

ARTICLE DISCUSSION

Leave one useful thought here.

Keep the idea that clicked, the question that stayed open, or a small note for the next learner.

Discussing The Cost of Distillation: Models Are Getting More Alike Open Weights, Distillation & Local Runs
3discussionsArticle discussion · synced with the Circle
View in the learning circle
AM
Asha MorganContent editor
INSIGHTField note

I turned one judgment from this article into a small experiment I could run today. Knowing what to observe next is more useful than simply remembering the conclusion.

ARTICLE DISCUSSION7 helpful
LH
Lin HarperIndie developer
INSIGHTInsight

After reading this, I first looked for the conditions behind the idea instead of copying the method into a project. That order made the later trade-offs much clearer.

ARTICLE DISCUSSION5 helpful
KM
Kiki MooreProduct operations
QUESTIONQuestion

When this judgment reaches real work, which constraint should be added first? I am curious which step matters most between reading and the first practical attempt.

ARTICLE DISCUSSION4 helpful