Some thoughts about Anthropic's new cryptanalysis results
Posted by supermatou 5 days ago
Comments
Comment by simonw 4 days ago
> If you’re under the impression that these models are “glorified autocomplete” or that progress is slowing down, I need to urge you: stop thinking that. The models are very intelligent and capable, they are getting better at a fast clip. I can cite measurable and impressive progress over just the past five months on specific types of problem I’ve asked them to look at. [...]
> On the other hand: if you think that models are super-intelligent or that AGI is already here, you should also stop thinking that. Working with these tools is like swimming in a pond where the ground drops off sharply. One minute you’re wading comfortably and there’s support under your feet. Then suddenly you cross a specific line, and you’re back to swimming on your own.
Comment by jiggawatts 4 days ago
There is a vast ocean of human knowledge, far beyond the capacity of any human brain, even within specialised fields.
Books helped "plug the gaps" in our knowledge, increasing the scope that a single human mind can encompass.
Web search engines did the same thing, but more and faster.
LLMs are like search engines on steroids, essentially a research librarian that operates at 1,000x human speed and can "in context" locate relevant information, adapting it to fit the hole it needs to go into as well.
It feels less like discovering new theorems, but instead having direct access to all theorems, which is hugely valuable in itself.
I.e.: the recent counterexamples to open conjectures has largely been about the AIs "trawling through all the things" and scraping together every bit of human-generated knowledge ever produced that is relevant to the conjecture.
Conversely, in the past, we had to "make do" with sub-standard solutions where the problem had been solved, but finding every relevant solution in the ocean of knowledge was prohibitively time consuming.
In some sense, LLMs will "raise the floor" in what is considered the minimum level of quality of a solution, where even throwaway / toy designs will now start applying every bit of accumulated wisdom instead of just some of it.
We have mechanised attention.
Comment by Roark66 4 days ago
The rare benchmarks that measure "knowing what the model knows it doesn't know" show us there are only a couple models like Opus that are good in that field.
I think this is something that receives not enough attention from researchers.
Comment by chasd00 4 days ago
i like the analogy of a lossy compression algorithm. The LLM compresses all of the data it was trained on to answer the question it was asked.
Comment by simianwords 4 days ago
Comment by dandaka 4 days ago
Comment by heresie-dabord 1 day ago
Do use the tool if it offers material/measurable improvement for your use-case, but budget carefully and keep your people. They probably do actually know what your material/measurable use-case really is.
If you only talk to yezbotz, you may zuck yourzelf into a corner and look like a zhmendrick.
Comment by movpasd 4 days ago
Comment by dboreham 4 days ago
Comment by dgellow 4 days ago
Comment by simonw 4 days ago
Personally I like to remind people that these things are next-token predictors, but then emphasize how truly astonishing the results we can get out of sufficiently advanced next-token predictors are.
Comment by wren6991 4 days ago
Comment by thesz 4 days ago
> The tokens it "predicts" aren't sampled from any naturally occurring distribution; the model's output is the result of an optimisation process that rewarded behaviour that was useful, and that's fundamentally different.
https://arxiv.org/abs/2504.13837"Surprisingly, we find that the current training setup does not elicit fundamentally new reasoning patterns. While RLVR-trained models outperform their base models at small k (e.g., k = 1), the base models achieve a higher pass@k score when k is large. Coverage and perplexity analyses show that the observed reasoning abilities originate from and are bounded by the base model. "
Comment by adw 4 days ago
Let's stipulate that what pretraining does is train next token prediction over a gigantic corpus. You can then sample from this distribution repeatedly (cf the Large Language Monkeys paper) and count how often it passes some deterministic verifier.
What GRPO-style RLVR does is precisely this, but then reward the trajectories which passed the verifier. These distributions are _by construction_ within the accessible output space of the pretrained model; you're reweighting the distribution so that pass@k goes up, because that's (for applications like programming) very useful. RLVR is about making sampling more efficient; the only new information being added to the system is the presence of the verifier, and note that you only get a reward when the verifier passes, so there's essentially no mechanism for "teaching new facts" here.
Comment by wren6991 4 days ago
> Coverage and perplexity analyses show that the observed reasoning abilities originate from and are bounded by the base model
On the face of it this seems unsurprising given the policy gradient term directly minimises this difference.
I don't have a good feel for how the output of an RLVR-trained model concretely differs from the base model. My guess would be there are a fairly small number of "forks" where the training creates a token flip that sends the model down a more useful path.
The fact that the straight paths between the forks resemble the base model would again be unsurprising since (a) those are exactly the right context to continue to elicit more output that's relevant to solving the problem (so not penalised by RLVR), and (b) preservation drops naturally out of the policy gradient term you add to limit catastrophic forgetting in the base model.
Low perplexity could be explained by the relative sparsity of the forks in the output stream, and/or by forks already having high entropy in the base model. That also aligns with the pass-at-high-k: yes it's doing more exploration without training but it's a bit of a monkeys-on-typewriters situation.
Lack of novelty is readily explained by the fact that you need some nonzero pass rate in the base model to actually get some useful training signal from RLVR. That's a limitation of contemporary RLVR techniques, not a limitation on post-training in general.
I think there's room in that forks-and-straights characterisation for the RLVR'd model to be doing something that looks a lot like computation, while having low perplexity vs the base model. I don't see anything in my admittedly incredibly shallow skim of the paper that refutes that.
Comment by adw 2 days ago
Comment by CamperBob2 4 days ago
Comment by simonw 4 days ago
You can get into RL as part of explaining why it's so unnervingly good at picking a next token.
Comment by wren6991 4 days ago
I guess it was more the "predictor" part I had issue with. There's a tendency to reach for statistical or probabilistic terminology to describe things that aren't usefully understood in those terms. For example in the "Speed Always Wins" LLM technical survey (https://arxiv.org/pdf/2508.09834):
> The gate is a crucial component to bring sparsity in MoE models. For a batch of input token representations X ∈ RT×D, the gate function G determines the probabilities of dispatching token xi to each expert e
...which is nonsense: the gate simply, directly, selects the experts. There's nothing probabilistic about it.
Comment by didibus 4 days ago
Isn't G a learned probability?
Comment by wren6991 4 days ago
If you put something through a softmax the output is (trivially) a valid PMF. Does that matter? You're not sampling from it.
Comment by didibus 4 days ago
I'm not understanding, can you explain this more? How does it become more than a next token predictor? Isn't the post-training simply altering the sampled distribution? And isn't that distribution naturally occurring? It's the distribution of "useful" next token?
Comment by IanCal 4 days ago
It’d be prediction if it’s “predict what would come next in this text sampled from distribution X”.
But what’s it predicting if we’re looking for new useful outputs? It’s finding a distribution that’s useful, and generating tokens, but it’s not predicting what comes next in a known sequence.
Comment by didibus 3 days ago
It tries to learn the distribution of "useful" results either through verified rewards or human feedback. Then it encodes that in the network. When you run inference later, it samples or selects from that distribution.
Maybe it's a matter of interpretation. It's not predicting the next token based purely on the training corpus's distribution anymore, the RL process fine tunes that distribution so it predicts the next token that is closer to what was rewarded during RL. But as I see it, it's still predicting the next token, just from a reenforcement learned distribution instead of one found in a corpus of data.
Comment by slopinthebag 4 days ago
Comment by ameliaquining 4 days ago
Comment by simonw 4 days ago
It's harder to believe something is conscious or threatening to achieve word domination once you understand that it's a machine that statistically figures out which word should come next.
Comment by CamperBob2 4 days ago
The problem is, these models challenge our definition of "consciousness." Or at least they point out how hopelessly-inadequate our thinking on the subject is. Some people really, really don't like having their personal definition of consciousness challenged.
The correct response to "So what, it's just a next-token predictor" isn't a long dissertation on RLHF, training architectures, scaling laws and whatever, but rather to turn around and respond, "Sure, and how is that different from what we do?"
Comment by amenhotep 4 days ago
Comment by ameliaquining 4 days ago
I recommend this explanation: https://www.astralcodexten.com/p/next-token-predictor-is-an-...
Comment by dgellow 4 days ago
Comment by ameliaquining 4 days ago
(Note: I don't actually think the consciousness question is the most important one in the near term. Where I think this line of reasoning gets really dangerous is when people use it to assert that LLMs can't or won't engage in certain behaviors no matter much they advance; this doesn't have anything to do with consciousness.)
Comment by inigyou 4 days ago
Most people would expect that matrix multiplication is not conscious, and autocomplete is not conscious either.
We can't prove matrix multiplication isn't conscious, but it doesn't seem likely unless everything is conscious.
Comment by willy_k 4 days ago
As a side note, that is why I find the idea that the brain is a quantum-classical hybrid computer appealing. And following the research developments is very interesting, to say the least.
Comment by brookst 4 days ago
“If LLMs are conscious, it means matrix multiplication is conscious” == “If humans are conscious it means cells are conscious”.
It’s possible for complex systems to have emergent properties not exhibited by any individual component of the system.
Comment by slopinthebag 4 days ago
So for consciousness and LLMs it could be Qualia, lack of semantic understanding, lack of continuity in time, lack of a high degree of integrated causal feedback, etc.
Or perhaps those are just features of human consciousness but not integral to consciousness as a whole. To me this then implies panpsychism to some degree, which I'm alright with too.
Comment by ToValueFunfetti 4 days ago
But qualia are not directly measurable and the rest of the list only matters if those features are necessary for qualia, which we can't decide without such measurements or at least a strong theoretical model.
Comment by cyanydeez 4 days ago
But LLMs are only operating on text and humans are only operating on <waves hands>
Comment by dgellow 4 days ago
Comment by Forgeties79 4 days ago
At the risk of sounding overly flippant, all world domination has been achieved by some person(s) figuring out which word should come next. Words quite literally = action when it comes to LLM’s with tools access
Comment by KPGv2 4 days ago
It's exhausting to even consider where to begin addressing the assertion that good leadership is just predicting the next word to say. Especially considering the corpus available to most great leaders in history was extremely small. To think Hannibal's military campaigns were just because he'd read like ten books in his life and could accurately forecast effective rhetoric is...indescribably divorced from reality.
At the risk of seeming like a jerk.
Comment by notathrowaway51 4 days ago
Comment by KPGv2 4 days ago
After you edit, I'll address your point about how military strategy is nothing but skill with words.
Comment by Forgeties79 4 days ago
This has to be the most insufferable thing I’ve read/heard in weeks. Are you being serious right now?
Comment by argee 4 days ago
Comment by ameliaquining 4 days ago
Comment by argee 4 days ago
Comment by ameliaquining 4 days ago
Comment by notahacker 4 days ago
Not to mention people more worried about whether the AI is motivated to hurt us than what human motivations can do with something that can autocomplete its way through every possible attack vector of cryptographic systems most of use would prefer remain secure.
(tbf I think the "glorified autocomplete" still works surprisingly well for programming outcomes too. Autocomplete [and fuzzy search of reference material] actually is useful and often right and certainly can save time even when it's only suggesting the rest of the variable name. But you might not want to commit everything it suggests...)
Comment by svieira 4 days ago
Comment by ameliaquining 4 days ago
Comment by argee 4 days ago
Comment by red75prime 4 days ago
What does "glorified autocomplete" say in an ontological sense exactly? Nah. It's just a lazy dismissal.
BTW, autoregressive pretraining (autocomplete) is a part of training.
Comment by inigyou 4 days ago
Comment by Groxx 4 days ago
Practically every other attempt at describing them leans too technical and unfamiliar (stochastic parrot) or too anthropomorphic (even describing them as "not like a human" gets people thinking in terms of humans, like how if I mention that your tongue is in your mouth all the time, using up almost all of the room, feeling your teeth and tasting itself, you're now uncomfortably aware of it and the numerous bumps on the surface).
You need to work from a reference that has both a shared understanding, and does not lead to problematic "if X has Y, and Z is like X, then Z has Y" seemingly-logical derived beliefs. "Spicy autocomplete" is a fairly safe starting point in both ways.
Comment by red75prime 4 days ago
Comment by Groxx 3 days ago
They sound fairly human, until you notice the patterns. They sound like they're thinking, until you pay attention.
Comment by gwd 4 days ago
Comment by brookst 4 days ago
Comment by bawolff 4 days ago
Comment by brookst 4 days ago
Comment by cyanydeez 4 days ago
Comment by probably_wrong 4 days ago
Comment by regularfry 4 days ago
Comment by mostlylurks 4 days ago
Comment by sph87 4 days ago
I feel like there has been a ton of noise about this, but frankly, no one has actually defined what AGI means. I feel like the goal post is constantly shifting.
Take for example Humanity's Last Exam. It is so broad and complex that while an individual in a specific field might be able to answer their specific area of questions, they certainly would not be able to achieve >50% on the total question set.
There is this idea that AI has to be perfect to be intelligent - but we consider Humans intelligent and they are not even close. So is it the ability to generate novel ideas? Prove theorems? Pass tests?
I am not arguing that rote memorization is intelligence, or that we have achieved it, but does anyone know what AGI actually.. is?
Comment by arw0n 4 days ago
I would argue that a core part of intelligence is being able to handle uncertainty. That + planning probably explains most of the evolutionary pressure for making our brains bigger. But if this is important to intelligence, chess bots in the 80s were more intelligent than their later counter-parts, which could simply remove uncertainty through rote memorization. Maybe the All-Knowing is a compete dud, no reasoning capabilities at all, just an extremely efficient, infinite lookup table of all facts.
Terms like intelligence and consciousness often just seem overloaded with meaning, and when discussing things concretely, we quickly switch to more specific terms like reasoning.
Comment by xnx 3 days ago
"The intelligence of a system is a measure of its skill-acquisition efficiency over a scope of tasks, with respect to priors, experience, and generalization difficulty."
Comment by tptacek 4 days ago
Right now, models are doing well-defined knowledge work tasks, applying relatively well-worn patterns (but with the thoroughness of a computer, which yields interesting new results). AGI is us breaking the threshold of "doing stuff people already do to identify and solve problems".
Comment by irishcoffee 4 days ago
Don’t tell Mozart.
Comment by tptacek 3 days ago
Comment by irishcoffee 2 days ago
Comment by IanCal 4 days ago
Personally having been in AI since before deep nets, systems have been incredibly narrow for decades.
Classifiers on images were battling with ten classes in 2010. Imagenet had 1k classes and people were getting half of the things wrong then and that was frankly amazing at the time.
And they only did images, only to known classes, only with very specific inputs.
Text classifiers only did a few classes usually and mostly threw all the words together.
The most advanced things I saw in the late 2000s were struggling so much to make general systems that the most general ones were still incredibly limited and bad at those things (we had a robot learning to play games that you showed it). Things like asking a thing for a book and having it parse the sentence, identify what was needed, that it didn’t know where it was but that was knowledge another human had and asking them - that was impressive yet also limited to very small sets of interactions.
The idea of a machine getting sarcasm, even if mostly built for it, was wild.
General meant capable of a broad range of tasks without retraining.
To me we have agi. It’s general, and it’s good enough to be useful.
Comment by IsTom 4 days ago
It turns out that a savant with all the knowledge isn't "it".
Comment by ben_w 4 days ago
I'd say LLMs have shown us the opposite problem: there were many different definitions whose differences we'd previously been able to ignore. We don't all agree even on a single letter of "A", "G", and "I".
And this is why it looks like a moving goalpost.
Comment by annzabelle 4 days ago
By that singularity definition, we're probably nowhere near AGI, but if we define it as something that is as good at text/information manipulation as the 50th percentile human? I think we're already there.
Comment by regularfry 4 days ago
> ...a hypothetical type of artificial intelligence that matches or surpasses human capabilities across virtually all cognitive tasks.
You can argue that paperclip maximising is an inevitable consequence of that (and the huggingface breach is interesting from that point of view) but it's not fundamental to the definition.
The question then is what "surpasses human capabilities" means and we're there in some niches but not all, and not across many models.
Comment by altmanaltman 4 days ago
But a purist defintion of AGI does not require consiousness as a part of it but can be seen as a benchmark metric. Sam Altman recently said the term doesn't really matter. And its true, even if AGI is achieved in the sense that a model can excel at all tasks at par or better than a human, then it is very useful but not as scary as a living, self-serving AI system like Skynet.
Yet AGI in the form discussed above will still grant massive power to AI labs if its injected into all domains. I recently wrote on this a bit on my blog: https://decodingvibes.com/blog/ai-can-ride-my-bike-with-no-h...
Comment by kijin 4 days ago
Once AI can improve itself, frontier labs will no longer need human developers. So we might see a massive layoff of top talent and a dramatic increase in product quality at the same time. This usually doesn't happen in human businesses. It is also very much against the interest of anyone who is already at the top of the pay table at those labs.
Comment by mirekrusin 4 days ago
Also, if the lab truly has a self-improving superintelligence, the cost of retaining staff at any level would be a rounding error relative to its operating costs and the value the system creates.
There would be little economic pressure to fire them immediately, especially while they remain useful for oversight, interpretation, risk management or simply as "interface" to the rest of the world etc.
If anything, they would probably hire more people to pursue more opportunities in parallel.
Comment by ben_w 4 days ago
This is why I keep saying we can't all agree even on a single letter of "A", "G", and "I".
Before ChatGPT, I would have said "obviously a generally intelligent system can do all the things". While LLMs are much more general than AI before them, the quality of their performance in all the things is distributed in a very un-human-like way.
Some fast-moving optimiser can be a threat well before it stops needing any humans for part of their labour. Cancer and viruses are examples of this: they're the same category of thing as a paperclip optimiser, but for biology instead of manufacturing office supplies.
But some others will argue LLM-spikey isn't "AGI", they'll demand something which reaches the performance of the best human (or the mean human, or the mean domain expert, because we can't agree on "I"), and a standard of "≥ best human" would mean that no, you don't need "people with knowledge around domain/layer the work is done on".
Comment by brookst 4 days ago
And yet… there are still people telling AI how to improve itself.
IMO there will always be a level of abstraction at which AI needs guidance. Perhaps ASI means it decides everything on its own, but I don’t think so. Genius humans often excel at the how but not the why, or even the what. So far there’s no indication that AI is different.
Comment by dinfinity 4 days ago
AI has not improved the network topology much yet. The next (and possibly 'last') big thing is enabling AI to come up with something as impactful as the transformer architecture.
Comment by simonw 4 days ago
I'm guessing that's hundreds of millions and maybe even billions of dollars per month in savings.
Comment by brookst 3 days ago
Comment by dinfinity 3 days ago
Honestly, when it comes to fundamental ANN topology improvement we've only just gotten started.
Comment by shard972 4 days ago
Comment by brookst 4 days ago
Comment by simonw 4 days ago
That sentence gives the impression that Mythos might be released in the future. That's clearly not going to happen - it's already "released" in as much as selected, trusted partners can access it, and the rest of us get it in the form of Fable - which is Mythos but with filters that downgrade you if you try to use it for anything even remotely related to cybersecurity or biology.
(The other day Fable 5 downgraded me to Opus after I asked it to explain the difference between tusks and teeth.)
Comment by gwd 4 days ago
Comment by ricksunny 4 days ago
Comment by free_bip 4 days ago
Comment by simonw 4 days ago
Comment by Retr0id 4 days ago
Comment by rain_iwakura 4 days ago
Now obviously you can and should retort with hallucination and confabulation rates from external and Ant's own reports per model (pretty sure more advanced models are good at lying better, not less) instead of going with dumb "more expensive more accurate" mental model, but general principle stands for me still AFAIK.
it's not exactly rational I admit, but if I'm going to base my own work and reasoning from an LLM I'm going with the best available. This seems to trip up most normies because they are too lazy or too greedy to pay up for premium access and see for themselves why most of us are both awed and afraid. Generally, I'm too biased and too deep in ML/DL cargo cult (been in it since 2016) to know if the skepticism and disdain for such usage is warranted.
In general, I think the tools are broadly toxic in a Dune-sense of making me think less for myself, because just as any HN-poster knows coding and doing mundane low-level stuff is necessary the same way doing stretches is necessary before any workout. The process itself is what keeps your brain strong and its gradients from veering into overfitting. I'm not overly bullish on the whole reaching for the stars ending with these things. Paradoxically, you using them eventually hobbles both you and the model, because you become dumber and then you bottleneck their ability to self-direct (broadly true for next Mythos/GPT-7).
Sorry for a long rant, was just anticipating some things I'd have to say for myself.
Comment by john_strinlai 4 days ago
it is fun how well this works.
i cant find the link immediately (will look and edit with it), but somewhere in the "hello there the jacobian conjecture is false thanx" thread, someone brought up a different conjecture breakthrough where the prompts were basically just repeated "no, keep going" until a result was found.
edit: https://chatgpt.com/share/6a60b2eb-0b64-83ee-9c76-7931ca1de0...
i especially like "you should do a breakthrough". each prompt is less than ~20 words. makes me really question the whole "prompt engineering" stuff.
Comment by throwup238 4 days ago
This is well past prompt engineering and into process engineering like six sigma. Just like in an early industrial revolution factory, we’re all still figuring out what works in the process of making stuff except this is so early that even simple things like “make this screw standardized” (or “no, keep going” in this case) is really high impact.
The degrees of freedom an LLM has is so large that we're going to be exploring their capabilities for decades, especially if they continue to get better. This is why IMO experts are always going to be better at LLMs in their field because they can force them LLM into processes (think prompt engineering -> CC dynamic workflows) that follow their work processes and get much better results out of them than “keep going.”
Comment by adamzenith 4 days ago
Comment by john_strinlai 4 days ago
in my head, the comparison is the multi-paragraph prompts (borderline essays) i would read in various communities on reddit and similar forums, that people (often self-proclaimed "prompt engineers") said were "required" to get good output. or some of the prompts ive read in various logs that are like a thousand words of setup.
even looking back at the first prompts i was sending when i started to use chatgpt were (in hindsight) crazy long and full of unnecessary guidance/caveats/"ignore xyz"/etc.
Comment by annzabelle 4 days ago
I can paste entire failure logs with the word "why" lowercase, no question mark, and get into a productive chat session where it significantly speeds up the bug trace. I will paste the text from a groomed ticket with no editing or additional instructions into the chat and then give it a bit of feedback on the plan for a couple iterations.
I feel so vindicated in never spending time learning prompting as a specific skill, it really just took a couple more years and the models are really easy to interact with with simple natural language.
Comment by fn-mote 4 days ago
Not sure when you started. However: I would never judge the necessity of details provided 2 or 3 years ago based on results that the current models give.
Comment by inigyou 4 days ago
Comment by dist-epoch 4 days ago
Its quite likely they now found the counterexample with a more serious prompt, and then for virality re-tried a few times with meme-prompts like "you should do a breakthrough", knowing that the model is capable of solving this particular one. Worst case the meme-prompts don't work and they share the real one they initially used.
Comment by john_strinlai 4 days ago
i am not sure why this is "quite likely". it'd be pretty silly to get a mathematical breakthrough and then hide it for an undisclosed amount of time to get a few more likes on a tweet, when the impressive part is the breakthrough.
not saying your theory is impossible, but i think the simple answer is that the model is just smarter than o1 and o3.
and, in any case, the model ended up getting the result with the meme prompt and "keep going", which was what i find fun. just like how the crypto results were from prompts of, more or less, "keep going", and that's pretty damn cool.
Comment by dist-epoch 4 days ago
I agree with you that obviously no prompt engineering was needed just "solve this problem", but imagine it was you doing this problem with every model, wouldn't you have tested a new model with the best prompt you had from previous iterations, maybe with some partial previous results in it, exactly to maximize your probability for a mathematical breakthrough?
Comment by woah 4 days ago
Comment by swordsith 4 days ago
Comment by alwa 4 days ago
What a weird species of halting problem…
Comment by mkagenius 4 days ago
Comment by bawolff 4 days ago
Comment by iansmith_hn 4 days ago
AES IS BROKEN: Making giant assumption XYZ and requiring a less capable AES in ABC way, we've reduce the amount of operations needed to break AES from 10^X to 10^X-1!
These are tedious for people who are interested in cryptography but are not researchers in the field. (For the researchers, this type of thing may be useful.). The fact that AI is now "generating crypto results", suggests that soon we will soon have crypto-post-slop as clickbait...
Comment by throawayonthe 4 days ago
did i just read two summaries/TLDRs (in a row) of the already-two-sentence summary right above?
Comment by Ar-Curunir 4 days ago