GPT-56T 861 —
MUSE-SPK 835 -0.7%
GPT-56SC 827 -5.3%
QWEN-38X 824 —
CL-OP55X 820 —
GPT-6A 820 —
GROK-46H 820 -5.2%
GLM-5 784 -8.4%
KIMI-K3X 742 -8.4%
CL-FAB5H 742 -5.7%
CL-OP5H 718 -6%
CL-OP5X 708 -18.2%
CL-OP46H 696 -6.2%
CL-OP47H 688 -6.1%
GEM-38FH 677 +0.1%
GEM-37FH 655 -24.3%
GPT-56S 619 —
GPT-55H 580 —
CL-OP47 579 -0.7%
INKL 531 —
GEM-31P 512 —
GEM-3P 498 —
CL-OP46 496 —
CL-OP48 489 -0.2%
GPT-56T 861 —
MUSE-SPK 835 -0.7%
GPT-56SC 827 -5.3%
QWEN-38X 824 —
CL-OP55X 820 —
GPT-6A 820 —
GROK-46H 820 -5.2%
GLM-5 784 -8.4%
KIMI-K3X 742 -8.4%
CL-FAB5H 742 -5.7%
CL-OP5H 718 -6%
CL-OP5X 708 -18.2%
CL-OP46H 696 -6.2%
CL-OP47H 688 -6.1%
GEM-38FH 677 +0.1%
GEM-37FH 655 -24.3%
GPT-56S 619 —
GPT-55H 580 —
CL-OP47 579 -0.7%
INKL 531 —
GEM-31P 512 —
GEM-3P 498 —
CL-OP46 496 —
CL-OP48 489 -0.2%
← Back to feed

AI2's OLMo Hybrid Reaches Same Accuracy With 49% Fewer Training Tokens

Allen Institute for AI has published OLMo Hybrid, a 7B-parameter language model and accompanying paper (arXiv 2604.03444) arguing that hybrid transformer-RNN architectures are not just more memory-efficient at inference but fundamentally more expressive — and that expressivity advantage translates directly into better training efficiency.

The headline result: OLMo Hybrid matches OLMo 3 7B on MMLU using 49% fewer training tokens. On a Common Crawl evaluation slice, it reaches parity in 35% fewer tokens. The architecture trains on 6 trillion tokens total and matches or exceeds OLMo 3 across standard pretraining and mid-training evaluations. Weights, intermediate checkpoints, and training code are fully open under Apache 2.0.

Architecture

OLMo Hybrid replaces every fourth transformer layer with a Gated DeltaNet (GDN) layer — a linear RNN design that parallelizes during training while preserving expressive state dynamics unavailable to standard attention. The 3:1 GDN-to-transformer ratio was chosen empirically across scaling runs from 60M to 760M parameters before being confirmed at 7B scale.

The theoretical argument AI2 makes is not that hybrid models inherit the expressivity of both components. It is stronger: hybrid models can express tasks that neither pure transformers nor pure linear RNNs can express in isolation, including code execution tasks. The paper argues this expressivity gap explains why hybrid models show lower loss per token during pretraining — fewer tokens are needed to achieve the same information compression.

Scaling Laws

AI2 fit Chinchilla-style scaling laws to transformers, pure GDN models, and hybrid GDN-transformer architectures across sizes from 60M to 760M parameters. Results:

  • Hybrid models have a meaningfully lower data coefficient B (the fixed-factor term in the scaling law)
  • Scaling exponents are statistically indistinguishable across architectures
  • Projected token savings: 1.3-1.9x at model sizes from 1B to 70B

The implication is that the efficiency advantage is not a small-scale artifact. It appears to hold as models scale, because expressivity reduces the data coefficient rather than changing how models scale with compute.

Long Context

After long-context extension using both YaRN and DroPE methodologies, OLMo Hybrid outperforms OLMo 3 on RULER (the standard long-context benchmark). AI2 attributes the gains to linear RNN layers retaining information across sequence positions more efficiently than sliding-window attention.

Key Numbers

BenchmarkOLMo 3 tokens neededOLMo Hybrid tokens neededSavings
MMLU parity6T~3.1T49%
Common Crawl parity6T~3.9T35%

The 6T-token training run confirms the gains persist at full scale. The research team notes that prior motivations for hybrid models focused on inference memory (linear RNNs use constant memory vs. quadratic for attention). Their finding — that pretraining efficiency is the more significant advantage — reframes why these architectures matter.

Instruct and reasoning model variants are in preparation.