- Token
- The unit a model actually reads and writes: a common word, a fragment of a rarer one, or a suffix. A page of prose is roughly 500 tokens.
- Parameter
- One number inside the model, adjusted during training. Model size is quoted as a parameter count.
- Weight
- A parameter on a connection between units. "Open weights" means the trained numbers are downloadable.
- Backpropagation
- The procedure that assigns blame for an error backwards through every layer, so each weight can be nudged. Popularised in 1986; still how everything is trained.
- Transformer
- The 2017 architecture behind essentially every frontier model. Drops recurrence and processes a whole sequence in parallel using attention.
- Attention
- The operation by which each token weighs every earlier token and decides how much each one matters for what comes next.
- Context window
- How many tokens the model can attend to at once. Leading 2026 models advertise a million.
- Mixture-of-experts (MoE)
- An architecture that routes each token to a few sub-networks instead of running the whole model, which splits size into total and active parameters.
- Active parameters
- The share of a MoE model that runs for any given token. Kimi K3 holds 2.8T and activates 104B.
- Inference
- Running a trained model to get an answer, as opposed to training it. Priced per million tokens.
- Training run
- One continuous pass of training a model from scratch. A 2026 frontier run is roughly 10²⁶ FLOP over about a hundred days.
- FLOP
- Floating-point operation — the unit compute is counted in. Training budgets are quoted in total FLOP.
- Scaling laws
- The empirical finding that loss falls as a smooth power law in compute, data and parameters, which makes capability forecastable from a budget.
- Inference-time compute
- Spending more computation per question — thinking longer — rather than training a bigger model. The second scaling axis, opened in 2024.
- Reasoning model
- A model trained to produce long chains of intermediate steps before answering.
- RLHF
- Reinforcement learning from human feedback: using human preference comparisons to turn a text predictor into something that follows instructions.
- Fine-tuning
- Continuing training on a narrower dataset to specialise a general model.
- Quantisation
- Storing weights at lower numerical precision so a model fits in less memory, at some cost in quality.
- Distillation
- Training a small model to imitate a larger one's outputs.
- Benchmark
- A fixed test set used to compare models. Every headline benchmark built before 2024 is now saturated.
- Agent
- A model given tools, a filesystem or a browser, and left to carry out a task over many steps rather than answer once.
- World model
- An internal, predictive representation of how the world changes — including under the system's own actions. The thing critics say language models lack.
- AI winter
- A period when funding and credibility collapse after promises outrun results. There have been two: 1974–1980 and 1987–1993.