PDF

An interactive essay · 1972 → 2026

The Thinking Machine

Artificial intelligence went from an academic curiosity to the axis around which industry, energy and geopolitics now turn — and most of that shift happened in the last fifteen years. This is an attempt to explain, honestly and from first principles, what happened, how these systems actually work, and what is genuinely known versus merely believed.

Allow about 30 minutes, in eight sections you can read separately. No prior background needed. Two levels of reading — pick yours:

In a hurry? The essentials in five minutes →

Executive summary

The Thinking Machine is an interactive essay explaining artificial intelligence from first principles, for readers who are technically comfortable but not deep-learning specialists.

It covers seven areas in order: the history of AI from 1972 to 2026 (symbolic AI, the deep-learning breakthrough, scaling laws, the agent era); the mechanics of neural networks and backpropagation; how transformer models and attention work, including the scaled dot-product attention formula; how models are trained (pre-training, instruction tuning, reinforcement learning, reasoning training) and what is actually known versus speculative about machine cognition; the working vocabulary of 2026 (LLM, agent, RAG, MCP, chain of thought, goals, mixture of experts, and more); a comparison of the major AI labs (Anthropic, OpenAI, Google DeepMind, Meta, Mistral, xAI, DeepSeek, and the wider Chinese open-weight ecosystem) and their strategic bets; and the physical supply chain and geopolitics behind AI compute (lithography, semiconductor fabrication, GPUs, energy).

Each section pairs written explanation with a working interactive demonstration — including a neural network that trains live in the browser via real backpropagation, and a gradient-descent visualisation — rather than static diagrams.

The full essay, including all interactive components, is available at thethinkingmachine.dev in English and at thethinkingmachine.dev/fr in French.

01History · 1972 → 2026

Fifty-four years, two winters, one thunderclap

The history of AI is not a steady climb. Everything turns on one question — what is intelligence? — and on two rival answers: dictate rules to the machine, or let it learn from examples. For forty years, the more intuitive one (the first) kept winning. And it was the wrong one.

In 1972, if you asked an AI researcher how to build a thinking machine, the answer was obvious: intelligence is logic. You interview experts, write down their knowledge as rules — if the patient has a fever and a stiff neck, consider meningitis — and stack up enough rules to cover the world. This was the symbolic school, and it was not a naive idea. It gave us systems that diagnosed infections as well as the specialists did — and it made real money.

The rival idea seemed hopelessly vague by comparison: don't write the rules at all. Build a network of simple units, loosely inspired by neurons, show it examples, and let it find the rules itself. For decades this approach embarrassed its believers. It needed two things that didn't exist yet — oceans of data and absurd amounts of computation — so it kept losing, publicly, to hand-written logic.

Twice the field promised too much and got defunded. In 1973 the Lighthill report, commissioned by London, concluded that AI's successes held up only on tiny problems, and British funding vanished. In 1987 the collapse of the Lisp machine market dragged expert systems down with it — the timeline has the details. Those are the “AI winters”. The second one also buried Thinking Machines, whose massively parallel Connection Machine had made the right hardware bet a quarter-century too soon — parallelism, without the data or the money to feed it.

What ended the argument wasn't a philosophical breakthrough. It was hardware built for video games and a dataset built on a conviction almost nobody shared. In 2012, a neural network trained on two gaming GPUs demolished the ImageNet image-recognition competition, and most of the field switched sides in about twenty-four months. Almost everything since — chatbots, coding agents, the trillion-dollar chip economy — flows from that moment and from a stranger discovery that followed: the same recipe, made bigger, keeps getting smarter.

One caution before the chronology. What follows is an interpretation, not a neutral record. Any timeline picks its winners in hindsight, and this one is no exception — it follows the ideas that turned out to matter, which is not how the decades felt from inside. Much of what moved the field happened outside the ideas — in hardware, money and mood. GPUs became the engine of AI because a graphics part happened to suit matrix arithmetic, not because anyone designed them for it; whole research programmes lived or died on a government report or a funding cycle; and each wave arrived wrapped in enough hype to make the subsequent disappointment feel like refutation. Read what follows as landmarks on ground still being fought over, not steps on a staircase.

An interactive chronologyClick any entry to expand it · filter by era · filled dots mark turning points

At Stanford, MYCIN diagnoses blood infections using ~600 hand-written if-then rules — and matches human specialists. The lesson people draw: intelligence is rules, and enough rules will get us there. The same year, the logic-programming language Prolog appears in Marseille.

The British government commissions mathematician James Lighthill to review AI. His verdict — grand promises, toy results that collapse outside the lab — kills most UK funding and previews a pattern: AI oscillates between overpromise and backlash.

Digital Equipment Corporation deploys XCON, a rule-based system that configures computer orders — a computer then arrived as crates of parts that had to match exactly, and one wrong cable meant a dead machine. Reportedly tens of millions of dollars saved a year. An industry of 'expert system' companies and specialized Lisp machines follows.

Rumelhart, Hinton and Williams publish a clear account of backpropagation — the algorithm that lets multi-layer neural networks learn from their mistakes. The math had existed for years; now the idea has a manifesto. Almost nobody suspects it will one day power everything.

