Skip to content
LDS history archive · LM-001Source-led research edition

The history of large language models How prediction became a general interface.

Follow the corpora, probability models, neural architectures, training recipes, evaluation systems, and public releases that turned next-token prediction into today's language-model systems.

Every record links to a paper, archive, technical report, model card, system card, or official release. Preprints and later publications are distinguished, contributors are linked, and disputed credit or incomplete disclosure is marked.

Browse the sources

Archive navigator

Follow the evidence from letter counts to routed multimodal systems.

Drag or use arrow keys
01 / 45Markov tests dependence on the letters of a poem
45 researched records52 research sources6 eras19132026 research span
Published
Last updated
Research and curation
Let's Data Science

The researched chronology

The model grew around the prediction task.

This history begins before neural networks. It follows the corpora and sparse-data methods that made language measurable, then the architectures that learned representations and context. The later records separate pretraining, fine-tuning, preference learning, retrieval, evaluation, multimodality, and inference-time reasoning so that one model name does not hide the machinery around it.

  1. Record 01 · Probability and symbolic sequencesPublished 1913; English translation 2006

    Markov tests dependence on the letters of a poem

    What changed

    Markov classified letters from Pushkin's Eugene Onegin as vowels or consonants, then counted how often one class followed another. The experiment showed that probability theory could describe sequences whose neighboring symbols were dependent.

    Why it lasted

    A language model still asks how a symbol depends on earlier symbols. Markov's example supplied the mathematical ancestry, although it predicted letter classes rather than words or meaning.

    People behind the record
    The lineage

    The next symbol depended on the previous one.

  2. Record 02 · Information theoryJuly and October 1948

    Shannon gives sequences a measurable information content

    What changed

    Shannon modeled a source as a process that selects messages with known probabilities. Entropy measured average uncertainty, while conditional probabilities captured how the statistical structure of a sequence reduced that uncertainty.

    Why it lasted

    Cross-entropy, bits per character, and next-token loss descend from this framework. It measures predictive uncertainty without claiming that prediction alone captures meaning.

    People behind the record
    The lineage

    Uncertainty became a quantity a model could minimize.

  3. Record 03 · Language predictionJanuary 1951

    People estimate the next letter in English

    What changed

    Shannon asked human participants to guess successive letters from an English passage while revealing more context after errors. Their guesses supplied empirical bounds on the entropy and redundancy of printed English.

    Why it lasted

    The paper tied a language statistic to next-symbol prediction with context. That is recognizably close to the training task of an autoregressive language model, but the predictor here was a person.

    People behind the record
    The lineage

    Context narrowed the next-letter distribution.

  4. Record 04 · Corpus linguistics

    The Brown Corpus makes a balanced body of English computable

    What changed

    Francis and Kučera assembled 500 samples of edited American English first printed in 1961, totaling about one million words. Its documented categories and machine-readable form let researchers ask repeatable questions of the same body of text.

    Why it lasted

    Language modeling depends on a corpus before it depends on an architecture. Brown showed the value of explicit sampling, shared data, and corpus documentation, concerns that remain central at web scale.

    People behind the record
    The lineage

    A curated corpus turned language into shared training evidence.

  5. Record 05 · Statistical speech recognitionMarch 1983

    Speech recognition becomes maximum-likelihood decoding

    What changed

    Bahl, Jelinek, and Mercer framed continuous speech recognition as choosing the word sequence with the highest probability given an acoustic signal. Their system separated acoustic evidence from a probabilistic language generator and addressed sparse-data estimation.

    Why it lasted

    The paper represents the statistical turn that made learned language probabilities central to deployed speech systems. N-gram models would remain industrial workhorses long after neural alternatives appeared.

    People behind the record
    The lineage

    Decoding combined what was heard with what words were likely.

  6. Record 06 · Statistical language modelingMarch 1987

    Katz backoff gives unseen word sequences a probability

    What changed

    Katz discounted observed n-gram counts, reserved probability mass for unseen events, and recursively backed off to shorter contexts. Good-Turing estimates determined how much probability to redistribute.

    Why it lasted

    A finite corpus contains only a fraction of possible phrases. Katz backoff made sparse count models usable by assigning nonzero probabilities beyond the exact sequences in the data.

    People behind the record
    The lineage

    When a long phrase was missing, the model used a shorter history.

  7. Record 07 · Statistical language modeling

    Kneser-Ney smoothing asks where a word can appear

    What changed

    Kneser and Ney changed the lower-order distribution used during backoff. Instead of rewarding only frequent words, it rewarded words that appeared after many different histories, a better clue that they could continue an unseen phrase.

    Why it lasted

    The method corrected a subtle failure in ordinary n-gram smoothing and became the core of a leading statistical language-model recipe. It is a reminder that data sparsity was a modeling problem, not merely a storage problem.

    People behind the record
    The lineage

    Backoff used the variety of contexts rather than raw frequency alone.

  8. Record 08 · Neural sequence learning15 November 1997

    LSTM gives recurrent networks a longer gradient path

    What changed

    Hochreiter and Schmidhuber introduced gated memory cells with a protected error path. The design addressed the difficulty of learning dependencies across long intervals with ordinary recurrent backpropagation.

    Why it lasted

    LSTMs made recurrent networks far more useful for language, speech, and translation. They became the main neural sequence architecture of the 2010s before attention-based models displaced them.

    People behind the record
    The lineage

    Gates decided what sequence information should persist.

  9. Record 09 · Neural language modelingFebruary 2003

    A neural language model learns word meaning and probability together

    What changed

    Bengio and colleagues trained a feed-forward network to learn a vector for each word and a probability distribution for the next word at the same time. Similar words could share statistical strength even when an exact sequence had never appeared in training.

    Why it lasted

    The paper joined embeddings, neural probability estimation, and next-word prediction in one scalable recipe. That combination is a direct ancestor of today's pretrained language models.

    People behind the record
    The lineage

    Nearby word vectors shared evidence across unseen sentences.

  10. Record 10 · Neural language modelingSeptember 2010

    The recurrent language model beats a strong n-gram baseline

    What changed

    Mikolov and colleagues applied a simple recurrent network to word prediction and speech recognition. Unlike a fixed-order n-gram, its recurrent state could in principle use context of arbitrary length.

    Why it lasted

    The reported perplexity and word-error improvements helped move recurrent language models from an appealing idea toward a practical competitor to mature n-gram systems.

    People behind the record
    The lineage

    One recurrent state replaced a hand-chosen context window.

  11. Record 11 · Distributed representations16 January 2013

    Word vectors become cheap enough to train at corpus scale

    What changed

    The word2vec paper introduced efficient continuous-bag-of-words and skip-gram architectures for learning word vectors from very large corpora. The learned coordinates exposed regularities in syntax and semantics without a labeled dictionary.

    Why it lasted

    Embeddings became standard reusable artifacts and made distributional structure visible to practitioners. Later language models would replace one fixed vector per word with a different representation for each context.

    People behind the record
    The lineage

    Words acquired learned coordinates from their neighbors.

  12. Record 12 · Neural attention1 September 2014; published at ICLR 2015

    Attention removes the single-vector translation bottleneck

    What changed

    Bahdanau, Cho, and Bengio let a translation decoder assign a soft weight to each source position for every output word. The model learned an alignment while it learned to translate, rather than compressing the whole source into one fixed vector.

    Why it lasted

    Attention provided a content-dependent route through a sequence and a visible alignment map. The idea later became the central computation of the Transformer.

    People behind the record
    The lineage

    Each output token chose which input states mattered.

  13. Record 13 · Neural machine translation10 September 2014

    One neural network maps a sequence into another

    What changed

    Sutskever, Vinyals, and Le used one multilayer LSTM to encode a source sentence into a fixed-length vector and another to decode the translation. Reversing the source word order made optimization easier by shortening relevant dependency paths.

    Why it lasted

    The same trainable interface could map variable-length inputs to variable-length outputs. It removed much task-specific translation machinery, while its fixed-vector bottleneck exposed the problem that attention would address.

    People behind the record
    The lineage

    An encoder state became the handoff between two sequences.

  14. Record 14 · TokenizationAugust 2016

    Subwords give neural translation an open vocabulary

    What changed

    Sennrich, Haddow, and Birch represented rare words as learned sequences of frequent character units. Their byte-pair encoding adaptation let a neural translator generate unseen names and compounds without assigning every word its own vocabulary entry.

    Why it lasted

    Subword tokenization became part of the basic LLM stack. It balances sequence length against vocabulary size, though its splits can still be awkward across languages, code, and numbers.

    People behind the record
    The lineage

    A model built unfamiliar words from reusable pieces.

  15. Record 15 · Neural architectureJune 2017

    The Transformer routes context with attention alone

    What changed

    The Transformer replaced recurrent sequence processing with stacked self-attention and feed-forward blocks. Every token could directly combine information from every other position, while training could process positions in parallel.

    Why it lasted

    The architecture shortened the path between distant tokens and scaled efficiently on modern accelerators. Decoder-only Transformers later became the main foundation for autoregressive large language models.

    People behind the record
    The lineage

    Each token built its context by weighting every other token.

  16. Record 16 · Transfer learning18 January 2018 preprint; published July 2018

    ULMFiT turns language-model fine-tuning into a repeatable method

    What changed

    ULMFiT started with a general-domain language model, adapted it to the target text, then fine-tuned a classifier with schedules designed to preserve useful pretrained knowledge. The same procedure worked across several text-classification datasets.

    Why it lasted

    The paper made the order of adaptation explicit and treated fine-tuning as an engineering discipline. Its gradual unfreezing and learning-rate schedules anticipated the post-training care required by larger models.

    People behind the record
    The lineage

    General language knowledge was adapted in controlled stages.

  17. Record 17 · Contextual representation learning15 February 2018 preprint; published June 2018

    ELMo gives each word a representation shaped by its sentence

    What changed

    ELMo formed a word representation from the internal states of a bidirectional language model. The same written word therefore received different vectors in different sentences, and downstream models learned how to mix the pretrained layers.

    Why it lasted

    Contextual representations displaced the idea that one word should always have one vector. ELMo also showed that a general language-model objective could transfer across several labeled NLP tasks.

    People behind the record
    The lineage

    A word's vector changed with the sentence around it.

  18. Record 18 · Generative pretrainingJune 2018

    GPT adapts one left-to-right Transformer to many tasks

    What changed

    OpenAI pretrained a decoder-style Transformer by predicting the next token in a large unlabeled corpus, then fine-tuned it on labeled tasks. Task inputs were converted into token sequences that the same model could process with few architectural changes.

    Why it lasted

    The work joined autoregressive Transformer pretraining with supervised adaptation. It established the GPT line's core premise: next-token prediction could produce a reusable base model.

    People behind the record
    The lineage

    One next-token model became the starting point for many tasks.

  19. Record 19 · Language representation learningOctober 2018

    BERT pretrains a deeply bidirectional Transformer encoder

    What changed

    BERT trained a Transformer encoder to reconstruct masked tokens using context on both sides, alongside a next-sentence objective. Fine-tuning the same pretrained model with a small task head produced strong results across question answering and language understanding benchmarks.

    Why it lasted

    BERT made pretrain-then-fine-tune the standard NLP workflow and triggered a broad ecosystem of encoder models. Its masked objective favored representation and understanding tasks rather than free-form left-to-right generation.

    People behind the record
    The lineage

    Masked words forced an encoder to use context from both directions.

  20. Record 20 · Generative language modelingFebruary 2019; full model released November 2019

    GPT-2 shows that next-token prediction can imitate many tasks

    What changed

    GPT-2 scaled a decoder-only Transformer to 1.5 billion parameters and trained it on WebText. Without gradient updates, the model could attempt translation, summarization, question answering, and reading comprehension when those tasks were expressed as text continuations.

    Why it lasted

    The work shifted attention from a separately fine-tuned model for each task toward behavior elicited through context. It also made staged model release and misuse analysis part of the public history of language models.

    People behind the record
    The lineage

    A task description became part of the text the model continued.

  21. Record 21 · Transfer learningOctober 2019 preprint; published 2020

    T5 casts every language task as text to text

    What changed

    T5 represented classification, translation, summarization, and question answering with the same input-text to output-text interface. The study systematically compared objectives, architectures, data, transfer methods, and scale using the cleaned C4 web corpus.

    Why it lasted

    A common text interface simplified multitask training and made task prefixes an ordinary control mechanism. The paper also documented how corpus construction, training choices, and model size affected transfer.

    People behind the record
    The lineage

    Every task entered and left through text.

  22. Record 22 · Empirical scalingJanuary 2020

    Scaling laws make language-model loss partly predictable

    What changed

    Across a wide range of model sizes, dataset sizes, and training compute, the authors found approximate power-law relationships with cross-entropy loss. The fitted curves suggested how to allocate a fixed compute budget among those quantities.

    Why it lasted

    Scaling moved from an intuition toward a measurable planning tool. The laws did not guarantee useful behavior, but they made the pretraining loss of a larger run less of a blind guess.

    People behind the record
    The lineage

    More compute followed regular curves, within the tested range.

  23. Record 23 · Retrieval-augmented language modeling22 May 2020 preprint; published December 2020

    RAG lets generation consult an external document index

    What changed

    RAG combined a pretrained retriever over Wikipedia with a pretrained sequence-to-sequence generator. Retrieved passages acted as a non-parametric memory, and the system could be trained end to end for knowledge-intensive tasks.

    Why it lasted

    Retrieval gave a language model evidence beyond what its weights stored and created a path to updating knowledge without retraining the entire generator. It also introduced new failure points in search, ranking, and evidence use.

    People behind the record
    The lineage

    The generator read retrieved passages before answering.

  24. Record 24 · In-context learning28 May 2020

    GPT-3 turns examples in the prompt into temporary task instructions

    What changed

    GPT-3 scaled an autoregressive Transformer to 175 billion parameters and evaluated it in zero-shot, one-shot, and few-shot settings. Examples in the context changed its behavior without changing its weights.

    Why it lasted

    In-context learning made the prompt a temporary programming surface. The model's breadth was striking, but its failures in consistency, factuality, bias, and sample efficiency were also plainly documented.

    People behind the record
    The lineage

    Examples in context specified a task without a training run.

  25. Record 25 · Learning from human feedback2 September 2020 preprint; published December 2020

    Human preferences train a model to write better summaries

    What changed

    Annotators compared pairs of model-written summaries, a reward model learned those preferences, and reinforcement learning optimized the summarizer against that learned reward. Human evaluators preferred the resulting summaries to those from much larger supervised models.

    Why it lasted

    The experiment showed that human comparisons could shape generation where a simple reference-text loss was inadequate. The same broad pipeline later became central to instruction-following chat models.

    People behind the record
    The lineage

    Human comparisons supplied a reward after pretraining.

  26. Record 26 · Sparse mixture-of-experts models11 January 2021 preprint

    Switch Transformer scales capacity without using every parameter

    What changed

    A learned router sent each token to one feed-forward expert instead of running every expert. This sparse activation let the model hold far more parameters while keeping the computation per token closer to a dense baseline.

    Why it lasted

    Mixture-of-experts models separated total capacity from active compute. The design later became one route to scaling large language models, although routing balance and serving efficiency remained hard engineering problems.

    People behind the record
    The lineage

    A router chose which parameters processed each token.

  27. Record 27 · Parameter-efficient fine-tuning17 June 2021 preprint; published at ICLR 2022

    LoRA adapts a large model through small low-rank updates

    What changed

    LoRA froze a pretrained model and learned small low-rank matrices that modified selected weight layers. Each adapted task needed only a fraction of the trainable parameters and storage required by full fine-tuning.

    Why it lasted

    The method made customized model variants cheaper to train, store, and exchange. It also separated the base weights from an adaptation, a pattern widely used for domain, style, and instruction tuning.

    People behind the record
    The lineage

    Small learned matrices steered frozen pretrained weights.

  28. Record 28 · Code language modeling7 July 2021 preprint; product preview August 2021

    Codex specializes a language model for executable code

    What changed

    OpenAI fine-tuned GPT models on publicly available code and evaluated whether generated Python programs passed unit tests. The accompanying HumanEval benchmark measured functional correctness rather than surface similarity to a reference answer.

    Why it lasted

    Codex showed that domain-specific continued training could turn a general language model into a useful code model. Executable tests also exposed a firmer evaluation signal than prose similarity, while pass rates still depended strongly on sampling many candidates.

    People behind the record
    The lineage

    A text model was adapted to produce programs that could be executed.

  29. Record 29 · Instruction tuning3 September 2021 preprint; published at ICLR 2022

    FLAN trains a language model to follow instructions it has not seen

    What changed

    FLAN fine-tuned a pretrained language model on natural-language instructions drawn from dozens of task datasets. It then evaluated the model on task clusters withheld from the instruction-tuning mixture.

    Why it lasted

    Instruction tuning converted a collection of labeled tasks into practice at reading task descriptions. It became a core post-training step for making pretrained models easier to direct through ordinary language.

    People behind the record
    The lineage

    Many written instructions taught the model how to read a new one.

  30. Record 30 · Prompted reasoning28 January 2022 preprint; published at NeurIPS 2022

    Chain-of-thought examples elicit intermediate reasoning text

    What changed

    Few-shot prompts paired answers with written intermediate steps. On arithmetic, symbolic, and commonsense tasks, sufficiently large language models often produced their own intermediate text and reached more correct final answers than with answer-only examples.

    Why it lasted

    The prompt could influence the answer and the amount of computation expressed before it. This helped establish reasoning traces and test-time prompting as major areas of LLM research.

    People behind the record
    The lineage

    Worked examples invited the model to write intermediate steps.

  31. Record 31 · Instruction following and RLHF4 March 2022

    InstructGPT aligns a pretrained model with written requests

    What changed

    The InstructGPT pipeline used human-written demonstrations for supervised fine-tuning, human rankings to train a reward model, and reinforcement learning to optimize the policy. Evaluators preferred outputs from the 1.3-billion-parameter aligned model to outputs from the 175-billion-parameter GPT-3 base model on the tested prompt distribution.

    Why it lasted

    Post-training became as important to the user experience as pretraining. The work also documented alignment taxes, reward-model limitations, and behavioral failures rather than treating preference scores as a complete measure of safety.

    People behind the record
    The lineage

    Demonstrations and comparisons reshaped how a base model responded.

  32. Record 32 · Compute-optimal pretraining29 March 2022

    Chinchilla shows that many large models were trained on too little data

    What changed

    Using hundreds of training runs, the authors estimated that compute-optimal model size and token count should grow together. Their 70-billion-parameter Chinchilla model used four times as much data as the larger Gopher model and outperformed it on many reported tasks at the same training compute.

    Why it lasted

    The result redirected scaling toward more training tokens rather than parameter count alone. It also changed the economics of deployment because a smaller, better-trained model could be cheaper to serve.

    People behind the record
    The lineage

    Training data and parameter count had to scale together.

  33. Record 33 · Language-model evaluation16 November 2022 preprint

    HELM makes language-model evaluation multidimensional

    What changed

    HELM evaluated language models through a matrix of scenarios and metrics instead of one aggregate score. Its taxonomy included accuracy alongside calibration, robustness, fairness, bias, toxicity, and efficiency, with prompts and raw results recorded for inspection.

    Why it lasted

    As general models crossed task boundaries, evaluation had to expose tradeoffs and missing coverage. HELM made reproducibility, prompt sensitivity, and transparent reporting part of the infrastructure rather than an appendix to a launch claim.

    People behind the record
    The lineage

    A model was measured across scenarios, metrics, prompts, and costs.

  34. Record 34 · Conversational language models30 November 2022

    ChatGPT puts an instruction-tuned language model into dialogue

    What changed

    ChatGPT adapted a model from the InstructGPT family for multi-turn dialogue and released it as a free research preview. The chat interface carried prior turns forward, while users supplied a large stream of real conversations and feedback.

    Why it lasted

    The release made instruction-following language models legible to a mass audience and established conversation as their default public interface. It also exposed hallucination, prompt sensitivity, and confident error at unprecedented scale.

    People behind the record
    The lineage

    A continuing conversation became the model's working context.

  35. Record 35 · AI feedback and alignment15 December 2022 preprint

    Constitutional AI uses written principles to supervise behavior

    What changed

    A language model first critiqued and revised its own responses using a written list of principles. A second phase trained a preference model from AI-generated comparisons and used reinforcement learning from AI feedback.

    Why it lasted

    The approach made part of the behavior specification explicit and reduced dependence on a human comparison for every training example. It also moved the hard question toward who writes the principles and how their effects are audited.

    People behind the record
    The lineage

    Written principles guided critique, revision, and preference training.

  36. Record 36 · Open-weight language models27 February 2023

    LLaMA shows that strong base models need not be the largest

    What changed

    Meta trained models from 7 billion to 65 billion parameters on publicly available datasets and emphasized token volume over raw parameter count. The 13-billion-parameter model exceeded GPT-3 on most reported benchmarks, while the 65-billion model was competitive with several larger systems.

    Why it lasted

    LLaMA helped make capable base-model weights a practical research substrate outside a few API providers. Its descendants accelerated local inference, fine-tuning, quantization, and independent study of model behavior.

    People behind the record
    The lineage

    More training tokens made smaller base models more competitive.

  37. Record 37 · Multimodal foundation models14 March 2023

    GPT-4 brings images into a large language-model interface

    What changed

    GPT-4 accepted interleaved text and image inputs and generated text outputs. OpenAI reported broad exam and benchmark gains, a predictable-scaling effort, and six months of safety work before release, but withheld model size, architecture, compute, and dataset details.

    Why it lasted

    The release made multimodal prompting part of a prominent general-purpose model and treated deployment evaluation as a first-class technical artifact. Its limited disclosure also marked a widening gap between public capability and reproducible research detail.

    People behind the record
    The lineage

    Text generation began from both words and images.

  38. Record 38 · Efficient fine-tuning23 May 2023

    QLoRA fine-tunes a 65-billion-parameter model on one GPU

    What changed

    QLoRA backpropagated through a frozen four-bit quantized base model into LoRA adapters. Its NormalFloat data type, double quantization, and memory management let the authors fine-tune models up to 65 billion parameters on a single 48 GB GPU.

    Why it lasted

    Fine-tuning frontier-scale open weights no longer required a full cluster or a full-precision copy of every parameter. The method widened access to post-training experiments and domain-specific adapters.

    People behind the record
    The lineage

    Four-bit base weights made room for trainable low-rank adapters.

  39. Record 39 · Preference optimization29 May 2023

    DPO learns preferences without a separate reward-model loop

    What changed

    Direct preference optimization rewrote a common KL-constrained preference-learning objective as a classification loss on chosen and rejected responses. Training could update the policy directly, without fitting an explicit reward model and then running reinforcement learning against it.

    Why it lasted

    DPO made one route to preference tuning simpler and more stable to implement. It quickly became a baseline for post-training, while preserving the deeper dependence on how preference pairs were collected and whose judgments they represented.

    People behind the record
    The lineage

    Chosen and rejected answers trained the policy through one loss.

  40. Record 40 · Long-context multimodal models15 February 2024 release; March 2024 report

    Gemini 1.5 stretches multimodal context to one million tokens

    What changed

    Gemini 1.5 combined a sparse mixture-of-experts Transformer with native text, image, audio, and video input. The initial Pro release offered a 128,000-token standard context and a one-million-token context to selected users, while the report studied retrieval across even longer sequences.

    Why it lasted

    Long context let one prompt contain books, repositories, hours of media, or large document collections. It did not remove the need to measure retrieval, attention, latency, cost, and whether the model used distant evidence correctly.

    People behind the record
    The lineage

    One context window could hold many documents and modalities.

  41. Record 41 · Native multimodal language models13 May 2024

    GPT-4o trains text, vision, and audio as one model

    What changed

    GPT-4o was trained end to end across text, images, and audio, with one neural network handling the inputs and outputs. This replaced an earlier voice pipeline in which separate models transcribed audio, generated text, and synthesized speech, losing tone and timing between stages.

    Why it lasted

    Native multimodality made voice, vision, and text part of one learned interaction rather than loosely connected services. It shifted attention from adding an image encoder to preserving real-time cues across modalities.

    People behind the record
    The lineage

    One model learned across words, images, speech, and sound.

  42. Record 42 · Reasoning language models12 September 2024

    OpenAI o1 spends variable inference compute before answering

    What changed

    OpenAI described o1 as a language model trained with large-scale reinforcement learning to produce an internal chain of thought before its answer. Reported performance improved with more reinforcement learning during training and more reasoning compute during inference.

    Why it lasted

    Scaling gained a second axis beyond pretraining: the system could spend more computation on a difficult request at answer time. That changed latency, cost, evaluation, and the value of tasks with checkable outcomes.

    People behind the record
    The lineage

    Harder prompts could receive more computation before the answer.

  43. Record 43 · Reinforcement learning for reasoning22 January 2025 preprint

    DeepSeek-R1 publishes an open-weight reasoning pipeline

    What changed

    DeepSeek-R1-Zero applied large-scale reinforcement learning to a base model without supervised fine-tuning first, producing strong but sometimes unreadable reasoning behavior. DeepSeek-R1 then added cold-start data and a multi-stage training pipeline, and the team released model weights plus smaller distilled variants.

    Why it lasted

    The release gave researchers inspectable reasoning weights and unusually detailed post-training documentation. It showed both what outcome-based reinforcement learning could elicit and why supervised data still mattered for readable, usable answers.

    People behind the record
    The lineage

    Checkable rewards shaped long reasoning traces, then supervised stages refined them.

  44. Record 44 · Routed language-model systems7 August 2025

    GPT-5 makes routing part of the public model definition

    What changed

    OpenAI defined GPT-5 as a unified system containing a fast model, a deeper reasoning model, and a real-time router. The router selected a path using conversation type, complexity, explicit intent, and tool needs; separate mini models handled some usage limits.

    Why it lasted

    A flagship model name no longer identified one checkpoint or one inference budget. Evaluation and historical comparison now had to ask which component, router policy, reasoning setting, and surrounding safeguards produced an answer.

    People behind the record
    The lineage

    A router matched each request to a model and inference budget.

  45. Record 45 · Frontier language-model systemsStatus checked 16 July 2026

    By July 2026, the frontier model is a configurable system

    What changed

    By 16 July 2026, leading public systems combined several controls once discussed separately: native multimodal input, contexts up to one million tokens, adjustable reasoning effort, routing or model families, and direct use of software tools. GPT-5.5 and Claude Sonnet 5 emphasized sustained computer work, Gemini 3.5 documented multimodal long-context reasoning, and GPT-5.6 added family tiers plus higher inference settings.

    Why it lasted

    The phrase large language model now often names a service boundary, not a single neural network. A useful account must separate the base model, post-training, context construction, inference budget, tools, router, interface, and safety layer.

    People behind the record
    The lineage

    The public model boundary expanded around weights, context, compute, tools, and routing.

