Ten minutes · no math · nothing to sign up for

How machine learning actually works

Nobody wrote the rules. Nobody could. A machine learns by adjusting millions of numbers, over and over, until it stops being wrong — and that one idea explains almost everything else. Five steps, in order, each with something you can touch.

Behind this text: a working systolic array. Each tile is lit by the number it holds right now, and the corner shows the multiply it is doing. Move your cursor and you become its workload — leave it alone and it rewrites its own dataflow.

PE[00,00] a 0.000 × w 0.000
acc ← acc + 0.000 = 0.000
DATAFLOW weight-stationary
ARRAY 0×0 · 0 MAC
CLOCK 1.00× · ATTN 100%
Scroll
What this page promises
No math
No sign-up
No email gate
Every number sourced
Works on a phone
Step 1 of 5The one idea everything else sits on

What is a machine learning model, really?

It is a wall of dials. Nothing more mysterious than that. Each dial is a number called a weight, and turning it changes what comes out the other end. Real models have billions of these. Here are nine. Drag one up or down and watch the picture in the middle change under your hand — and watch the error bar, which measures how far it is from the picture on the right.

That is the whole game: find the dial settings that make the error small. Everything on the rest of this page is a consequence of this one sentence.

Input digit
Your kernel — drag a cell, or focus it and use ↑↓. Amber is the target.
Step 2 of 5Turning billions of dials without looking

How does a machine actually learn?

Nobody turns the dials by hand. Instead, picture a landscape where low ground means fewer mistakes. Every possible setting of every dial is one spot on that landscape. The machine cannot see the map — it can only feel which way is downhill from where it stands, take a small step that way, and repeat. Millions of times. That is training, and there is no more to it. Move your cursor to push the hills around and watch it change its mind.

ACTIVE WALKER
CONVERGED
SADDLE ESCAPE
PARAMETER SURFACE
A short detour · eighty years on one line

The idea is old. The machine that could run it is new.

Everything in the next section was described on paper in 1943, by a neurophysiologist and a logician who had no computer to try it on. The idea then sat almost still for seventy years, not because it was wrong, but because nobody could afford the arithmetic. This is that wait, drawn to scale. Each gridline is a thousand times the one below it — a log scale — because no honest chart of this fits on a screen otherwise. Hover any point to see what it would cost a human.

Vertical axis: total arithmetic in the training run, in individual sums. Horizontal axis: the year it finished.1943 sits off the axis on purpose. It did not run on anything — it was a proof that a network of simple switches could compute, which is a different kind of achievement.

Then the other half happened: it got cheap to use

Building a model and using one are separate economies. The chart above is the building. What actually put this in your hands is the second curve: the price of getting an answer out of a finished model fell faster than almost any price in industrial history — which is why a thing that cost a national-scale budget to train costs a fraction of a cent to ask.

280×
cheaper to answer a question at 2022 chatbot quality — $20.00 down to $0.07 per million words in, between November 2022 and October 2024.
Stanford HAI, AI Index 2025, ch. 1. Fixed at an MMLU score of 64.8.
50× per year
median fall in the price of reaching any fixed test score — ranging from 9× to 900× a year depending on which test.
Epoch AI, March 2025, across six benchmarks. Post-2024 data alone: 200×.
3.2 quadrillion
words-worth of text a month now running through one company’s models — up from 9.7 trillion two years earlier.
Google, May 2026. Counts internal product use, not just paid traffic.

The part the headline numbers hide

Every “a thousand times cheaper” figure holds an old, low standard fixed and measures the price per word. Both choices flatter the trend. Newer models think before answering, which means they emit far more words per answer — so the price of a word can fall while the price of an answer rises.

Measured per finished task on hard, current work, the fall is a much soberer 5× to 10× a year, and the sticker price of the very best models has been going up 3× to 18× a year. Cheap and frontier are moving in opposite directions. Both facts are true at once, and anyone selling you only one of them is selling you something.