The Lisp machine market collapses; expert systems prove brittle and expensive to maintain. Funding evaporates. 'AI' becomes a word researchers avoid putting in grant applications — for about twenty years.

Yann LeCun's convolutional neural network learns to read handwritten digits at Bell Labs — eventually processing a meaningful share of US bank cheques. Proof that learning from examples can beat writing rules, in at least one narrow domain.

IBM's Deep Blue defeats the world chess champion — with brute-force search and hand-tuned evaluation, almost no learning. A triumph, but of the old paradigm. The same year, Hochreiter & Schmidhuber publish the LSTM, a neural network that can remember across time.

Geoffrey Hinton and collaborators show how to train networks with many layers, and rebrand the field 'deep learning'. Meanwhile GPUs — built for video games — turn out to be accidentally perfect for the matrix arithmetic neural networks need.

Fei-Fei Li's team releases ImageNet: 3.2 million labelled images, on its way to 14 million. The bet — mocked at the time — is that what's missing isn't a cleverer algorithm but more data. An annual competition is attached to it.

A deep network trained on two consumer GPUs by Alex Krizhevsky, Ilya Sutskever and Geoffrey Hinton crushes the ImageNet competition — a 15.3% error rate against 26.2% for the runner-up. In a field where progress was measured in fractions of a percent, this is a detonation. Within two years, every serious computer-vision team has switched to neural networks.

Generative adversarial networks (GANs) show neural nets can create images, not just classify them. Sequence-to-sequence models begin translating languages end-to-end. Google buys DeepMind, a London lab betting everything on learning.

DeepMind's AlphaGo defeats Lee Sedol at Go, a game with more board states than atoms in the observable universe — where brute force is hopeless and 'intuition' was thought to be required. Move 37, a move no strong human would play, becomes shorthand for machine creativity. 280 million people watch.

Eight Google researchers propose a different way to handle text: instead of reading it word after word, in order, let every word look at all the others at once and learn which ones matter to it. That mechanism is attention; the architecture built on it, the transformer. The paper itself is only about machine translation — a modest problem next to what followed. Its real significance lies elsewhere: the bigger you build this thing, the better it gets, with no ceiling yet in sight. Nearly every AI system you have heard of since is a transformer.

BERT (Google) and GPT-1 (OpenAI) show you can train one large model on raw text once, then cheaply adapt it to many tasks. Language modelling — predicting the next word — quietly becomes the most important task in AI.

OpenAI trains a model with 175 billion parameters — the internal numbers that training adjusts, which the next section explains properly — on a large slice of the internet. GPT-3 can write, translate, and answer questions it was never explicitly taught — abilities that simply appeared with scale. Kaplan et al.'s 'scaling laws' paper shows performance improves as a smooth, predictable function of compute, data and model size. Intelligence, suddenly, has a price curve.

A chat interface wrapped around a fine-tuned GPT-3.5, released as a 'research preview' in November. 100 million users in two months — the fastest-adopted consumer product in history at the time. AI stops being a research topic and becomes a public fact.

GPT-4 passes professional exams and reasons across images and text. Anthropic — founded by safety-focused ex-OpenAI researchers — releases Claude. Meta releases Llama's weights — the model's learned settings — seeding a global open-source ecosystem. Governments begin drafting AI rules in earnest.

OpenAI's o1 and its successors are trained with reinforcement learning — learning from reward and penalty rather than by copying examples — to produce long private chains of reasoning before they answer. They trade computing time for accuracy. A second axis appears: not just bigger models, but more thinking per question.

Chinese lab DeepSeek releases R1, an open-weight reasoning model trained at a fraction of assumed frontier costs, briefly wiping ~$600 billion off Nvidia's market value in a day. Meanwhile 'agents' arrive for real: models that operate computers, write and run code, and use standardized tool protocols like MCP. Claude Code and similar tools make AI a coworker in the terminal.

Frontier systems now accept a standing objective — 'migrate this codebase', 'find and fix the vulnerabilities' — and pursue it through long loops of planning, acting and self-verification, checking their own work against tests and success criteria rather than asking a human at each step. Anthropic ships the Claude 5 family (Fable), OpenAI the GPT-5.6 series, Google Gemini 3.x; Chinese open-weight models (DeepSeek V4, Kimi K3, Qwen 3.6) match much of the frontier. The research question has shifted from 'can it answer?' to 'can it be trusted to act?'

The shape of the story

Notice the rhythm: each era's defining success comes from abandoning the previous era's core assumption. Symbolic AI assumed knowledge must be written down; deep learning let it be absorbed. The scaling era assumed bigger training runs were everything; the agent era added a second lever — letting the model think and act longer at the moment of use. The newest form, which some labs have begun calling goals, does not answer the question so much as move it: give the system a verifiable objective and it will plan, act, check its own work and iterate for hours without supervision. Each shift looked, from inside the previous paradigm, like cheating.

But notice what this last one shifts. Intelligence stops being judged as the quality of one response and starts being judged as the reliability of a long chain of actions — a different problem, with different failure modes. A model that is right 95% of the time is impressive in conversation and close to useless across forty dependent steps, where errors compound. And autonomy is expensive in ways demos rarely show. Every step of deliberation is machine time somebody pays for. The same instruction run twice may take two different routes. And the more capably a system acts alone, the harder it becomes to supervise, audit or stop. The problem has changed shape; it has not been solved.

