ModelsResearch 🇺🇸 27.07.2026 18:04

Comparison of Large Language Model Architectures: From DeepSeek V3 to OLMo 2

DeepSeekDeepSeek Allen Institute for AIAllen Institute for AI
Sebastian Raschka compares the architectures of modern LLMs, including DeepSeek V3 with Multi-Head Latent Attention and Mixture-of-Experts, and OLMo 2 from the Allen Institute for AI with Post-Norm and QK-norm. The article covers key architectural decisions such as Grouped-Query Attention and various normalization schemes.
In his article, Sebastian Raschka examines the architectural features of modern large language models, comparing DeepSeek V3/R1, OLMo 2, and others. DeepSeek V3 uses Multi-Head Latent Attention (MLA), which compresses keys and values into a low-dimensional space to save KV cache memory, and Mixture-of-Experts (MoE) with 256 experts, of which only 9 are active (one shared expert and 8 selected by the router), allowing it to use only 37 billion parameters per step despite having 671 billion total. OLMo 2 from the Allen Institute for AI, on the other hand, employs traditional Multi-Head Attention but with Post-Norm (RMSNorm after attention and feed-forward network layers) and QK-norm to stabilize training. The article also mentions Grouped-Query Attention as an alternative to Multi-Head Attention used in other models.
Source: Sebastian Raschka — original
Our earlier posts on this topic ↓
Fresh news