Ai2 (Allen Institute for AI) has published BenchMIRT on the Hugging Face blog, a multidimensional IRT method that takes LLM benchmarks apart at the prompt level: 16 benchmarks, 34,000 prompts, 100 open-weight models, producing separate ability estimates along safety and general reasoning dimensions. The result is awkward: many benchmarks that get bucketed under "safety" actually carry a signal much closer to "general reasoning".

Why this is worth its own writeup

For the past two years, the LLM leaderboard scene has been dominated by MMLU, GPQA and Chatbot Arena. The same "rank-one" model can swing by 10 points between boards, and OpenAI, Anthropic and Google keep trading the top spot. The root cause is that today's benchmarks mix capabilities together. A BBQ question (testing social bias) needs both "track who is the grandfather, who is the grandson" and "avoid stereotypical wording"; the two factors get tangled, so a low score is hard to read as safety versus reading comprehension. BenchMIRT is built to answer exactly that question.

How BenchMIRT works, and what it found

The method is not new: single-dimensional IRT has been used in SAT and GRE for decades. The principle is to infer, from how a model answers, each prompt's difficulty and discriminative power. Ai2's earlier work, Fluid Benchmarking, brought single-dimensional IRT into LLM evaluation; this time the team moves to multi-dimensional IRT, where each benchmark can map onto multiple capabilities. The experiment covers 100 open-weight LLMs × 16 benchmarks × more than 34,000 prompts. Six benchmarks measure general reasoning (MMLU-Pro, GPQA, MATH, BBH), and ten come from Ai2's own Olmo 3 safety suite (HarmBench, StrongReject, WildJailbreak, BBQ, WMDP, XSTest).

The key finding: BenchMIRT is never told which benchmarks measure safety versus reasoning, yet it stably recovers two dominant dimensions on its own.

A few counterintuitive results: BBQ's correlation with general reasoning is far stronger than with safety; WMDP (dangerous-knowledge benchmark) points the other way — stronger reasoning models tend to "safely pretend they don't know" and get marked wrong by WMDP; HarmBench's copyright prompts load onto the general reasoning dimension rather than the harm refusal signal.

What it means for LLM evaluation

Benchmark slimming becomes practical. Keeping just 10% of the prompts preserves the model ranking almost unchanged; at 50%, the ability-dimension ranking is essentially identical. Boards like MMLU-Pro, often criticized as uncrackable, can be compressed to one tenth the cost with minimal signal loss.

Benchmark designers have to revisit "what does this benchmark actually measure". BenchMIRT predicts per-prompt correctness at 79% accuracy, while the simple baseline (predicting from the benchmark's mean score) is only 70%. That looks like a 9-point bump, but it gives evaluators an exact handle on which prompts most strongly reflect the safety dimension.

There is a clear side effect: the prompts BenchMIRT flags as most discriminative are exactly the ones you could delete to let an unsafe model pass. Ai2 openly acknowledges this risk but argues that the interpretability upside outweighs the gaming risk.

A few observations

All 100 models in the training set were released before March 2025, which means BenchMIRT's current findings may not hold for the GPT-5 series, Claude Opus 5, Gemini 3.x and other 2025-H2 to 2026 releases — those models may differentiate along new dimensions.

BenchMIRT's discovered dimensions depend heavily on the benchmark pool you give it. With this pool skewed toward safety and reasoning, feeding in coding, math and multimodal benchmarks next time will almost certainly surface a "coding / math / multimodal" tripod. This toolkit can tell you "how many capabilities you are actually measuring", but not "which capabilities you are missing" — that is its blind spot and the next frontier for LLM evaluation.

Closing on the industry view: Chatbot Arena is already the de facto public leaderboard, but its ELO is a single number. If methods like BenchMIRT can be integrated into mainstream boards — giving each model an ability-vector profile — LLM evaluation may graduate from "who scores highest" to "who is strongest at which ability". That shift is more structurally meaningful than any single model release.

References: Ai2's official blog on Hugging Face, BenchMIRT dataset, GitHub code.