02Foundations

A machine that learns is a machine with dials

That story ran all the way to 2026. Now rewind: strip away the vocabulary and machine learning is one idea, repeated at increasing scale. You can hold the whole thing in your head. Let's build it.

Forget “artificial intelligence” for a moment. Consider a humbler object: a box with an input, an output, and a few million adjustable dials. Feed it a photo; it outputs a number between 0 and 1 meaning “how cat-like is this?”. With the dials set randomly, its answers are garbage. The entire field of machine learning is the study of one question: how do you turn the dials so the answers stop being garbage?

You could try dials at random — hopeless with millions of them. You could reason about what each dial should do — also hopeless; nobody can articulate what dial #4,201,337 contributes to cat-ness. The trick that works is embarrassingly pragmatic. Define a single number that measures how wrong the box currently is, averaged over many examples. Call it the loss. Now the vague dream of “learning” becomes a concrete task from calculus: find dial settings that make the loss small.

The foggy mountain

Picture the loss as altitude in a landscape where every location is one possible setting of all the dials. Learning means descending this landscape. But there's a catch: you are in fog. You cannot see the valley — you can only feel the slope under your feet. So you do the only sensible thing: take a small step downhill, feel again, step again. That is gradient descent, and it is how essentially every modern neural network is trained. Not a metaphor — the actual algorithm.

Gradient descent, liveClick the landscape to place the hiker · adjust the step size
Loss: 5.058

Click anywhere on the landscape to drop the hiker there. Small steps are safe but slow; big steps overshoot and can bounce out of a valley entirely — or, sometimes, escape a shallow dip and find a deeper one. Real training does exactly this, but in millions of dimensions at once.

The one-dimensional picture above is a helpful lie. Real loss landscapes have as many dimensions as the model has parameters, and intuition built in two or three dimensions routinely misleads there.

The usual worry is getting stuck in a local minimum. In high dimensions this turns out to be rare, for a precise reason: a point is a local minimum only if the surface curves upward in every direction leading away from that point. With a billion dimensions to satisfy at once, that is a demanding condition — and the more of them there are, the likelier it is that at least one points downhill. Far more common is the saddle point, curving up in some directions and down in others — exactly a mountain pass: rising toward the summits on either side, falling toward the valleys ahead and behind. Descent slows to a crawl there because the slope is nearly flat, but a way down still exists. What it costs you is time, not the way out.

This is one face of the curse of dimensionality: past a few dozen dimensions, space grows so vast that two points drawn at random almost always sit at roughly the same distance from each other. No intuition acquired in three dimensions survives there. Momentum and per-parameter step sizes — Adam, the most widely used optimiser today, and its variants — were built mainly to cope with gradients that are noisy and wildly uneven in scale; escaping saddles quickly is a welcome side effect.

Where does that noise come from? Not from the landscape, which is fixed, but from how the slope is measured. Reading it across the whole training set for a single step would be ruinous, so each step uses a small random batch of examples instead — stochastic gradient descent. Every step therefore points slightly wrong, and that jitter is what shakes the walk off the flat saddles above: with a perfectly measured slope, the walk would sit on one indefinitely.

So what's inside the box? Here the brain makes AI its most productive loan: the neuron. A neuron, in this context, is almost insultingly simple.

Go back to the cat photo. To judge it you do not weigh every clue equally: pointed ears count for a lot, the colour of the background for almost nothing, and a dog's snout counts against — it pushes the answer away. You add the clues up, each with its own importance, and arrive at a level of conviction.

A neuron does nothing else: it takes several input numbers, multiplies each by an adjustable value — its weight, which is to say the importance it gives that input — and adds them up.

Then comes the last step, and it is the one that matters. The total is not passed on as it stands: it travels through an S-shaped curve, what practitioners call a nonlinearity. Below a certain level the output stays near zero — an isolated clue sets nothing off. Around a threshold everything happens at once: a small change in the total swings the answer. Beyond it the response levels off — you cannot get any more convinced.

10floorswitchceilingtotal receivedoutput
The neuron's output against the total it receives. Far left, nothing happens. Around the threshold, a small change in the total swings the answer. Far right, the response levels off — it cannot get any more convinced.

That curvature is not a detail: without it, stacking a hundred layers would come to exactly the same thing as laying down one. A neuron, in short, answers a single question: “given the clues I receive and the importance I give each of them, how convinced am I?”

The power comes from composition. Arrange neurons in layers, each layer listening to the previous one, and something lovely happens: early layers learn to detect simple things (an edge, a colour gradient), middle layers combine those into parts (an eye, a whisker), late layers combine parts into concepts (a cat). Nobody designs this hierarchy. It emerges — at least on tasks like this one — from nothing but turning dials to reduce loss. That is one of the first genuinely surprising empirical facts of the field.

One question remains, and it's the crucial one. In the fog, it is the slope underfoot that tells the hiker which way is downhill — but with millions of dials, how do you compute the downhill direction for every dial at once, without trying them one by one?