Sources Training-compute figures: Epoch AI, Notable AI Models (via Our World in Data, March 2025 snapshot); estimates, not disclosures, and every one carries real uncertainty. Doubling times: Sevilla et al., Compute Trends Across Three Eras of Machine Learning — 21.3 months for 1952–2010, 5.7 months for 2010–2022. The 1943 paper: McCulloch & Pitts, A Logical Calculus of the Ideas Immanent in Nervous Activity. Per-task price correction: Gundlach, Lynch, Mertens & Thompson, The Price of Progress, 2025–26 (preprint).
Step 3 of 5The word that causes all the confusion

Why is it called a “neural” network?

Both sides below run on the same five inputs at the same instants. On the left, a biological neuron: charge arrives along the dendrites, pools in the cell body, and the moment it crosses a threshold the cell fires an all-or-nothing spike down its axon. On the right, the artificial unit that borrowed the idea: each input times its weight, summed, pushed through an activation function, out as a number. Watch the two traces at the bottom — that is the real difference.

Threshold — how big the total must get before it fires 0.60

A brain cell
A neuron inside a model
How many are there?
About 86 billion neurons in one human brain, each wired to roughly 7,000 others — on the order of a hundred trillion synapses.
A large model has hundreds of billions of weights. Comparable in count, but every connection is one plain number and nothing else.
How fast is one of them?
A few spikes a second at rest; a few hundred a second flat out. Slow — but 86 billion of them go at once.
Billions of multiply-adds a second per chip, in tight lockstep. Fast — but far fewer things happening truly in parallel.
What is the message?
A spike: identical every time, all-or-nothing. The meaning is in how often and exactly when the spikes arrive.
A number, carried at whatever precision the format allows. Timing means nothing; only the value does.
How does it learn?
Connections that fire together get stronger, locally and continuously — “cells that fire together, wire together.” No one tells a synapse the right answer.
Backpropagation: the final error is traced backwards through every layer, and each weight is nudged by exactly its share of the blame.
Can it rewire?
Constantly. Synapses grow, strengthen, and are pruned away for your whole life. The wiring diagram is the memory.
The graph is fixed when the model is built. After training, the weights are frozen — everything new has to fit in the context window.
What does it cost to run?
About 20 watts for the whole brain — less than the bulb in a reading lamp.
A frontier training run draws megawatts for weeks. Roughly a million times the power for a narrower job.
The honest part. An artificial neuron is a 1943 cartoon of a brain cell, drawn before anyone knew what a real one does, and it has barely changed since. Real neurons have branching arbours that compute on their own, dozens of neurotransmitters, timing effects, and glue cells that participate in thinking. Nothing in a model does any of that. What survived the analogy is one small, sturdy idea: weigh your inputs, add them up, and only pass something on when the total is worth passing on. Repeat that a few hundred billion times and you get something startling — but you did not get a brain, and it is more interesting to know that than to pretend otherwise.
Step 4 of 5First, everything becomes numbers

Everything becomes a vector of numbers first

It only multiplies numbers. So before any of the layers below can run, whatever you gave it — a photo, a sentence, a sound — has to be turned into a list of numbers. Watch both conversions happen. Nothing clever occurs here: it is bookkeeping, and it is the same bookkeeping every time.

Top: a picture becomes brightness values — one number per square, and that is the entire input.Bottom: text is split by a fixed tokenizer into tokens, each token becomes an ID, and each ID becomes an embedding — a long vector of numbers.
Step 4 of 5Simple parts, stacked deep

What does one layer actually learn?

This is a small model that reads handwriting — not a chatbot. It is here because it is the only kind you can actually watch: a chatbot’s layers do the same job on meaning instead of pixels, where there is nothing to see. Stack the units from step 3 into rows, and each row learns something bigger than the row below. Write a number and the machine chops it into 784 squares of light and dark. The first row hunts for edges. The next finds shapes made of edges. The next, whole digits. Nobody told it to work in stages — that is simply what the dial settings with the lowest error turned out to look like. Every tile you see is a real number from a real network, not an illustration. Pick a digit and step through it slowly.

784 → 4×24² → 4×12² → 6×8² → 48 → 24 → 10
PARAMS 21.4K
LATENCY 0.9 ms
PRECISION bf16
1 · Choose the input digit
2 · Step the forward pass
Step 5 of 5Putting it together

