LDS history archive · LM-001Source-led research edition
The history of large language modelsHow 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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.