CoolFace
Datasetpublic

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.

sourceHugging Facecc-by-4.0updated 3mo agoView on Hugging Face
1likes38downloads
Dataset Card

πŸ“Š 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

FileRowsDescription
models_catalog.csv113Model metadata: org, release date, params, type, access
benchmark_scores.csv1,276Long format: model Γ— benchmark Γ— score
pricing_history.csv1,187Monthly API pricing per model (USD per 1M tokens)
compute_estimates.csv113Training FLOPs, GPU hours, cost, energy, CO2
capability_milestones.csv57Major AI events with significance scores

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

BenchmarkTypeMax Score
MMLUKnowledge100
MMLU-ProKnowledge Hard100
HumanEval / HumanEval+Coding100
MBPPCoding100
GSM8KMath Grade100
MATHMath Competition100
AIME 2024Math Olympiad100
GPQA DiamondScience PhD100
HellaSwagCommonsense100
ARC-ChallengeReasoning100
TruthfulQATruthfulness100
BBH (BIG-Bench Hard)Reasoning Hard100
SWE-Bench VerifiedAgentic Coding100
LiveCodeBenchLive Coding100
MMMUMultimodal100
Chatbot Arena ELOHuman Eval1500

⚑ Quick Start

python
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

  1. 1.Benchmark Saturation Forecasting β€” MMLU went from 32% (2020) to 95% (2025). Predict saturation for GPQA Diamond and SWE-Bench.
  2. 2.Price vs Capability Analysis β€” Plot Arena ELO vs blended API price. Track Pareto-optimal models per quarter.
  3. 3.Open vs Closed Model Gap β€” Measure the capability gap between open weights and closed models across time.
  4. 4.Scaling Law Validation β€” Plot training FLOPs vs benchmark scores. Test empirical scaling exponents.
  5. 5.Reasoning Model Premium β€” Measure score lift of reasoning models vs chat models on math and coding benchmarks.
  6. 6.Cost Reduction Trajectory β€” Track price per Arena ELO point over time. How fast is intelligence-per-dollar growing?
  7. 7.Competitive Organization Analysis β€” Head-to-head benchmark matrix per organization per quarter.
  8. 8.Chinese vs Western Capability Race β€” DeepSeek, Qwen, ERNIE vs OpenAI, Anthropic, Google.