So what happens when you type a question?

Your question gets chopped into chunks called tokens and laid out on a desk, next to the rules it was given, your earlier messages, and anything it looked up. Then it reads the whole desk and guesses the next chunk — then does it again, and again, until the answer stops. It is not retrieving an answer. It is guessing the next piece, very well, very fast. The lower lane shows where the dial settings came from in the first place: the text it was trained on, and the shaping that came after. Those dials are frozen while it answers you — it is not learning from your question.

CONTEXT 200K
DECODER BLOCKS 30× shown
TOOL LOOP re-enters context
WEIGHTS frozen at deploy
Not a metaphor — measured, in 2025 and 2026

So what is actually inside one?

Until recently the honest answer was “a wall of numbers, and nobody knows.” That has changed. Researchers can now trace which parts of a model light up while it answers, the way a hospital scanner traces a brain — and what they found is stranger and more specific than either the hype or the dismissals suggested. Three findings, each of which changes how you should use one.

These are not opinions about AI. They are things somebody opened up a model and measured. Tap each one to see what it looks like.

plans
Asked for a rhyming couplet, it picks the last word first and writes backwards toward it. Suppress that word inside the model and the whole line is rewritten to land somewhere else.
It is not choosing one word at a time as it looks. It has a destination in mind several words out.
no language
“Big”, « grand » and “大” light up the same internal features before any language is chosen. The bigger the model, the more it shares.
It has a language-neutral middle. That is why it can be taught something in English and use it in Japanese.
not why
When a model explains its answer, that explanation is generated separately from the computation that produced the answer. Sometimes it reasons backwards from a conclusion it already picked.
Its stated reasoning is evidence, not proof. A confident explanation is not an audit trail.

The finding that explains hallucination

Inside these models there is a circuit that declines by default. It stays on unless a separate “I know about this” feature fires and switches it off. Hallucination is what happens when that recognition feature fires for something the model does not actually know — the refusal lifts, and the machine answers fluently about nothing.

That is why hallucination is not a bug someone forgot to fix. It is the same mechanism that lets the model answer anything at all, misfiring. And it is why “are you sure?” is a weak check and “show me the source” is a strong one.

Even with these tools, only a fraction of what happens inside is currently legible — recent work puts the share a model can accurately report on its own internals at roughly one part in fourteen. Everything here was measured on real production models, not toys.
Sources Rhyme planning, the shared language-neutral space, unfaithful explanations and the default-refusal circuit: Anthropic, On the Biology of a Large Language Model, March 2025 and its companion circuit-tracing methods paper. Limits of introspection: Anthropic, emergent introspective awareness, 2025. Method background: Transformer Circuits.
The question everybody actually has

If it is only guessing, why is it ever right?

A raw guess from memory is a scattergun. Ask a good model a question about something that happened last week and, with nothing but its training to go on, it gets it right about one time in ten. Everything that turns that scattergun into a rifle is scaffolding bolted on around the model — not extra intelligence inside it. Switch the pieces on below and watch the spread close.

This is the single most useful thing a non-engineer can know. When an assistant is accurate, it is usually because someone gave it the right material and a way to check itself. When it is confidently wrong, one of these pieces was missing — or, worse, was present and wrong.

10
right answers out of 100
90
wrong, in the same confident voice
work done per answer
Memory only
what is switched on
Each end point is measured; the blend between them is illustrative. Nothing here changes the model — the dials stay frozen. It is all plumbing around a frozen model. Checking itself costs real work. The gain is genuine, but so is the electricity in the next section.

The failure everyone should understand

Give a model a document that contains a wrong answer and it will usually repeat the wrong answer — in a controlled test, 66.1% of the time, even when its own training said otherwise. Retrieval does not make a model truthful. It makes the model faithful to whatever it was handed.

So the question to ask about any AI answer is never “is this model good?” It is “what did it read, and can I see it?” An assistant that shows its sources is not being polite. It is the only part you can actually audit.

