hmnshudhmn24/llm-benchmarks-capabilities-2020-2026
π LLM Benchmarks & Capabilities 2020β2026 The most comprehensive open dataset tracking the evolution of Large Language Models β from GPT-3 to GPT-5.5, Claude Opus 4.7, Gemini 3.5, and beyond. π§ Overview This dataset captures the complete LLM landscape from 2020 to 2026 across five dimensions: π€ 113 models from 25+ organizations π 17 benchmarks tracking capability growth over time π° Monthly API pricing showing 100x+ cost reductions βοΈ Training computeβ¦ See the full description on the dataset page: https://huggingface.co/datasets/hmnshudhmn24/llm-benchmarks-capabilities-2020-2026.
π LLM Benchmarks & Capabilities 2020β2026
The most comprehensive open dataset tracking the evolution of Large Language Models β from GPT-3 to GPT-5.5, Claude Opus 4.7, Gemini 3.5, and beyond.
π§ Overview
This dataset captures the complete LLM landscape from 2020 to 2026 across five dimensions:
- π€ 113 models from 25+ organizations
- π 17 benchmarks tracking capability growth over time
- π° Monthly API pricing showing 100x+ cost reductions
- βοΈ Training compute estimates validating scaling laws
- π 57 capability milestones marking key inflection points
Designed for ML researchers, AI practitioners, policy analysts, and data scientists working on LLM-related problems β trend analysis, capability forecasting, cost-performance modeling, and competitive intelligence.
π Dataset Files
Total: ~2,750 rows Β· ~250 KB
π’ Organizations Covered
Closed Frontier OpenAI Β· Anthropic Β· Google DeepMind Β· xAI Β· Microsoft
Open Weights Meta Β· DeepSeek Β· Mistral Β· Alibaba Qwen Β· 01.AI Β· TII
Early Era Chinchilla Β· PaLM Β· BLOOM Β· OPT Β· GLaM Β· Switch Transformer
Chinese Frontier WuDao 2.0 Β· ERNIE 3.0 Β· HyperCLOVA Β· YaLM 100B
π Benchmarks Tracked
β‘ Quick Start
import pandas as pd
# Load models catalog
models = pd.read_csv("hf://datasets/hmnshudhmn24/llm-benchmarks-capabilities-2020-2026/models_catalog.csv")
# Load benchmark scores
scores = pd.read_csv("hf://datasets/hmnshudhmn24/llm-benchmarks-capabilities-2020-2026/benchmark_scores.csv")
# Load pricing history
pricing = pd.read_csv("hf://datasets/hmnshudhmn24/llm-benchmarks-capabilities-2020-2026/pricing_history.csv")
# Load compute estimates
compute = pd.read_csv("hf://datasets/hmnshudhmn24/llm-benchmarks-capabilities-2020-2026/compute_estimates.csv")
# Load capability milestones
milestones = pd.read_csv("hf://datasets/hmnshudhmn24/llm-benchmarks-capabilities-2020-2026/capability_milestones.csv")
print(models.head())π‘ Suggested Use Cases
- Benchmark Saturation Forecasting β MMLU went from 32% (2020) to 95% (2025). Predict saturation for GPQA Diamond and SWE-Bench.
- Price vs Capability Analysis β Plot Arena ELO vs blended API price. Track Pareto-optimal models per quarter.
- Open vs Closed Model Gap β Measure the capability gap between open weights and closed models across time.
- Scaling Law Validation β Plot training FLOPs vs benchmark scores. Test empirical scaling exponents.
- Reasoning Model Premium β Measure score lift of reasoning models vs chat models on math and coding benchmarks.
- Cost Reduction Trajectory β Track price per Arena ELO point over time. How fast is intelligence-per-dollar growing?
- Competitive Organization Analysis β Head-to-head benchmark matrix per organization per quarter.
- Chinese vs Western Capability Race β DeepSeek, Qwen, ERNIE vs OpenAI, Anthropic, Google.