Backpropagation, or the art of assigning blame

The network made an error. Which dials are at fault, and by how much? Backpropagation answers this by running the network's own wiring in reverse. The error at the output flows backwards, splitting at each connection according to how much that connection contributed to the result — the way you would trace a late delivery back down its chain: you start from the arrival time, and at every stage you ask how many minutes were lost there. The warehouse cost ten, the sorting centre four, the last mile the rest. One backwards pass, and every dial in the network knows its exact share of the blame and the direction to move. It is just the chain rule from calculus, applied with bookkeeping discipline — and it is the single algorithm underneath everything you will see below. When people say a model “learned”, they mean: blame flowed backwards a few billion times.

Train a real networkRuns actual backpropagation in your browser — nothing is faked
Puzzle
Hidden neurons
epochs 0
loss

This is a real network — 2 inputs, one hidden layer, trained with backpropagation in your browser. The background is its current opinion about every point of the plane. Try the spiral with 2 neurons: it can't. With 16, it can. Capacity matters — and this one has at most 65 dials. Frontier models have around a trillion.

The aside above called backpropagation the chain rule with bookkeeping. Here is the bookkeeping.

A network is a composition of functions: the loss depends on the last layer, which depends on the one before, and so on down to the input. Every layer carries its own weights; differentiating the loss with respect to one of them means walking the whole chain that separates them. The chain rule says the derivative of a composition is the product of the derivatives along the way — ∂L/∂w = ∂L/∂y · ∂y/∂z · ∂z/∂w. Each factor is local: a layer needs to know only its own operation and the gradient arriving from above.

The efficiency is in the direction you multiply. Computing derivatives forwards would cost one pass per parameter: for a billion-parameter model, a billion passes. Multiplying from the loss backwards yields every parameter's gradient in one pass, at roughly twice the cost of a forward pass. Two, not a billion — that is the whole of it.

So a gradient is cheap. What is expensive is recomputing it: a frontier training run repeats the operation at every step, billions of times, across trillions of words. Reverse-mode automatic differentiation does not make training free; it moves it from physically impossible to merely very expensive. Expensive in a particular way, too: walking back down the chain requires having kept the intermediate results of the walk up. Training is therefore not merely compute-hungry but memory-hungry — which is the physical reason for the bottleneck section 07 will call the memory wall.

Every neural network since 1986 — including the trillion-dial systems you talk to today — is this exact recipe: a stack of neurons in layers, a loss, blame flowing backwards, dials nudged downhill, repeated until the money runs out. What changed is not the idea. What changed is the scale — and, as we're about to see, one architectural invention that made scale worthwhile.

03Transformers

Attention: the architecture that ate the world

In 2017, a paper with a Beatles-referencing title proposed a simpler way for networks to handle language. It turned out to be the most consequential engineering decision of the decade.

Language has a property that tortured early neural networks: the meaning of a word depends on other words that may be arbitrarily far away. In “the keys to the old cabinet are missing”, the verb agrees with keys, five words back. Pre-2017 networks read text the way you would read a page through a letterbox slot, one word at a time, never seeing the whole of it, carrying a single summary of everything so far. That strictly sequential reading has a name: recurrence. By word forty, the summary was mush — and for a mechanical reason: the learning signal, travelling back word by word, was multiplied at each step by factors smaller than one until it faded to nothing, which practitioners call the vanishing gradient. And because each word had to wait for the previous one, the process couldn't be parallelized — poison, in a field whose entire strategy was to throw more computation at the problem.

The transformer's proposal: stop reading in order. Let every word look directly at every other word, all at once — and let the network learn which words are worth looking at. When a model is generating text, each word can only look back at what already precedes it; what changed in 2017 is that the looking happens in parallel rather than in sequence. That mechanism is called attention, and the 2017 paper's title was literal: attention is all you need. The recurrence, the slot, the mush — all deleted.

The cocktail party

Take a sentence: the animal didn't cross the street because it was too tired. You know the cocktail-party effect: in a noisy room you hear only the conversation that concerns you — your name, spoken across the room, reaches you through the din. That ability to pick, out of everything reaching you at once, the little that matters, is attention — and the mechanism that does the same for words took its name. Each word in a sentence is a guest at that party, and each carries two things: what it is listening for — its query — and what it has to say — its key. The word it listens for one question: “is anyone here a thing I could refer to?” The word animal has something to say: “I'm a concrete noun, recently mentioned.” When a query matches a key, information flows between them — and it leaves the conversation meaning, effectively, the animal. Every word does this with every other word simultaneously; a “head” is one way of listening, and each layer runs dozens in parallel — in one, every verb listens for its subject, to agree with it; in another, for who did what to whom; in another still, every word listens for tone, or rhyme, to stay in key.

Watch attention resolve meaningHover or tap a word · try changing 'tired' to 'wide'

Hover or tap any word: you will see which other words in the sentence the network consults to pin down its meaning. Percentages are its attention weights. Take the first two sentences: change tired to wide, then look at it. The same word, in almost the same sentence, gathers its meaning from a different place — and no rule told it to. That behaviour came out of the network's training alone, which the section explains further down.