Sources Fresh-question accuracy without and with retrieval, 10.0% → 84.5%: LiveNewsBench-style live evaluation, 2025–26. Tools versus prompting alone, about +12 points: ARTIST, agentic reasoning with tools. Self-checking with confidence filtering, 91.8% → 99.9% on AIME 2025 using 84.7% fewer tokens: DeepConf. Repeating a wrong retrieved document 66.1% of the time: Wu et al., knowledge conflict in RAG, ICLR 2025.
The same five steps, one more time

What does one answer cost in arithmetic?

Four hops, repeated for every single chunk of the answer. Multiply this by a billion people and you get the second half of this page.

01Tokenise

Your words are split into tokens the moment they land, and slotted into the batch of requests already in flight.

02Fetch the dials

The weights for each layer stream out of memory into the chip's own local store, one wavefront ahead of the activations that will need them.

03Matrix multiply

Numbers march across a systolic array: values flow left to right, running totals build top to bottom, and every cell does one multiply-and-add per tick, forever.

04Sample the next token

The scores for every possible next token are turned into a choice on the chip itself, and that chunk is on its way to you before the next layer has finished loading.

The part that surprises people

How fast is this actually getting better?

Forget scores out of a hundred. Here is a measure anyone can feel: give the machine a job, and ask how long that job would take a person. In March 2023 the best models finished jobs that take a human about four minutes. By April 2026, about seventeen hours — the same test, the same people scoring it. The length of job a model can finish half the time has been doubling roughly every four months.

The line below is not a forecast. Every dot is a model that shipped, plotted on the day it shipped. Notice the scale on the left — each step up is ten times longer, and the line is still close to straight.

50% success rate. These are jobs the model finishes about half the time — not jobs it can be trusted with. Software and research jobs only. On tasks that need eyes and a mouse, the same measurement is 40–100× shorter. The shaded band is uncertainty. For the newest models it is wide: the honest range on the last dot spans hours.
7 months
How long it took, on average since 2019, for that job length to double.
METR, Measuring AI Ability to Complete Long Tasks, 2025.
4 months
The doubling time measured over just the last two years. The curve is bending upward, not settling.
METR time-horizon dataset v1.1 — 196 days all-time, 131 days since 2023, 89 days since 2024.
19% slower
How much slower experienced open-source developers actually were when given AI help, in METR’s own controlled trial — while believing they had been 20% faster.
METR randomised controlled trial, 2025. The same lab that produced the chart above.

Why an honest version of this chart matters

Most benchmark charts you see are broken. The most-quoted coding benchmark, SWE-bench Verified, was retired by OpenAI in February 2026 after most of its test cases were found to be flawed. Others are saturated — every good model scores 90-something, so the chart flatlines and tells you nothing.

This measure survives because its units are human: minutes and hours of work. But it measures reliability at half odds on text-shaped work, and nothing else. On a broader test of real economic tasks judged by human experts, the best model still only wins or ties about 48% of the time. Both things are true at once.

Sources METR, Measuring AI Ability to Complete Long Tasks and the Time Horizon 1.1 dataset · METR, randomised trial with experienced developers · OpenAI, GDPval (best model wins or ties 47.6% against human experts) · OpenAI’s retirement of SWE-bench Verified, February 2026.
Checked 26 July 2026

Who is ahead — and can you run it yourself?

There are two races, not one. The first is between the frontier labs, whose best models you can only rent through their own servers. The second is between open-weight models, which anybody can download and run on their own hardware. The gap between them is now the single most important number in this industry, and it is about four months.

Four months is not a technical detail. It decides whether capability stays rentable from three companies or becomes something a hospital, a bank or a government can hold on its own premises. Amber bars below are models you can download today.

~4 months
How far behind the best open-weight model runs against the best closed one — about 8 points on a capability index that spans roughly 60.
Measured across the whole 2023–2026 record, the lag has stayed remarkably constant even as absolute capability multiplied.
17.4 hr
The longest human job the best model now finishes about half the time, up from four minutes in early 2023 — the chart in the section above.
Above roughly 16 hours the measurement itself gets shaky; treat the top of that chart as a direction, not a number.
retired
The most-quoted coding benchmark of 2024–25 was withdrawn in early 2026 after its answers were shown to have leaked into training data.
Any single benchmark score older than a few months should be read as marketing until you can see the test set.

