Overview
Production Readiness
0.7
Novelty Score
0.6
Cost Impact Score
0.8
Citation Count
0
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.
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).
Empirical evidence across six benchmarks (ARC, GSM8K, HellaSwag, MMLU, TruthfulQA, Winogrande) showing low MAE and high Kendall's τ with far fewer anchors.
Open-source code and use of a large evaluation corpus (5000+ models) for robustness tests.
Key Findings
SparseEval reduces required test items to about 100 while keeping prediction error low.
SparseEval improves ranking agreements versus baselines.
Anchor refinement (AIS/CIS) consistently improves anchors over k-means or random initialization.
SparseEval trains and runs faster than gp-IRT in experiments.
SparseEval generalizes better to unseen model families in hold-out tests.
Results
MAE (mean absolute error)
Kendall's τ (rank correlation)
Generalization (hold-out average MAE)
Who Should Care
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
License
- various dataset licenses noted in Appendix (MIT, CC BY 4.0, CC BY-SA 4.0, Apache
Code Available
Data Available
Open Source Status
- partial
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.
- May be less effective on datasets with weak item clustering or when items are not redundant.
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).
- When dataset items are intentionally diverse with no redundancy.
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.
- Proxy MLP underfits or overfits, producing wrong AIS/CIS and degrading refinement.
Core Entities
Models
- SparseEval (MLP-based proxy)
- gp-IRT
- TailoredBench
- Anchor Points
- TinyBenchmark
Metrics
- MAE (mean absolute error)
- Kendall's τ (rank correlation)
Datasets
- ARC
- GSM8K
- HellaSwag
- MMLU
- TruthfulQA
- Winogrande
- Open-LLM Leaderboard (scores)
Benchmarks
- LLM evaluation benchmarks (above datasets)

