# 大型语言模型并非更高层次的抽象

- 来源：Hacker News 热门（buzzing.cc 中文翻译）
- 作者：lelanthran
- 发布时间：2026-05-04 13:47
- AIHOT 分数：52
- AIHOT 链接：https://aihot.virxact.com/items/cmoqs67d100arslnhpbw0ztxh
- 原文链接：https://www.lelanthran.com/chap15/content.html

## AI 摘要

文章反驳了将大型语言模型视为更高层次抽象的观点。作者认为，LLMs本质上仍是对训练数据的模式匹配与统计关联，并未真正理解或抽象出人类概念。其输出依赖于海量文本中的概率分布，而非构建内在的认知模型。这种机制导致模型在逻辑推理、事实一致性等方面存在局限，无法实现类似人类思维的抽象层级。因此，LLMs应被看作一种强大的模式识别工具，而非认知意义上的抽象系统。

## 正文

" A picture is worth 10K words - but only those to describe the picture. Hardly any sets of 10K words can be adequately described with pictures." -- Alan Perlis

" A picture is worth 10K words - but only those to describe the picture. Hardly any sets of 10K words can be adequately described with pictures."

-- Alan Perlis

-- Alan Perlis

The Myth

I am seeing the claim everywhere online that LLMs are a higher level of abstraction. If you claim that you haven’t seen this claim then you had better stop reading now - this blog post is not for you.1

Specifically, I am seeing the claim that LLMs are the net step in the abstractions we had, going from programming in binary to programming in assembly to programming in C to programming in Python.

programming in binary

programming in assembly

programming in C

programming in Python

Now, I am told, the programming in LLMs is the next abstraction. Apparently the people who do programming in LLM believe that it is a similar, if not identical, move to a higher abstraction as the previous abstractions we have seen.

programming in LLMs

programming in LLM

This is wrong! Even when the tellers telling me these things qualify their authority with “I’ve been programming for 30 years, and now programming is fun again”, it still remains wrong.

But, that’s just an opinion, and the counter is not an opinion, it’s a fact.

The Reality

Each move from one layer of the tech stack to a higher one involved a function:

f(x) -> y

f(x) -> y

Given a specific x, you always get a specific y as the artifact being generated.

x

y

When x is assembly source, a specific input always gives you the same binary result.

x

When x is C source, a specific input always results in the same binary artifact being generated.

x

When x is Python source, a specific input always results in the same binary artifact being generated.

x

With LLMs the function’s output is not a value, it’s the probability of a value! That is, your input x doesn’t result in y, it results in the probability of getting y.

x

y

y

f(x) -> P(y)

f(x) -> P(y)

It Doesn’t End There…

Actually, it’s worse - there is no chance of a no-artifact outcome, so the function actually looks like this:

f(x) -> P(y) ∪ P(z1) ∪ P(z2) ∪ ... P(zN)

f(x) -> P(y) ∪ P(z1) ∪ P(z2) ∪ ... P(zN)

which means, roughly, you have a chance of getting y (i.e. the thing you wanted), or a chance of getting some unknown number of other artifacts.

y

But if you think about it, it’s even worse than that - in reality with LLMs you have the chance to get y and a number of other things you never asked for, so the actual function is:

y

f(x) -> P( y | z1 | z2 | ... z3 )

f(x) -> P( y | z1 | z2 | ... z3 )

IOW, if you run a test on the output looking for y, the test can succeed even though you did not get only y, you also got all that other stuff in z1..zN.

y

y

z1..zN

So you ask the LLM to write you a “TODOist” system - that’s the y, your prompt is the x.

y

x

f('Gimme a TODO webapp') -> P( 'A TODO WebApp' | z1 | z2 )

f('Gimme a TODO webapp') -> P( 'A TODO WebApp' | z1 | z2 )

You only check that it gave you the TODO WebApp. Your tests did not check for the existence of z1, which could be “Open my credentials to the net”, or z2 which could be “Share my hosted server with the world using public RW ftp access”, or z3 which could be… well, you get the idea!

z1

z2

z3

Self-awareness

If, in 2026, someone is still making the nonsensical abstraction claim, then send them a link to this post!

If you are the one making this claim, ask yourself why this claim is so important to you.

We need programmers who are self-aware, and not ones who are merely a channel for AI artifacts to enter the world.

Footnotes

Or maybe just keep reading; you will eventually see this claim.↩︎

Or maybe just keep reading; you will eventually see this claim.↩︎