How to read any AI benchmark, in one paragraph

A benchmark is a school exam, and these models have read the internet — including, very often, the exam. That is not cheating by anyone in particular; it is what happens when a test becomes famous. So the numbers that survive scrutiny are the ones measured on problems written after the model was trained, scored by people, on tasks nobody has an incentive to leak.

The practical version: a model that is two points higher on a leaderboard is not noticeably better for you. A model that is fifteen points higher probably is. And a model you can run inside your own building may beat a better one you are not allowed to send your data to.

Sources Composite capability index and per-model scores: Artificial Analysis Intelligence Index v4.1. Open-weight versus closed-weight lag, roughly four months and eight index points: Epoch AI, capability gap between open and closed models, May 2026. Long-horizon task measurement and its reliability ceiling: METR time horizons. Benchmark contamination and retirement: OpenAI, SWE-bench Verified.
The bill

What does all this cost in electricity and water?

Two numbers that point in opposite directions, and almost everybody has only heard one of them. One short question costs about as much electricity as a 10-watt bulb burning for a minute and a half, and about five drops of water. That is far less than the internet believes. But a billion people are asking, and the buildings that answer now use roughly as much electricity as the whole of Japan.

Your own use is almost a rounding error. The construction is not. Both of those sentences have to sit in your head at the same time, and most arguments about AI and the environment are two people each holding one of them.

15
1.3 kWh
Electricity, over a whole year
13 kettles
Same as boiling a kettle this many times
1.4 L
Water, over a whole year
2%
Of one eight-minute shower
0.24 Wh
Electricity for one median text question — a 10-watt bulb for about 90 seconds. It also uses about 0.26 ml of water: five drops.
Google, measured across Gemini text prompts, August 2025. Median, text-only, answering-only, on-site water only, published by Google and not independently audited.
415 TWh
Electricity used by all the world’s data centres in 2024 — about 1.5% of world electricity, or roughly as much as Japan. Projected to reach about 945 TWh by 2030.
International Energy Agency, Energy and AI, April 2025. Not all of it is AI; AI is the fastest-growing slice.
4.4%
Share of all United States electricity going to data centres in 2023, up from 1.5% in 2014. Projected to reach 6.7–12% by 2028 — a range that wide is the honest answer.
Lawrence Berkeley National Laboratory, December 2024.
1,287 MWh
Electricity to train GPT-3, back in 2020 — about 5.4 billion questions’ worth. Training happens once; answering happens forever, and answering is now the larger number.
Patterson et al., Carbon Emissions and Large Neural Network Training, 2021. Later models are far larger.
~90%
Share of the water that is not used at the data centre at all — it evaporates at the power station generating the electricity. Cleaner grids cut the water too.
Lawrence Berkeley National Laboratory analysis; proportion varies with the local grid.
33× less
How much the electricity per question fell at Google in a single year. Efficiency is improving faster than almost any other technology in history — and total use is still rising, because volume grows faster.
Google, 2025. The price of a fixed level of AI capability has been falling roughly 40× a year (Epoch AI).

Four things to know before you quote any of this

0.24 Wh is a median for a short text answer. Ask a model to think before it answers, or hand it a long document, and one answer can use 10 to 100 times more — up to roughly 40 Wh. Quoting the small number on its own is the most common mistake made about this topic, in both directions.

Water “withdrawn” and water “consumed” differ by roughly ten times. Withdrawn water is borrowed and largely returned. The alarming headline figures are almost always withdrawal quoted as if it were consumption.

The famous “a bottle of water per 20 questions” claim came from a draft that its own authors have since revised. The current version of that paper reports far smaller per-response figures.

League tables of company water efficiency are close to meaningless. Cooling with more water uses less electricity and vice versa — the numbers measure different trade-offs, not different virtue.