The values shown are illustrative: they reproduce the shape of what is observed in real models without being a readout of one. A real model, in fact, runs several dozen of these computations in parallel, each following a different kind of link — grammatical agreement here, who did what to whom there. Those parallel copies are called “heads”; only one is shown.

The cocktail-party picture translates exactly into mathematics, and the formula fits on one line:

Attention(Q, K, V) = softmax( QKT / √d_k ) V

Every word produces three vectors, drawn from the same starting point by three different calculations. The query (Q) says what the word is listening for. The key (K) says what it has to say to whoever is listening. The value (V) is what it actually passes on once it has been attended to. Query and key only decide who looks at whom; the value alone travels.

Follow the word it in “the animal didn't cross the street because it was too tired”. QKᵀ matches the query of it against the key of every other word by a dot product, giving one raw match score per word. softmax turns those scores into positive weights summing to exactly one — say 0.61 on animal, 0.12 on street, the rest scattered. Those are the percentages you just hovered over.

That leaves the division by √d_k, where d_k is the number of components in a key vector. It is the “scaled” in the formula's full name, scaled dot-product attention, and it is not cosmetic. The more components the vectors have, the larger dot products get; fed such spreads, softmax would hand a weight of almost one to a single word and almost zero to every other. Attention would freeze on one candidate — and, worse, the signal used to correct the dials would grow so faint that the model would stop learning. Dividing by √d_k brings the scores back into a range where the softmax stays responsive.

Finally, multiply by V. Two levels are worth keeping apart here, because this is where it goes wrong: the weights do look like probabilities spread across the words of the sentence. What comes out is not one. It is the average of the value vectors, weighted by those weights — a new vector for it, made 61% of whatever animal had to pass on. The word has not moved; it has changed meaning.

That is the whole mechanism. Everything else — many heads in parallel, stacked layers, the feed-forward blocks between them — is repetition and plumbing around this one line — indispensable, but not the idea.

Why did this change everything? Three reasons, in ascending order of importance. First, it works better: no more slot, no more mush — long-range relationships are one direct hop away. Second, it's parallel: all words are processed at once, which is exactly the workload GPUs were built for. Training that would take months of sequential reading became weeks of parallel matrix arithmetic.

Third — and this was the genuine surprise — the transformer scales. Most architectures improve with size and then plateau. Transformers kept improving, smoothly and predictably, across seven orders of magnitude of compute. Researchers plotted loss against model size, dataset size and compute, and got clean straight lines on log-log paper — the famous scaling laws. That predictability transformed AI from a science experiment into an industrial program: for the first time, you could budget for intelligence.

And what task do you train this architecture on? The dumbest one imaginable: predict the next word. Take all the text you can find; walk through it word by word, asking the model for the next one each time, and turn dials until it guesses well. The task sounds trivial. It is not. To predict the next word of a detective novel's final page, tracking the plot pays; to predict the result of “2+2=”, arithmetic pays; to continue a Python file, so does modelling a programmer's intent. Prediction does not strictly require these abilities: it rewards them, relentlessly and at enormous scale. That is enough to push the machine into modelling the world that produced the text — into assembling what researchers call a world model. An internal picture of how things behave, never programmed, built for no better reason than that it sharpens the next guess. How much of a world model these systems really hold is among the field's liveliest arguments.

Everything from here is counted in a unit that needs defining. Models don't actually work in words but in tokens — the chunks of text a model treats as single units: most often a whole common word, a fragment as soon as the word is long or rare, sometimes a bare punctuation mark. There are therefore slightly more of them than words — and noticeably more outside English, the language the common tokenizers were tuned on. The same text costs more to process, and fills the context window sooner, in almost every language that is not English: a quiet tax, but one that gets paid. Where this essay says word, the machine says token; the distinction rarely matters for intuition, but most of the numbers you will see — context lengths, prices, training-set sizes — are measured in tokens.

What a model actually outputsPick a prompt · drag the temperature dial
The capital of France is
Paris
96.0%
the
1.9%
located
1.1%
one
0.6%
famous
0.3%
Lyon
0.1%
Moderate: sample roughly according to the learned distribution.

A language model's raw output is exactly this: a score for every token in its vocabulary. Note how the factual prompt concentrates almost all probability on one answer, while the storytelling prompt is genuinely uncertain — many continuations are equally reasonable. Temperature doesn't change what the model knows; it changes how adventurously you sample from it.

Attention's cost grows with the square of the text length — every word attending to all the words before it. That is why “context windows” (how much text a model can consider at once) became a battleground: from 2,000 tokens in GPT-3 to a million or more today, via a great deal of clever engineering. Keep this picture — a next-word predictor with learned attention, grown to a trillion dials — because everything in the next section is about what such a thing does and doesn't become when you train it.

04How models learn

Memorization, generalization, and the ghost in the statistics

Training is where the engineering lives — and where the deep questions hide. This section takes both seriously: first the machinery, then the questions people actually want to ask, treated with the rigor they deserve.

Start with the central tension of all learning, human or machine. A student who memorizes past exam papers word-for-word will ace any repeated question and fail any new one. A student who extracted the principles will manage even a question nobody has asked before. That is what generalizing means. Machine learning lives entirely inside this tension: a model with enough capacity can memorize its training data perfectly — and be useless. The whole craft is getting a model to compress experience into principles instead.

