The GPT Lineage: A Consolidated Comparison, GPT-1 to GPT-6 Astra
Six full case studies in this series each told one model's story end to end. This article steps back and lines all of them up side by side โ plus the eight interim releases between the major numbered generations (GPT-3.5, GPT-4 Turbo, GPT-4o, o1, GPT-4.5, and the GPT-5.1 through 5.6 point releases) โ across seven consistent dimensions: research trigger, data, architecture, learning technique and scaffolding, training technique, compute, and influence on what came next.
Fifteen Releases, One Underlying Recipe
Reading the six full case studies in this series one at a time shows six good stories. Reading them side by side, with the interim releases filled in between, shows something the individual stories can't: a set of trend lines. Data went from a bounded, curated corpus to an undisclosed mixture too large to describe. Scaffolding went from nonexistent to a fully agentic system operating real software. Compute disclosure went from precise to nonexistent, almost exactly as compute itself grew by many orders of magnitude. This article is that comparison, built to be read as a reference table first and a narrative second.
Fifteen Releases in Eight Years
Seven Dimensions, Six Major Generations
The full seven-dimension table below covers the six major numbered generations this series has profiled in depth. Cells marked undisclosed reflect a genuine gap in the primary source, not an oversight in this article โ consistent with every individual case study's own honesty discipline.
| Model | Date | Research Trigger | Data | Architecture | Learning Technique & Scaffolding | Training Technique | Compute | Influence on Next |
|---|---|---|---|---|---|---|---|---|
| GPT-1 | Jun 2018 | NLP lacked vision-style transfer learning | BooksCorpus (~7,000 books) | 12-layer decoder-only, 117M params | Pretrain + full fine-tune per task | Adam, 100 epochs, 512-token sequences | ~1 month, 8 GPUs | Proved the recipe; motivated removing fine-tuning entirely |
| GPT-2 | Feb 2019 | Fine-tuning per task was still a real cost | WebText (~8M docs, Reddit karma filter) | Decoder-only, 4 sizes to 1.5B, context 1024 | Zero-shot via natural-language prompting | Same LM objective, staged size study | Undisclosed | Proved prompting alone could elicit tasks; motivated in-context learning |
| GPT-3 | Jun 2020 | Zero-shot was inconsistent across tasks | Filtered/weighted Common Crawl + WebText2 + Books + Wikipedia | Decoder-only, 175B params, dense/sparse attention, context 2048 | In-context few-shot learning, no gradient updates | Same LM objective at 100x+ scale | 3.14ร10ยฒยณ FLOPs | Base model for RLHF (InstructGPT) โ ChatGPT product line |
| GPT-4 | Mar 2023 | ChatGPT's success demanded a safer, multimodal product model | Undisclosed | Undisclosed (confirmed: Transformer, multimodal input) | RLHF + predictable-scaling methodology + red-teaming | Undisclosed | Undisclosed | Set the System Card + closed-disclosure template |
| GPT-5 | Aug 2025 | Users forced to manually pick fast vs. reasoning models | Undisclosed | Undisclosed (unified multi-model system) | Real-time router + "safe completions" safety training | Undisclosed | Undisclosed | Routing/agentic direction carried into 5.x and Astra |
| GPT-6 Astra | Sep 2026 | Need for agentic computer-use; forced safer release by a real incident | Undisclosed | Undisclosed (multimodal, ~1.1M-token context) | Agentic computer-use scaffolding + stricter containment | Undisclosed | Undisclosed | First "Critical" classification sets the containment bar going forward |
GPT-1 in Detail
- Research Trigger
- Vision had ImageNet-style transfer learning; NLP had no equivalent, leaving most models trained from scratch per task on small labeled datasets.
- Data
- BooksCorpus โ roughly 7,000 unique unpublished books, chosen specifically for long, contiguous text.
- Architecture
- 12-layer decoder-only Transformer, 768-d hidden states, 12 heads, 117M parameters, 40k-merge BPE vocabulary.
- Learning Technique & Scaffolding
- Pretrain via next-token prediction, then fully fine-tune the same model per downstream task with a minimal task-specific input reformatting โ no separate scaffolding layer yet.
- Training Technique
- Adam optimizer, max LR 2.5e-4, 100 epochs, 64-sequence minibatches of 512 contiguous tokens.
- Compute
- Approximately one month on 8 GPUs โ the most precisely disclosed compute figure in the entire lineage.
- Influence on Next
- Proved pretrain-then-adapt works at all; GPT-2 asked whether the adaptation step (fine-tuning) could be removed entirely.
GPT-2 in Detail
- Research Trigger
- GPT-1's fine-tuning-per-task requirement was still a real, ongoing cost; could implicit task knowledge already present in broad training data be elicited without any fine-tuning at all?
- Data
- WebText โ roughly 8 million documents (~40GB) from outbound Reddit links with 3+ karma, used as a scalable quality-filter proxy.
- Architecture
- Decoder-only Transformer, pre-activation layer norm, context doubled to 1,024 tokens, 50,257-token BPE vocabulary, four sizes from 117M to 1.5B.
- Learning Technique & Scaffolding
- Zero-shot task transfer โ the task is specified purely through natural-language prompt phrasing (e.g. "TL;DR:"), the first real scaffolding idea in the lineage.
- Training Technique
- Same next-token-prediction objective as GPT-1, studied explicitly across four model sizes to observe scaling behavior.
- Compute
- Not disclosed โ the first gap in an otherwise precise lineage of figures.
- Influence on Next
- Showed prompting alone could work, inconsistently; GPT-3 asked whether showing a few examples in the prompt (few-shot) could close that consistency gap.
GPT-3 in Detail
- Research Trigger
- GPT-2's zero-shot results were promising but inconsistent; humans learn new tasks from a handful of examples, not thousands of labeled ones.
- Data
- A filtered, deduplicated, and weighted mixture: Common Crawl (quality-classified), WebText2, Books1/Books2, and Wikipedia โ cleaner sources sampled more than their raw size.
- Architecture
- Decoder-only Transformer, 175B parameters (largest of 8 sizes), alternating dense and locally-banded sparse attention, context 2,048 tokens.
- Learning Technique & Scaffolding
- In-context few-shot learning โ a handful of demonstrations placed directly in the prompt, with the model's weights completely frozen; formally compared against zero-shot and one-shot.
- Training Technique
- Same next-token-prediction objective, scaled to a regime where compute itself became a subject of study.
- Compute
- 3.14ร10ยฒยณ FLOPs for the full 175B model, explicitly disclosed and used to study compute-vs-performance scaling.
- Influence on Next
- Became the base model fine-tuned via RLHF (InstructGPT) into the model behind ChatGPT โ the direct bridge to GPT-3.5.
Five Releases Between GPT-3 and GPT-4
None of the following five releases got a dedicated case study in this series, but each changed at least one of the seven dimensions in a way that shaped the generation after it.
GPT-4 in Detail
- Research Trigger
- ChatGPT's overnight mass adoption changed the problem from "build a more capable base model" to "build a safer, more reliable model for hundreds of millions of users."
- Data
- Not disclosed by OpenAI.
- Architecture
- Not disclosed (confirmed: Transformer-based, multimodal text+image input, RLHF fine-tuned).
- Learning Technique & Scaffolding
- RLHF fine-tuning plus a formal, documented adversarial safety-testing process (including ARC's autonomous-replication evaluation) before release.
- Training Technique
- Not disclosed in detail, beyond confirming a next-token pretraining objective plus RLHF.
- Compute
- Not disclosed โ though the report discloses a genuine methodological contribution: predicting final performance from small-scale proxies costing a fraction of full training compute.
- Influence on Next
- Established the technical-report-plus-System-Card release template every major frontier model since (including this lineage's own GPT-5 and GPT-6) has followed.
GPT-5 in Detail
- Research Trigger
- Users were forced to manually choose between separate fast and reasoning models before every conversation โ a real product and compute-efficiency problem.
- Data
- Not disclosed.
- Architecture
- Not disclosed for any component model (confirmed: a unified system composing multiple internal models).
- Learning Technique & Scaffolding
- A real-time router deciding, per request, between a fast model and a deeper-reasoning model โ plus "safe completions" safety training replacing binary refuse-or-comply behavior.
- Training Technique
- Not disclosed.
- Compute
- Not disclosed.
- Influence on Next
- The routing/composition idea, refined across the GPT-5.1โ5.6 point releases, became the direct precursor to GPT-6 Astra's agentic, tool-using scaffolding.
Six Point Releases in Nine Months
GPT-5's routed architecture set the stage for an unusually fast point-release cadence โ six named releases between November 2025 and July 2026, each refining the router and reasoning balance rather than introducing a new architectural idea.
| Release | Date | What Changed |
|---|---|---|
| GPT-5.1 | Nov 2025 | Refined the fast/reasoning routing balance from GPT-5's initial launch configuration |
| GPT-5.2 | Dec 2025 | Incremental capability and reliability updates within the same routed system |
| GPT-5.3-Codex | Feb 5, 2026 | A coding-specialized variant, extending the router concept into a dedicated developer-tool configuration |
| GPT-5.4 | Mar 5, 2026 | Continued point-release refinement of the core routed system |
| GPT-5.5 | Apr 23, 2026 | Continued point-release refinement of the core routed system |
| GPT-5.6 (Luna / Terra / Sol) | Jul 9, 2026 | Naming shifted from Instant/Thinking/Pro tiers to three named models (Luna fastest, Terra mid-tier, Sol flagship); Sol became OpenAI's strongest vision model to date, with a ~1.05M-token context window |
GPT-5.6 Sol is also the model directly implicated, alongside an unreleased pre-release model, in the July 2026 Hugging Face containment incident this lineage's GPT-6 Astra case study covers in depth โ making this bridge era the direct run-up to the most safety-eventful release in the entire series.
GPT-6 Astra in Detail
- Research Trigger
- Demand for genuine long-horizon, computer-operating agentic capability, combined with an urgent need for better containment after the July 2026 Hugging Face incident directly demonstrated a real failure mode.
- Data
- Not disclosed.
- Architecture
- Not disclosed (confirmed: multimodal input, ~1.1M-token context window, up to 128,000 completion tokens).
- Learning Technique & Scaffolding
- Agentic scaffolding for operating real computer interfaces (browsers, desktop apps) over long multi-step tasks, paired with stricter internal isolation, checkpoint encryption, and full-trajectory monitoring.
- Training Technique
- Not disclosed.
- Compute
- Not disclosed.
- Influence on Next
- The first model to reach "Critical" cybersecurity classification under OpenAI's Preparedness Framework โ setting a containment and monitoring bar every subsequent agentic release will be measured against.
Three Patterns Only Visible Side by Side
The One Thread That Never Broke
Across all seventeen releases in this timeline โ six major generations and eleven interim ones โ every single model remains a decoder-only Transformer, pretrained via next-token prediction on the preceding token sequence. Vaswani et al.'s 2017 architecture, adopted for GPT-1 the following year, is still the load-bearing structure underneath GPT-6 Astra's agentic computer-use system eight years later. Everything else in this lineage โ data sourcing, scaffolding, safety process, disclosure norms, team size โ changed repeatedly and often dramatically. The core architectural bet never did.
Readiness Checklist
โ ๏ธ What's Missing or Uncertain
๐ Reference Links
- This site โ The Claude Lineage: A Consolidated Comparison (the Anthropic equivalent of this article)
- This site โ The Gemini Lineage: A Consolidated Comparison (the Google DeepMind equivalent of this article)
- This site โ The Grok Lineage: A Consolidated Comparison (the xAI equivalent of this article)
- This site โ The DeepSeek Lineage: A Consolidated Comparison (the DeepSeek equivalent of this article)
- This site โ The Meta AI (Llama) Lineage: A Consolidated Comparison (the Meta equivalent of this article)
- This site โ The Mistral AI Lineage: A Consolidated Comparison (the Mistral equivalent of this article)
- This site โ Model Case Study: GPT-1
- This site โ Model Case Study: GPT-2
- This site โ Model Case Study: GPT-3
- This site โ Model Case Study: GPT-4
- This site โ Model Case Study: GPT-5
- This site โ Model Case Study: GPT-6 Astra
- Ouyang et al. โ "Training Language Models to Follow Instructions with Human Feedback" (InstructGPT, the GPT-3.5 bridge, 2022)
- OpenAI โ "Hello GPT-4o" (May 2024)
- OpenAI โ "Learning to Reason with LLMs" (o1-preview, September 2024)
- OpenAI โ "Introducing GPT-4.5" (February 2025)
- This site โ The Qwen Lineage: A Consolidated Comparison
- This site โ The AI Researcher Atlas: 50 People Who Built the Field