Sources IEA, Energy and AI, April 2025 · Lawrence Berkeley National Laboratory, 2024 United States Data Center Energy Usage Report · Google, Measuring the environmental impact of AI inference, August 2025 · Epoch AI, How much energy does ChatGPT use? · Patterson et al., arXiv:2104.10350.
Follow the money, then follow the steel

Why is every technology company suddenly building power plants?

Because the scarce thing is no longer ideas, and it stopped being chips a while ago. It is electricity, memory and heavy steel equipment. Around $700 billion of company money is scheduled to be spent on this build-out in 2026 — roughly the size of Belgium’s entire economy — and it is arriving faster than the physical world can absorb it.

The money moves at the speed of a press release. A high-voltage transformer takes two and a half to five years to build. That gap is the whole story of the next decade.

~$700bn
Planned 2026 AI capital spending by the largest technology companies — up about 77% on 2025. Comparable to the annual output of Belgium.
Compiled from company guidance, reported April 2026. Guidance, not spending that has happened.
$826m / day
Nvidia’s data-centre revenue, from $75.2 billion in a single quarter — up 92% on the year before. This is a reported figure, not an estimate.
NVIDIA Q1 FY2027 results, quarter ended 26 April 2026.
Sold out
Every unit of HBM4 memory for 2026, across all three companies that can make it. These chips are useless without it; 2027 allocation only opens once 2026 clears.
SK hynix, Micron and Samsung, 2026. One large buyer attributes about $25bn of its 2026 spending to memory price inflation alone.
2.5–5 yrs
Wait for a large power transformer — the equipment that steps grid voltage down for a data centre. Partly hand-wound, from a grade of electrical steel almost nobody still makes.
Industry lead-time surveys, 2025–26. Published estimates range from 128 weeks to 60 months.
438 GW
Data-centre load queuing for a grid connection in Texas alone — roughly four times the state’s all-time peak demand, and up about 300% in a year. Most of it will never be built.
ERCOT interconnection queue, June 2026. A queue is a wish list, not a plan.
~100 MW
Finished, empty data-centre space in Santa Clara, California — built, wired, and waiting for electricity that does not exist yet. The clearest picture of the bottleneck there is.
Reported November 2025. The building is not the hard part any more.

The number that keeps this section honest

Of the single most-publicised AI construction programme — nine or more gigawatts announced, half a trillion dollars attached — roughly 3% is actually built and running: about 0.3 gigawatts. Announced capacity and delivered capacity are different industries with different physics.

So treat every enormous number in this section, including the $700 billion, as an intention. Transformers, turbines, substations and skilled electricians are the real constraint, and none of them can be summoned by a funding round. When you next read that a company will spend $100 billion on AI, the useful question is not whether they have the money. It is whether anyone can deliver the equipment.

Sources NVIDIA quarterly results (primary) · company capital-expenditure guidance as compiled by the Financial Times, April 2026 · SK hynix / Micron / Samsung HBM4 allocation reporting · ERCOT interconnection queue via Utility Dive · Wood Mackenzie and GridReadiness transformer lead-time estimates · Epoch AI, tracking of announced versus operational datacentre capacity, April 2026.
If you remember nothing else

Three things to take away

You can forget every diagram above and still explain this at dinner.

One

Nobody wrote the rules

There is no list of instructions inside saying what a cat looks like or how a sentence should end. There is a wall of numbers that got adjusted until the mistakes got small. That is why nobody can fully explain any single answer it gives — including the people who built it.

Two

It is guessing, confidently

It picks the next chunk that best fits everything in front of it. When the training text supported an answer, the guess is excellent. When it did not, the guess is still delivered in the same confident voice. That is exactly why it makes things up — not a bug bolted on, a direct consequence of how it works.

Three

Ask how it would be checked

The useful question is never “is the AI smart?” It is “was there good material about this, and can I verify the answer?” Recipes, summaries and first drafts: fine. Your specific medication, a legal deadline, a number in a contract: check it. Every time.

The questions that come up at dinner

Fair questions, answered straight

Does it understand what it is saying?+

Not in the way you do. It has built an extraordinarily detailed map of how ideas sit next to each other in human writing, and it navigates that map. Whether that counts as understanding is a real argument among serious people. What is not in dispute: there is no inner voice checking whether the sentence is true.