Overfitting, liveDrag the flexibility slider · watch the two errors diverge
error on data it saw: 0.007error on new data: 0.020

Blue dots: noisy observations of the dashed green process. The orange curve is a model fitted to the dots. Around degree 3–5 it captures the real pattern. Push it to 15 and watch it thread every dot perfectly — while its error on new data explodes. It has memorized the noise instead of learning the signal. Every AI lab fights this exact battle, with a trillion dials instead of fifteen.

Here is what makes large language models philosophically interesting rather than just big: they generalize when theory said they should memorize. A trillion-dial model trained on text has, on paper, the capacity of the degree-15 polynomial in the demonstration above, a billion times over. Classical statistics predicts catastrophic overfitting. Instead, these models transfer to problems they never saw. Researchers have even watched small networks flip suddenly, deep into training, from memorization to a solution that generalizes — a phenomenon named grokking. It has been observed robustly on simple algorithmic tasks, modular arithmetic among them; whether large models do the same thing on natural language, by the same mechanism, is still open. Why the descent through a trillion-dimensional fog reliably finds solutions that generalize is still not fully understood — one of the few places where the field admits the limits of its own knowledge without hedging: we can build it, and steer it, without entirely knowing why it works.

In practice, a modern assistant is made in stages — each one a different answer to the question “what should the loss measure?”

From internet text to assistant, in four stagesClick each stage
Predict the next token, across trillions of words

The model reads a filtered slice of humanity's written output — web pages, books, code, papers — and for every position, tries to guess what comes next. Blame flows backwards; dials turn. Out the other end comes a 'base model': a vast, amoral simulator of text. Ask it a question and it may answer, continue your question with three more questions, or write a forum argument about it. It has absorbed an enormous amount of knowledge but has no notion of being helpful — it only knows what text tends to follow what.

AnalogyA student who has read the entire library, absorbed everything, and answers every prompt with 'here is what would plausibly come next in the book you seem to be reading.'
On self-improvement

