Architecture timelines · LLMs

How we got to DeepSeek‑V4‑Pro.

A decade of architectural ideas, each one small on its own, adding up to a frontier model. Every stop links to a plain-English explanation or a live interactive graph.

17 stops 12 papers 7 model graphs 2015 to 2026
Concept Model Paper and model in one release
Foundations2015 to 2017

Three ideas arrive before anyone knows what they will become.

ConceptDec 2015Residual connectionsDeep networks only train when each layer learns a small correction on top of its input. Every model on this page is a stack of blocks wired through this one trick.attn+MLP+Deep Residual Learning for Image RecognitionHe et al. · Dec 2015Read the glossary entry →
ConceptJan 2017Mixture of expertsWhy run the whole network for every token? A router wakes only a few expert MLPs at a time. The idea arrives years early and waits for its moment.routerOutrageously Large Neural Networks: The Sparsely-Gated Mixture-of-Experts LayerShazeer et al. · Jan 2017MoE routerRead the glossary entry →
ConceptJun 2017Self-attentionTokens build queries, keys and values and gather context directly from each other. The transformer block becomes the repeating unit of modern AI.Attention Is All You NeedVaswani et al. · Jun 2017Transformer blockRead the glossary entry →
The recipe assembles2019 to 2021

Scaling works, and the modern decoder block picks up its parts one paper at a time.

ConceptFeb 2020Gated MLP (SwiGLU)The feed-forward network splits into a gate and an up projection multiplied together. That is why you see three Linears and a Mul in every modern graph.gate_projup_projdown_projSiLU×GLU Variants Improve TransformerShazeer · Feb 2020Read the glossary entry →
ConceptApr 2021Rotary position embedding (RoPE)Positions become rotations of query and key vectors, and relative distance falls out of the math for free. The last piece of the standard recipe.position → rotationequal gap → equal anglerelative distance is encodedRoFormer: Enhanced Transformer with Rotary Position EmbeddingSu et al. · Apr 2021Read the glossary entry →
Open weights, efficient inference2023

The recipe goes open source, then learns to run cheap and long.

ConceptMay 2023Grouped-query attention (GQA)Several query heads share one key/value head. The KV cache shrinks several-fold and long contexts stop being a luxury.MHAGQAGQA: Training Generalized Multi-Query Transformer Models from Multi-Head CheckpointsAinslie et al. · May 2023Read the glossary entry →
The DeepSeek stack2024 to 2025

One lab ships its research as models, and the cache, the experts and the attention map all get rebuilt.

ConceptJan 2024Shared expertDeepSeekMoE slices experts fine and adds one that never turns off: every token passes through the shared expert, and the router only tops it up.routersharedDeepSeekMoE: Towards Ultimate Expert Specialization in Mixture-of-Experts Language ModelsDai et al. · Jan 2024Read the glossary entry →
Paper + modelMay 2024deepseek-ai/DeepSeek-V2The paper and the model are the same release. Keys and values compress into one small latent per token, and the cache shrinks by an order of magnitude.deepseek-ai/DeepSeek-V2 architecture graphfull K/Vtiny latentstext-generation · ↓ 18k · ♡ 334DeepSeek-V2: A Strong, Economical, and Efficient Mixture-of-Experts Language ModelDeepSeek-AI · May 2024Multi-head latent attentionOpen in visualizer →Read glossary entry →
Paper + modelDec 2024deepseek-ai/DeepSeek-V3Multi-token prediction trains richer representations while grouped expert routing keeps 256 experts friendly to real hardware. The open frontier model of its winter.deepseek-ai/DeepSeek-V3 architecture graphtext-generation · ↓ 1.0M · ♡ 4kDeepSeek-V3 Technical ReportDeepSeek-AI · Dec 2024Multi-token predictionGrouped expert routingOpen in visualizer →Read glossary entry →
ConceptSep 2025Sparse attention returnsA 2019 idea, back for the long-context era: a cheap indexer scores past tokens and full attention runs only over the winners.Generating Long Sequences with Sparse TransformersChild et al. · Apr 2019Read the glossary entry →
2026 · where it all lands

deepseek-ai/DeepSeek-V4-Pro

Every idea above, alive in one graph. Open it and find each block yourself: hover any node and hfviewer explains it with this model’s real numbers.

deepseek-ai/DeepSeek-V4-Pro architecture graph
Residual connectionsRMSNormSwiGLURoPEMoE expertsShared expertMLASparse attentionMulti-token predictionSliding window
Open DeepSeek-V4-Pro in the visualizer →

Want the definitions behind each stop? The glossary explains all 40 concepts, and the catalog has interactive graphs for 3,500+ models.

AlsoHow we got to FLUX.2 · the image generation timeline AlsoHow we got to Qwen3-VL · the vision-language timeline