Research method

How this archive is built.

A record is included when it materially changed the history of large language models and the claim can be traced to a reliable source. The timeline separates the original contribution from interpretations that appeared later.

  • Primary evidence firstOriginal papers, books, standards, archives, and official technical records anchor each milestone.
  • People named by roleContributors are linked to public profiles and described by the work they performed, not by a vague credit line.
  • Disputes stay visibleCompeting claims, retrospective labels, and uncertain dates are identified instead of being flattened into one story.
  • Corrections are welcomeReaders can inspect every cited source and report a factual issue through the public corrections process.

Research library

Read the records behind the model names.

52 links to translated originals, papers, preprints, proceedings, technical reports, institutional archives, model cards, system cards, and official releases. A preprint date is kept separate from conference publication, product launch, model access, and later system documentation. Vendor evaluations are attributed to their source and are not treated as directly comparable rankings.

  1. 01
    An Example of Statistical Investigation of the Text Eugene Onegin Concerning the Connection of Samples in Chains (opens in a new tab)Science in Context / Cambridge University Press · source 01.1
  2. 02
    A Mathematical Theory of Communication (opens in a new tab)Bell System Technical Journal / Wiley · source 02.1
  3. 03
    Prediction and Entropy of Printed English (opens in a new tab)Bell System Technical Journal / Wiley · source 03.1
  4. 04
    Brown corpus of present day American English (opens in a new tab)Oxford Text Archive · source 04.1
  5. 05
    A Maximum Likelihood Approach to Continuous Speech Recognition (opens in a new tab)IEEE Transactions on Pattern Analysis and Machine Intelligence · source 05.1
  6. 06
    Estimation of Probabilities from Sparse Data for the Language Model Component of a Speech Recognizer (opens in a new tab)IEEE Transactions on Acoustics, Speech, and Signal Processing · source 06.1
  7. 07
    Improved Backing-Off for M-Gram Language Modeling (opens in a new tab)IEEE ICASSP · source 07.1
  8. 08
    Long Short-Term Memory (opens in a new tab)Neural Computation / MIT Press · source 08.1
  9. 09
    A Neural Probabilistic Language Model (opens in a new tab)Journal of Machine Learning Research · source 09.1
  10. 10
    Recurrent Neural Network Based Language Model (opens in a new tab)Interspeech / ISCA Archive · source 10.1
  11. 11
  12. 12
  13. 13
  14. 14
    Neural Machine Translation of Rare Words with Subword Units (opens in a new tab)Association for Computational Linguistics · source 14.1
  15. 15
    Attention Is All You Need (opens in a new tab)NeurIPS · source 15.1
  16. 16
    Universal Language Model Fine-tuning for Text Classification (opens in a new tab)Association for Computational Linguistics · source 16.1
  17. 17
    Deep Contextualized Word Representations (opens in a new tab)NAACL / Association for Computational Linguistics · source 17.1
  18. 18
  19. 19
  20. 20
    Language Models are Unsupervised Multitask Learners (opens in a new tab)OpenAI · source 20.1
  21. 21
    Better Language Models and Their Implications (opens in a new tab)OpenAI · source 20.2
  22. 22
    Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer (opens in a new tab)Journal of Machine Learning Research · source 21.1
  23. 23
    Scaling Laws for Neural Language Models (opens in a new tab)arXiv · source 22.1
  24. 24
  25. 25
    Language Models are Few-Shot Learners (opens in a new tab)NeurIPS · source 24.1
  26. 26
    Learning to Summarize from Human Feedback (opens in a new tab)NeurIPS · source 25.1
  27. 27
  28. 28
  29. 29
  30. 30
  31. 31
  32. 32
  33. 33
  34. 34
    Holistic Evaluation of Language Models (opens in a new tab)arXiv · source 33.1
  35. 35
    Introducing ChatGPT (opens in a new tab)OpenAI · source 34.1
  36. 36
  37. 37
  38. 38
    GPT-4 Technical Report (opens in a new tab)OpenAI · source 37.1
  39. 39
  40. 40
  41. 41
  42. 42
    Introducing Gemini 1.5 (opens in a new tab)Google · source 40.2
  43. 43
    Hello GPT-4o (opens in a new tab)OpenAI · source 41.1
  44. 44
    GPT-4o System Card (opens in a new tab)OpenAI · source 41.2
  45. 45
    Learning to Reason with LLMs (opens in a new tab)OpenAI · source 42.1
  46. 46
    OpenAI o1 System Card (opens in a new tab)OpenAI · source 42.2
  47. 47
  48. 48
    GPT-5 System Card (opens in a new tab)OpenAI · source 44.1
  49. 49
    GPT-5.5 System Card (opens in a new tab)OpenAI · source 45.1
  50. 50
    Gemini 3.5 Flash Model Card (opens in a new tab)Google DeepMind · source 45.2
  51. 51
    Introducing Claude Sonnet 5 (opens in a new tab)Anthropic · source 45.3
  52. 52

Continue from the archive

Study the models from the inside out.

Place language models inside the wider AI story, then work through their architecture and training in the LLM courses.