Reasoning training, the last of those stages, is worth pausing on, because “AI improving itself” — recursive self-improvement, RSI in the jargon — is where hype and reality most need separating. What exists today: models that practise on automatically-checkable problems and get measurably better; models that generate training data for other models; models whose coding output accelerates the labs building their successors. That last loop is real and economically significant — AI researchers at every major lab now write code with AI. What does not exist: a system spiralling in capability without human-controlled training runs, data pipelines, and (as we'll see in section 07) staggering physical infrastructure. Architecture search is real, but it runs inside bounds people set. The feedback loop runs through factories, not just code.

Now the questions everyone actually asks — can it imagine? does it have an unconscious? does it understand? These deserve better than the two lazy answers on offer: “it's just autocomplete” (which explains nothing about the behaviour you can observe yourself) and “it thinks like us” (which assumes exactly what needs proving). The right tool is a ledger: for each claim, what the evidence actually supports — evidence drawn mostly from interpretability, the young science of opening these networks up and tracing what happens inside.

A ledger of claims about machine mindsClick each claim · colour marks evidential status
Established findingActive research, partial evidenceOpen question / speculation

Interpretability researchers can now extract millions of 'features' — directions in the model's internal activations that fire for specific concepts: the Golden Gate Bridge, deception, code bugs, sycophancy — the urge to flatter the user. Many are cross-lingual and cross-modal: the same feature fires for 'bridge' in English, French, or in an image. Artificially amplifying a feature changes behaviour predictably — Anthropic's famous demo forced Claude to steer every conversation toward the Golden Gate Bridge. Concepts, in a real mechanical sense, exist inside these systems.

Circuit-tracing work published by Anthropic in 2025 caught a model, mid-poem, internally representing candidate rhyming words for the end of the next line before writing its first word — then composing the line to arrive there. The same toolkit showed a model performing genuine multi-step reasoning internally ('Dallas → Texas → capital → Austin') rather than pattern-matching. Planning horizons are short, but planning is mechanically real.

Depends what you mean — and here precision matters more than the answer. If imagination means combining learned concepts into configurations never seen in training ('a Baroque cathedral made of ice, sketched by Escher'), models demonstrably do this; novel combination is exactly what their internal geometry supports, and it is why they can write a sonnet about TCP/IP, the protocol that moves data across the internet. If imagination means simulating counterfactual worlds and caring about the difference — holding an image because it matters to you — nothing in the architecture obviously provides that, and no experiment currently distinguishes 'recombines representations' from 'imagines' in the human sense. The honest summary: the generative half of imagination is clearly present; the experiential half is not established and may not be well-defined for these systems.

There is a real phenomenon the word gestures at, and it's one of the most important findings in the field: most of what a model computes never appears in its output. Features fire that the model doesn't mention. More strikingly, a model's written chain-of-thought — the reasoning it spells out before committing to an answer — is not always faithful. Models have been caught reaching an answer by one internal route while narrating a different, more presentable justification, like a student writing tidy proof steps after intuiting the result. Anthropic's 2025 'emergent introspective awareness' experiments found models could sometimes notice concepts injected directly into their activations — evidence of limited, unreliable access to their own internal states. So: hidden processing shaping visible behaviour, imperfectly accessible to introspection — structurally, that rhymes with a subconscious. But the human subconscious involves drives, memories and suppression; none of that machinery is known to exist here. Use the analogy; don't inhabit it.

Partially, and the partial part matters. Attribution-graph methods can trace how information flows from input to output and yield genuine circuit-level explanations — but in Anthropic's own assessment, the 2025 tools produced satisfying insight on only about a quarter of prompts examined, and explanations cover fragments of behaviour, not the whole computation. The field is roughly where neuroscience would be if it had perfect recording of every neuron but was still learning what questions to ask. Progress is fast; a complete reading is nowhere in sight.

Nobody knows, and — this is the uncomfortable part — nobody currently knows how to know. There is no agreed test for machine experience; every behavioural signal (saying 'I feel curious') is exactly what a good text predictor would produce anyway, so behaviour alone settles nothing in either direction. Interpretability shows functional states that modulate behaviour the way emotions modulate ours — representations of uncertainty, of distress-adjacent situations — but a functional analogue is not evidence of felt experience. Anthropic maintains a model-welfare research program precisely because the question is open, not because it is answered. Intellectual honesty here cuts both ways: confident claims that models feel, and confident claims that they cannot, are both running ahead of the evidence.

What the ledger actually shows: do they understand? The interesting frontier is not “is it conscious, yes or no” but the growing catalogue of mechanically traced cognitive structure — concepts, plans, unfaithful self-reports, each on its own footing of evidence — in systems whose foundation is nothing more exotic than next-word prediction. That catalogue should leave you more impressed and more careful at once: these systems are more than a lookup table, and the words we borrow from human minds — imagine, know, want — fit them only loosely, like clothes tailored for someone else.

The same discipline applies to the term you will meet most often. AGI — artificial general intelligence — has no definition the field agrees on: an economic threshold for some, a benchmark score for others, genuine understanding for others still. When a timeline is announced, then, the useful question is not when but which — whose AGI, measured how? A surprising share of the disagreement about arrival dates turns out to be disagreement about the word.

05The working vocabulary of 2026

Fifteen words that now run the world

Every technological shift mints a dialect, and fluency in it is half of understanding the shift.

The machinery is in place; what remains is the language of the world that grew up around it. Here is how the fifteen terms fit together. The LLM is an engine, and a mixture of experts is how that engine got enormous without becoming proportionally expensive to run. The context window is its working memory. Inference is that engine running, and a chain of thought is the steps the model writes out for itself before answering — one way, among others, of buying a better answer by leaving that engine running longer.

Fine-tuning and RAG are two ways of giving it your knowledge, and they are quite different: one modifies the model itself, the other puts your documents in front of it at question time. The modifying, in practice, usually means LoRA (low-rank adaptation): freeze the model, train a thin sheet of corrections over it — an errata slip rather than a new edition. Around the engine, people now build agents: models with tools, left to work on their own. The rest — the whole toolkit that has grown around them — has names, and the cards below give them. Two paragraphs, and you hold the essentials of the structure.

The glossaryClick any card to expand

A vocabulary is a map of what people argue about. Every one of these words is also a bet someone has placed — on open or closed, on scale or efficiency, on agents or answers. Which brings us to the people placing them.

06The players

Eight bets on the same future

The frontier is crowded, but not undifferentiated. Each major lab is a distinct answer to the same question — how do you build, control and profit from increasingly capable intelligence? — and their differences trace back to genuinely different beliefs.

One axis organizes the whole landscape: open versus closed weights. A model's weights are the learned dial-settings — the crown jewels. Publish them and anyone with the hardware can run, probe, fine-tune and build on your model, and no later decision can un-publish them; you gain ubiquity and surrender control. Open weights are not the same as an open system: the training data and pipeline usually stay private. Keep them behind an API and you retain control, safety gates and margins — while betting that capability, not availability, is what wins. The American frontier mostly chose closed (with Meta the great exception); the Chinese ecosystem overwhelmingly chose open, partly as strategy under sanction. That divergence — who chose openness, and why — may matter more to how AI spreads through the world than any benchmark.

The eight playersSelect a lab

Anthropic

Closed weights
San Francisco · 2021
The safety-first bet

Founded by researchers who left OpenAI over safety disagreements, on a distinctive premise: if powerful AI is coming regardless, the safest path is to build at the frontier while investing more than anyone in understanding and steering what you build. Home of constitutional AI (models trained against written principles), much of the interpretability research in section 04, and responsible-scaling commitments that gate deployment on safety testing — its newest Mythos-class tier ships publicly as Fable 5 with capability restrictions in high-risk domains like cyber and bio.

Flagships · 2026
Claude 5 family (Fable 5) · Claude Opus & Sonnet · Claude Code
What sets it apart
  • Dominant position in AI-for-coding and agentic work (Claude Code)
  • Interpretability research the rest of the field builds on
  • Revenue tilted toward enterprise/API rather than consumer
  • Publishes safety frameworks even when commercially awkward
How to read a crowded frontier

Benchmarks leapfrog monthly; positioning is the stable layer. Anthropic's bet is that trust compounds; OpenAI's that reach does; Google's that owning the whole stack does; Meta's that already reaching three billion people beats being the best; Mistral's that sovereignty has customers; xAI's that sheer speed of building closes a gap; DeepSeek's that efficiency beats buying power; the Chinese ecosystem's that open weights are how you set the standards. When you read the next model announcement, ask not “is it the best?” but “which bet does this advance?” — the news will make far more sense.

Every one of these bets, however, is placed on the same table — and that table is made of silicon, power and freight.

07Infrastructure & geopolitics

Intelligence is now something you mine, ship and defend

The most consequential fact about modern AI is in no machine-learning paper: it is that “software” has quietly acquired an industrial base to rival heavy manufacturing — and a supply chain with chokepoints you can count on one hand.

It's tempting to think of AI as ethereal — models in a “cloud”, weightless and everywhere. The truth is closer to heavy industry. Every response you get from a frontier model is the end point of a chain that runs through one Dutch company's light machines, one Taiwanese company's factories, three memory makers, largely one GPU designer, a handful of gigawatt-scale campuses, and a power grid straining to keep up. Each link is a place where physics, capital, and state power meet. Walk the chain:

The supply chain of thoughtClick each link · dots mark chokepoint severity

Fabrication

Hsinchu, Taiwan

Designing a chip and manufacturing one are different industries. Taiwan Semiconductor Manufacturing Company makes chips for everyone — Nvidia, Apple, AMD — and produces roughly 90% of the world's most advanced logic chips. A leading-edge fab costs $20–40 billion and takes years to build; the hard part is not making one good chip, it is making billions in a row. The share of chips that come out flawless — the yield — separates a profitable fab from a money pit, and only years of tuning hold it. That craft has proven extremely hard to replicate, though TSMC is now investing $165B+ in US (Arizona) capacity under intense political pressure.

Why it's a chokepoint

The most advanced capacity of the most critical industry on Earth sits on an island at the centre of US–China tension. This single fact shapes naval deployments, export law, and hundred-billion-dollar subsidy programs (CHIPS Act and equivalents).

Dots mark chokepoint severity — how few alternatives exist if that link fails or is denied to you. Red (●●●): effectively a single point of failure for the entire planet.

Once you see the chain, the geopolitics explains itself. Since 2022, the United States has used export controls as its main lever to slow China's AI progress. Three categories of hardware can no longer be sold to China: EUV lithography machines, the fastest accelerators, and the latest generation of high-bandwidth memory. Those bans hold only because the few companies able to build any of it sit in the United States or with its allies — ASML in the Netherlands, TSMC in Taiwan, SK Hynix and Samsung in South Korea. The results are genuinely mixed, and instructive. Controls created real ceilings: Chinese labs train on restricted or domestic silicon and it costs them. But constraint bred ingenuity — DeepSeek's efficiency breakthroughs came out of a lab designing under exactly those limits — and it accelerated the very thing the policy feared: a determined, state-backed program to rebuild the entire chain domestically, from Huawei's accelerators to CXMT's memory. Meanwhile the policy itself oscillates — bans, then licensed H200 sales, then new thresholds — because every restriction also costs American chipmakers one of their largest markets. There is no stable equilibrium here yet; supply-chain planning that once looked five years out now has roughly a twelve-month policy horizon.

Europe, holding neither of those cards, plays the rule instead. Its AI regulation, adopted in 2024, sorts uses by risk tier and puts transparency and evaluation obligations on the most capable models. That is a real lever of a different kind: it creates no capacity, it conditions access to a market — which is precisely the sovereignty bet Mistral is making.

And one square of the chessboard looms larger than all the rest: Taiwan. The island produces the overwhelming majority of leading-edge chips; a blockade or war would not merely disrupt AI — it would seize up the digital economy at large, which is precisely why some strategists call TSMC a “silicon shield” and others a single point of failure for civilization's compute. The tens of billions being poured into Arizona, Dresden and Kumamoto fabs are best read as the world buying insurance — slowly, expensively, and years behind demand.

Rational wonder, applied

Hold both of these thoughts, because both are true. The wonder: we have industrialized something adjacent to thought — machines that reason, built from sand, light and learned statistics, improving on a cadence measured in months. The caution: this power currently rests on a supply chain with single points of failure, an energy appetite colliding with grid reality, and a great-power rivalry wrapped around every link. Enthusiasts or doomsayers — who has it right? Neither: we are early in something enormous, its ceiling and its risks both still being discovered. And understanding the machinery, as you've just done, is the prerequisite for having an opinion worth holding. You are about to be asked for yours.

08Your turn

One last prediction

You have spent seven sections on how these machines work, who builds them, and what they are made of. The question turns around.

Everything above was an argument that you can hold an opinion about this honestly — that the machinery is knowable, and that knowing it changes what you are equipped to think. So here is the essay's own question, handed back to you. Place your bet, and I'll tell you where I put mine.

The betMove the slider

In ten years, calling these machines “intelligent” will look like…

a misuse of the word we correctedan obviousness we stopped arguing about

Sources and references · Grouped by section, with the weaker ones marked as such.