This protocol evaluates how well a metamodel can predict the benchmark performance of unseen models using a highly condensed subset of test samples. It probes the trade-off between evaluation cost reduction and the fidelity of accuracy estimation and model ranking preservation across language and vision benchmarks. Use when the user wants to benchmark on MMLU, HellaSwag, Winogrande, ARC, ImageNet-1k, or asks about evaluating this task. Reports MAE, Spearman rank correlation.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill disco-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Disco Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-disco-eval)More formats (shields.io, HTML) on the badges page.
---
name: disco-eval
description: This protocol evaluates how well a metamodel can predict the benchmark performance of unseen models using a highly condensed subset of test samples. It probes the trade-off between evaluation cost reduction and the fidelity of accuracy estimation and model ranking preservation across language and vision benchmarks. Use when the user wants to benchmark on MMLU, HellaSwag, Winogrande, ARC, ImageNet-1k, or asks about evaluating this task. Reports MAE, Spearman rank correlation.
metadata:
skill_kind: dataset_eval
source_arxiv: 2510.07959
bibtex_key: rubinstein2025disco
confidence: high
---
# disco-eval
> DISCO: Diversifying Sample Condensation for Efficient Model Evaluation — Rubinstein et al. (2025) (arXiv:2510.07959, 2025)
## What this evaluates
This protocol evaluates how well a metamodel can predict the benchmark performance of unseen models using a highly condensed subset of test samples. It probes the trade-off between evaluation cost reduction and the fidelity of accuracy estimation and model ranking preservation across language and vision benchmarks.
## Datasets
- **MMLU** — total 14000; splits: test (-1)
- **HellaSwag** — total 10000; splits: test (-1)
- **Winogrande** — total 1300; splits: test (-1)
- **ARC** — total 1200; splits: test (-1)
- **ImageNet-1k** — total 1280000; splits: test (-1)
## Metrics
- `MAE` **(primary)** — range: percent
- Mean Absolute Error of model accuracies, calculated as the average absolute difference between true and predicted accuracy scores.
- `Spearman rank correlation` **(primary)** — range: [0, 1]
- Spearman rank correlation coefficient measuring the consistency of the relative ordering of models between true and estimated performances.
## Input / output format
**Input**: Concatenated model signatures (predictions/responses on the condensed test set) for each target model.
**Output**: Predicted accuracy score and predicted rank for the target model.
## Scoring recipe
```python
def compute_metrics(true_accs, pred_accs, true_ranks, pred_ranks):
mae = np.mean(np.abs(np.array(true_accs) - np.array(pred_accs)))
rank_corr = spearmanr(true_ranks, pred_ranks).correlation
return {'MAE': mae, 'Rank': rank_corr}
```
## Common pitfalls
- Metabench requires significantly more samples to converge (150-450 points), making direct comparison at 100 points unfair.
- Using performance-based splits instead of chronological splits artificially inflates prediction difficulty by testing on models that outperform training models.
- Failing to apply dimensionality reduction (e.g., PCA) to model signatures causes overfitting and drops rank correlation from ~0.987 to ~0.918.
## Evidence (verbatim from paper)
> We evaluate DISCO and baseline approaches using two complementary metrics. First, the Mean Absolute Error (MAE) of the model accuracies, reported as percentage points (%p), captures the absolute error of accuracy prediction. Second, to assess the consistency of the relative ordering of models, we report the Spearman rank correlation (Rank) in model ranking between the true and estimated model performances.
## Citation
```bibtex
@misc{rubinstein2025disco,
title={DISCO: Diversifying Sample Condensation for Efficient Model Evaluation},
author={Rubinstein et al. (2025)},
year={2025},
note={arXiv:2510.07959}
}
```
- arXiv: 2510.07959
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!