Why does it make things up?+

Because making things up and being right are the same operation. It always produces the most plausible next chunk. When the training material supported that chunk, you call it an answer. When it did not, you call it a hallucination. The machine cannot tell the two apart from the inside, which is why it sounds equally confident either way.

Is it learning from what I type?+

Not while it is answering you. The dials are frozen. Your conversation can be fed back later into training a future version, depending on the product and the settings you chose — but the model you are talking to right now does not change as you talk to it.

Is it going to take my job?+

The honest answer is that the measurement above cuts both ways. Task length is multiplying fast. But in a controlled trial, experienced developers given AI help were 19% slower while believing they were faster. Tasks are being automated at speed; whole jobs are mostly bundles of tasks plus accountability, and accountability does not transfer.

Should I feel bad about the electricity and water?+

For a normal amount of personal use, no — a year of daily questions is a couple of litres of water and about as much electricity as boiling a few dozen kettles. The serious environmental question is not your usage, it is the pace of data-centre construction and where the grid gets the power. Those are policy questions, not personal ones.

Why do the answers get better if I explain more?+

Everything it can see is on that desk. It has no memory of you, no access to your situation, and no way to ask itself what you meant. More context on the desk means a narrower, better-aimed guess. This is also why it does well on a task with an example attached and badly on the same task without one.

What is it actually good at, then?+

Anything where lots of good examples exist and you can check the output cheaply: first drafts, summaries, translation, code you will run anyway, explaining a document you already have. It is weakest where being wrong is expensive and checking is hard — medical, legal and financial specifics about you.

Where did the numbers on this page come from?+

Every figure links to a primary source in the grey box beneath its section: METR for capability timing, the IEA and Lawrence Berkeley National Laboratory for energy, Google’s own published measurement for per-question energy and water, and company filings for spending. Where sources disagree, the range is printed rather than the flattering end of it.

If this page worked on you

Where to go next, in order of usefulness

Almost every “learn AI” list is a pile of links with no order and no honesty about effort. This one is ordered, and each entry says what it costs you. Start at the top and stop whenever you have had enough — the first two alone will put you ahead of most people arguing about this online.

Watch
3Blue1Brown — Neural Networks
The best visual explanation of everything on this page, including a genuinely excellent chapter on how a chatbot works.
About 2 hours · no maths required · free
Read
On the Biology of a Large Language Model
The source for the “what is inside” section above. Skim the pictures; the captions carry the argument.
An evening · skimmable · free
Build
Karpathy — Neural Networks: Zero to Hero
You write a working language model from nothing, line by line. Nothing else converts belief into understanding this fast.
20–40 hours · you need to be comfortable with Python · free
Track
Epoch AI and METR
Where the numbers on this page come from. Epoch for compute, cost and the open-versus-closed gap; METR for what models can actually finish.
Ongoing · charts, not takes · free
Argue
IEA — Energy and AI
The serious version of the electricity argument, from the body that counts the world’s energy. Read this before forming a view on data centres.
A long afternoon · free · policy-grade
Use
Then go and use one badly for a week. Ask it things you can check. Catch it being wrong. Nothing on this list teaches calibration; only being burned a few times does.
A week · the only irreplaceable item on this list
Skipped on purpose: several famous courses are now years out of date or were never finished. If a course predates 2023 it will teach you the machinery but none of what this page is about. You do not need maths to be usefully literate about this. You need it to build one.
Two taps, no email

Did this actually make sense?

Every revision of this page is driven by what people report here. Naming the exact paragraph that lost you is worth more than a rating — it is the input the next version is built from.

Know someone who would like this?

Most people learn what their family does for a living from a bad news article. Send them ten minutes of the real thing instead.

WhatsApp X LinkedIn Email

Now you know what the machine does. The hard part is getting it built.

Everything on this page runs on hardware somebody had to find, power and cool. MachineLearningLogistics is a control tower for exactly that: which GPUs are actually deployable, in which region, on which date, at what contract, from which provider.