C.W.K.
Stream
Lesson 04 of 11 · published

The GPT Lineage: GPT-1 to GPT-5

~10 min · gpt, openai, history

Level 0Token
0 XP0/94 lessons0/10 achievements
0/120 XP to next level120 XP to go0% complete

OpenAI's GPT series defined the scaling paradigm. Reading the lineage in order is the quickest history of modern AI.

ModelYearParamsContextKey shift
GPT-12018117M512Pretraining + fine-tuning recipe
GPT-220191.5B1,024Coherent multi-paragraph generation
GPT-32020175B2,048In-context learning at scale
GPT-3.5 / ChatGPT2022~175B (similar)4k → 16kRLHF + chat format made it accessible
GPT-42023~1.8T (MoE est.)8k → 128kMultimodal vision input; large quality jump
GPT-4o2024n/a (native multimodal)128kAudio + image native; cheaper inference
GPT-4.1Apr 2025Unknown1M1M context, coding focus
GPT-5Aug 2025~1.7T total400kReal-time router across fast / thinking / Pro modes
GPT-OSS-120b2025117B (5.1B active)Open weights MoE, fits on a single H100

GPT-5 introduces a real-time router that dispatches each query to a different reasoning mode (fast, thinking, Pro). Total context is 400K (272K input + 128K output). The open-weights variant GPT-OSS-120b is Apache 2.0 and fits on a single H100 GPU.

Code

Reading a model card systematically·python
# When you encounter a new model, extract these in order:
fields = [
    "release date",
    "parameter count (total / active for MoE)",
    "architecture shape (d_model, n_layers, n_heads)",
    "vocabulary size and tokenizer",
    "context window (input + output)",
    "training data: source, scale, cutoff date",
    "post-training stack (SFT? DPO? GRPO? CAI?)",
    "license (commercial use? attribution?)",
    "modalities (text only? vision? audio?)",
    "stated benchmarks and known weaknesses",
]
# This is the universal template that lets you place any new model
# into the lineage without getting lost in marketing claims.

External links

Exercise

Pick three OpenAI announcements from across the lineage (e.g., GPT-2, GPT-3, GPT-4) and write a 5-bullet timeline of what changed at each step. Then predict, based on the trajectory, what the next major shift will be.

Progress

Progress is local-only — sign in to sync across devices.
Spotted a bug or have feedback on this page?Report an Issue

Comments 0

🔔 Reply notifications (sign in)
Sign inPlease sign in to comment.

No comments yet — be the first.