simba-benchmark-analysis-eval
SimBA: Simplifying Benchmark Analysis Using Performance Matrices Alone — Subramani et al. (2025) (arXiv:2510.17998, 2025)
What this evaluates
Evaluates a framework for analyzing language model performance matrices by identifying dataset-model correlations, discovering minimal representative dataset subsets, and predicting held-out model performance while preserving model rankings.
Datasets
- HELM — total ?; splits: train (23), test (6)
- MMLU — total ?; splits: train (63), test (16)
- BigBenchLite — total ?; splits: train (36), test (9)
Metrics
coverage ($\eta$) (primary) — range: [0, 1]
- Measures how well a representative dataset subset captures the performance patterns of the full benchmark as the subset size grows. Calculated by comparing model performance distributions between the subset and the full set.
$R^2$ — range: [0, 1]
- Regression-based coefficient of determination used to quantify linear, exponential, or power-law correlations between datasets and models. Computed as 1 - (SS_res / SS_tot).
Input / output format
Input: Pre-computed performance matrices containing model scores across datasets, partitioned into training and test model sets.
Output: Minimal representative dataset subsets, regression fit parameters, predicted performance matrices for held-out models, and preserved model rankings.
Scoring recipe
def compute_coverage(full_matrix, subset_matrix):
# Compare performance patterns between full and subset matrices
similarity = pearson_correlation(full_matrix.flatten(), subset_matrix.flatten())
return similarity
def compute_r_squared(y_true, y_pred):
ss_res = sum((y - y_hat)**2 for y, y_hat in zip(y_true, y_pred))
ss_tot = sum((y - mean(y_true))**2 for y in y_true)
return 1 - (ss_res / ss_tot)
Common pitfalls
- Models are randomly split 80/20 across train/test, not the dataset instances.
- All datasets appear in both train and test splits, so evaluation tests model generalization across model splits, not dataset splits.
- Coverage and R² are computed at the matrix level, ignoring instance-level prediction errors.
Evidence (verbatim from paper)
Figure 2: Here, we measure the coverage ( $\eta$) across HELM, MMLU, and BigBenchLite as our representative subset $S$ grows. We report performance for all three baselines and all nine similarity measures discussed in [§˜3]. For our analysis, we look at three benchmarks: HELM, MMLU, and BigBenchLite... splitting each benchmark into training and test sets to validate our analysis. All datasets are included in both splits, but models are separated across training and test sets randomly with 80% of models in training and 20% of the models in test.
Citation
@misc{subramani2025simba,
title={SimBA: Simplifying Benchmark Analysis Using Performance Matrices Alone},
author={Subramani et al. (2025)},
year={2025},
note={arXiv:2510.17998}
}
1---2name: simba-benchmark-analysis-eval3description: Evaluates a framework for analyzing language model performance matrices by identifying dataset-model correlations, discovering minimal representative dataset subsets, and predicting held-out model performance while preserving model rankings. Use when the user wants to benchmark on HELM, MMLU, BigBenchLite, or asks about evaluating this task. Reports coverage ($\eta$).4---56# simba-benchmark-analysis-eval78> SimBA: Simplifying Benchmark Analysis Using Performance Matrices Alone — Subramani et al. (2025) (arXiv:2510.17998, 2025)910## What this evaluates1112Evaluates a framework for analyzing language model performance matrices by identifying dataset-model correlations, discovering minimal representative dataset subsets, and predicting held-out model performance while preserving model rankings.1314## Datasets1516- **HELM** — total ?; splits: train (23), test (6)17- **MMLU** — total ?; splits: train (63), test (16)18- **BigBenchLite** — total ?; splits: train (36), test (9)1920## Metrics2122- `coverage ($\eta$)` **(primary)** — range: [0, 1]23 - Measures how well a representative dataset subset captures the performance patterns of the full benchmark as the subset size grows. Calculated by comparing model performance distributions between the subset and the full set.24- `$R^2$` — range: [0, 1]25 - Regression-based coefficient of determination used to quantify linear, exponential, or power-law correlations between datasets and models. Computed as 1 - (SS_res / SS_tot).2627## Input / output format2829**Input**: Pre-computed performance matrices containing model scores across datasets, partitioned into training and test model sets.3031**Output**: Minimal representative dataset subsets, regression fit parameters, predicted performance matrices for held-out models, and preserved model rankings.3233## Scoring recipe3435```python36def compute_coverage(full_matrix, subset_matrix):37 # Compare performance patterns between full and subset matrices38 similarity = pearson_correlation(full_matrix.flatten(), subset_matrix.flatten())39 return similarity4041def compute_r_squared(y_true, y_pred):42 ss_res = sum((y - y_hat)**2 for y, y_hat in zip(y_true, y_pred))43 ss_tot = sum((y - mean(y_true))**2 for y in y_true)44 return 1 - (ss_res / ss_tot)45```4647## Common pitfalls4849- Models are randomly split 80/20 across train/test, not the dataset instances.50- All datasets appear in both train and test splits, so evaluation tests model generalization across model splits, not dataset splits.51- Coverage and R² are computed at the matrix level, ignoring instance-level prediction errors.5253## Evidence (verbatim from paper)5455> Figure 2: Here, we measure the coverage ( $\eta$) across HELM, MMLU, and BigBenchLite as our representative subset $S$ grows. We report performance for all three baselines and all nine similarity measures discussed in [§˜3]. For our analysis, we look at three benchmarks: HELM, MMLU, and BigBenchLite... splitting each benchmark into training and test sets to validate our analysis. All datasets are included in both splits, but models are separated across training and test sets randomly with 80% of models in training and 20% of the models in test.5657## Citation5859```bibtex60@misc{subramani2025simba,61 title={SimBA: Simplifying Benchmark Analysis Using Performance Matrices Alone},62 author={Subramani et al. (2025)},63 year={2025},64 note={arXiv:2510.17998}65}66```6768- arXiv: 2510.17998