Measure many LLMs with only a few test items by learning weighted anchors

February 8, 20267 min

Overview

Decision SnapshotNeeds Validation

Method is practical and open-sourced; experiments across six public benchmarks and 5000+ models support claims, but performance depends on having enough training models and representative validation splits.

Citations0

Evidence Strength0.70

Confidence0.86

Risk Signals9

Trust Signals

Findings with numeric evidence: 5/5

Findings with evidence refs: 5/5

Results with explicit delta: 3/3

Reproducibility

Status: Code + data available

Open source: Partial

License: various dataset licenses noted in Appendix (MIT, CC BY 4.0, CC BY-SA 4.0, Apache

At A Glance

Cost impact: 80%

Production readiness: 70%

Novelty: 60%

Authors

Taolin Zhang, Hang Guo, Wang Lu, Tao Dai, Shu-Tao Xia, Jindong Wang

Links

Abstract / PDF / Code / Data

Why It Matters For Business

You can cut LLM evaluation costs by an order of magnitude while keeping accurate performance estimates and rankings, enabling faster model selection and cheaper continuous benchmarking.

Who Should Care

Summary TLDR

SparseEval picks a small set of representative test items (anchors), learns weighted aggregation via a small MLP, and iteratively refines anchors using two importance scores. On standard LLM benchmarks the method estimates full-dataset model performance with far fewer items (often ~100) while keeping mean absolute error near or below 1% and Kendall's τ typically above 0.9. Code is released.

Problem Statement

Full evaluation of many LLMs is costly because running every model on large test sets requires heavy inference compute. The paper asks: can we evaluate many models accurately using only a small, learned subset of test items?

Main Contribution

Formalize efficient evaluation as a sparse optimization problem over the model×item score matrix.

SparseEval: a practical pipeline that (1) initializes anchors, (2) learns anchor weights with a small MLP via gradient descent, and (3) refines anchors using Anchor Importance Score (AIS) and Candidate Importance Score (CIS).

Key Findings

SparseEval reduces required test items to about 100 while keeping prediction error low.

NumbersMAE often 0.8%–1.6% with 100 anchors (Table 1).

Practical UseYou can approximate full benchmark scores with ~100 carefully chosen anchors instead of evaluating the full dataset, cutting inference cost substantially.

Evidence RefTable 1

SparseEval improves ranking agreements versus baselines.

NumbersKendall's τ frequently >0.90 at 40100 anchors (Table 1).

Practical UseIf you care about model ranking, SparseEval preserves ordering with high reliability using far fewer items.

Evidence RefTable 1

Results

MetricValueBaselineDeltaSplit / DatasetEvidenceEvidence Ref
MAE (mean absolute error)0.827% (best reported with 100 anchors on an evaluated dataset)Anchor Points / gp-IRT / TailoredBenchup to ~2% lower than baselines in Table 1various LLM benchmarks (see Table 1)SparseEval MAE values in Table 1 show 0.827% and many ≈1% with 100 anchorsTable 1
Kendall's τ (rank correlation)0.90+ (commonly reported at 40100 anchors)baselines often 0.700.88improvements up to ~0.1 in τvarious LLM benchmarks (see Table 1)Table 1 reports τ frequently above 0.90 for SparseEvalTable 1

What To Try In 7 Days

Run SparseEval repo on one internal benchmark: pick 100 anchors, train the 4-layer MLP proxy, compare MAE and τ to full evaluation.

Compare k-means vs random anchor initialization on a small validation slice to pick the better start.

Run 5–10 anchor-refinement steps (AIS/CIS) and measure how MAE and τ change versus simple clustering.

Optimization Features

Infra Optimization
reduces inference compute proportional to number of anchors
Model Optimization
MLP-based weight learning for anchors
Training Optimization
gradient descent on proxy MLP (end-to-end for anchor weights)
Inference Optimization
evaluate models only on chosen anchors to reduce inference runs

Reproducibility

Code AvailableYes
Data AvailableYes
Open Source StatusPartial
Licensevarious dataset licenses noted in Appendix (MIT, CC BY 4.0, CC BY-SA 4.0, Apache

Risks & Boundaries

Limitations

Requires sufficient training models and prediction data to learn weights via gradient descent; performance drops with very small training sets.

Anchor refinement depends on a proxy model; poor proxy choices could reduce gains.

When Not To Use

When you have very few models or training scores (gradient-based weight learning may fail).

When precise per-item error analysis is required (SparseEval approximates global scores and rankings).

Failure Modes

Bad validation split causes poor anchor initialization and biased estimates.

Anchor set overfits the training model family and mispredicts novel architectures if hold-out families diverge.

Core Entities

Models

SparseEval (MLP-based proxy)gp-IRTTailoredBenchAnchor PointsTinyBenchmark

Metrics

MAE (mean absolute error)Kendall's τ (rank correlation)

Datasets

ARCGSM8KHellaSwagMMLUTruthfulQAWinograndeOpen-LLM Leaderboard (scores)

Benchmarks

LLM evaluation benchmarks (above datasets)