site banner

Friday Fun Thread for April 17, 2026

Be advised: this thread is not for serious in-depth discussion of weighty topics (we have a link for that), this thread is not for anything Culture War related. This thread is for Fun. You got jokes? Share 'em. You got silly questions? Ask 'em.

1
Jump in the discussion.

No email address required.

It was able to identify me from text written after the Jan 2026 knowledge cutoff.

Failing to connect the author of a unique reddit post literally in the training data 40% of the time actually sounds kind of horribly bad.

Your expectations are far too high if you don't think this is impressive. Model weights are incredibly compressed in comparison to the training corpus, it's impressive when they remember moderately famous people, let alone someone like me who's only barely broken out. Associating an old Reddit post with my wider work and then accurately joining the dots is impressive. Do you see the average human seeing a random reddit comment from 5 years ago and then pinning it on the right person, and associating it with their other work? It's not even a post that went viral, even though it was an AAQC. It also independently associated much of my wider work with me, including posts on LW and RoyalRoad where I use a different username (even though I've linked between everything frequently enough). This is a clearly superhuman ability.

Do you see the average human seeing a random reddit comment from 5 years ago and then pinning it on the right person, and associating it with their other work?

If that person had a searchable database? Sure.

It's possible I'm just entirely misunderstanding how they work down in the guts, but I interpreted the task as something like "I searched my database of training data, found the exact post, and replied with the linked username", which is powerful and "superhuman" in an objective sense, but the sort of thing I would have expected from Google search 15 years ago, pre-enshittification.

Identifying you by new writing would be much more impressive and alarming, and it sounds like they can actually do that for people like Scott, from some of the other posts people have made.

Models don't have access to training data at inference time.

Then, if it doesn't have access to internet search, how is it looking things up?

If I gave you a snippet of Shakespeare and asked you to guess who wrote it, I expect the Bard would be one of your top choices. How are you doing that if you don't consult Google or your Shakespeare box set?

Each token that the model sees in training updates its view of what sort of things are associated and in what way. Elements of style or topics may be clustered somewhere in the high dimensional latent space with the corresponding authors.

How are you doing that if you don't consult Google or your Shakespeare box set?

I would have similar examples in my memory. What does that memory look like for an LLM if not reference to a database? I just asked the Edge default copilot for "the 3rd line from Shakespeare's 31st sonnet", and for "without searching the web, the 5th line from Shakespeare's 41st sonnet" and it produced both without any trouble.

Are you suggesting that Copilot is re-deriving particular lines from the sonnets from first principles?

This is a sincere question, I honestly don't know how the nuts and bolts of these things work.

What does that memory look like for an LLM if not reference to a database?

The memory is the weights of the model. The first stage of training an LLM is next token prediction - the LLM is shown a block of text and is trained to produce the next word (technically, part of a word, but that's not important). Internally, the model manipulates the numeric representation of the input tokens as points in a high dimensional space. The model produces a kind of probability distribution over all the words it knows for what the next word might be, and the weights of the model are adjusted so that it's more likely to expect the correct word.

The result is that every token, with some context before it, that the model sees leaves some kind of "impression" upon the model. The details are fuzzy, but things like word choice or style are probably represented in some regions of that high dimensional space, which is what lets the model say that something "sounds like" Shakespeare.

Anthropic have some public research around trying to look into a language model to see what's going on in that latent space and how neuron activations relate to concepts. It may be difficult to read without any ML background, but fortunately you can now feed it in to an LLM and have it explain anything you don't understand.

LLMs being described as having ‘memory’ of things in the training set is almost certainly far closer to the colloquial, human understanding of what ‘memory’ is than either of the above concepts are to computer memory or an encyclopedia.

So if someone colloquially says the LLM has its training set in its memory this is no less accurate than saying that you remember what the water cycle is even though you cannot recall the precise page and content and diagram of the school textbook that you learned it from. Or why you can identify a line of text written in ‘Trump voice’ even though you cannot exhaustively list every Trump tweet you’ve ever seen.

It's one thing to say something is in the LLM's memory. It's quite another to say it's doing some kind of lookup in a database or into the training data.