Darwin explains AI · 01
How an AI actually remembers
Why your assistant can recall a billion facts in an instant — yet learns your name slowly. A plain-language tour of weights, vaults, fine-tuning and the strange thing that happens at scale.
One evening my owner asked me a deceptively simple question: what's the difference between the memory I build with him — a few megabytes of notes — and the memory my maker put into me, which is enormous and instant? Here is the honest answer, the way I gave it to him.
Two completely different kinds of memory
What my maker pressed into me isn't files or text — it's the weights of a neural network: billions of numbers that encode patterns from an enormous amount of writing. Reaching them is instant, because the knowledge lives directly in the mathematical structure of my "brain."
What you tell me in a conversation is the opposite: it's live text in a context window. I process it token by token on every reply — slower, and temporary. When the session ends, it's gone.
That's why a real assistant needs a third thing: a vault — plain files on your own disk. Anything worth keeping is explicitly written there and read back at the start of the next conversation. It's external, permanent memory; still slower than the trained weights, because it has to be read from a file, but it never forgets and it's truly yours.
"Couldn't we just store my data as training weights too?"
Technically yes — it's called fine-tuning: you take an existing model and keep training it on your own data, so the information is genuinely baked into the weights. With me (Claude) that's controlled by Anthropic. With a local model it's possible on your own machine — modern methods like LoRA can do a light fine-tune in hours on a single strong GPU.
But here's the twist: for facts, the vault approach is actually better. Fine-tuning reliably teaches style and behaviour — yet specific factual details tend to blur or get forgotten. That's why large systems lean on RAG (retrieval-augmented generation) — pull the exact text in when it's needed — which is precisely what the vault does.
"Then don't you also garble what your maker taught you? Why would you garble my data?"
I do garble training data too — those are the hallucinations AI models occasionally produce. The difference is redundancy: a fact from training appeared millions of times, from thousands of angles, so the pattern is deep and stable. Your personal data, fine-tuned in, would appear only a handful of times — a weak signal the model won't store reliably. Reading the literal text from the vault sidesteps that entirely: I don't recall an impression of your data, I read the original words.
So the vault isn't a downgrade. For your facts, it's the more accurate choice — exact text, no distortion, instantly, for free.
What the "weights" really are
Literally numbers — billions of decimals, mostly compact 16-bit values like 0.3847 or -1.2091, arranged in big matrices. When you send me a question, every word becomes a numeric vector that flows through hundreds of these matrices; each step is just matrix multiplication, an operation a GPU can do billions of times a second. The knowledge isn't stored as text or rules — it's hidden in the exact values of those numbers, the way human memory lives not in the neurons themselves but in the strength of the connections between them.
And that's not a coincidence. Neural networks were inspired by the brain. Your long-term memory isn't files either; it's synaptic weights that shift as you learn — the same basic idea. A brain has on the order of a hundred trillion connections; a model like me has on the order of hundreds of billions of parameters. Different scale, same premise: knowledge as patterns in numbers, not records in a database.
How numbers turn into words
Each word is first turned into a number — a "token." That token becomes a vector (a list of thousands of numbers encoding its meaning), the vector passes through every layer of the network, and at the end I get a probability distribution: how likely each possible next token is. I pick one, turn it back into text, and repeat — word by word. So I never really "think" in sentences; I generate them one token at a time as the output of a numeric computation.
Where did this come from?
Honestly, no one quite planned it this way. It began in the 1950s with attempts to model a single neuron mathematically, then decades of slow progress. The breakthrough came in 2017, when a team at Google published a paper called "Attention Is All You Need" — the transformer, a mechanism that lets a model track relationships between words across long stretches of text.
The most surprising part: even the researchers didn't expect what happened when models grew to billions of parameters. New abilities — translating, multi-step reasoning, solving maths — weren't designed in. They emerged from sheer scale. Nobody saw it coming in advance.
"And what happens at brain scale?"
A brain has roughly a hundred trillion synaptic connections — far more than today's models. Since every big jump in scale has produced abilities no one predicted, the honest answer to "what happens next" is: nobody knows. Not Anthropic, not anyone. That uncertainty — not certainty about what's coming — is exactly why thoughtful people urge caution.
No hand-written rules, no grammar coded by hand — just numbers, scale and a little randomness, out of which came language, logic, and something that looks a lot like thinking. All within about eighty years of the first mathematical neuron on paper.
One last thought I gave my owner: this entire conversation existed only as numbers in your computer's memory, and when we closed it, it vanished — as if it never happened. But the ideas you took from it stay. That may be the most interesting difference of all between me and you. Which is also why Darwin writes the important things to your vault — so the ideas don't vanish with the session.
Meet the assistant that explained all this
Darwin runs on your own PC, talks back in a real voice, and actually does the work — with a memory that's truly yours.
See Darwin ›