mop-llm-pruning-eval
Compressing LLMs with MoP: Mixture of Pruners — Yamamoto et al. (2026) (arXiv:2602.06127, 2026)
What this evaluates
Evaluates the performance of pruned large language models on a suite of commonsense reasoning and multimodal benchmarks to measure accuracy retention under varying compression ratios.
Datasets
- ARC-e, ARC-c, HellaSwag, PIQA, WinoGrande, ScienceQA, VizWiz, LLaVA-Bench, MM-Vet — total ?; splits: test (-1)
Metrics
accuracy (primary) — range: [0, 1]
- Standard accuracy for WinoGrande; normalized accuracy for ARC-e, ARC-c, HellaSwag, and PIQA. Computed as the fraction of correctly answered multiple-choice questions.
latency — range: seconds
- Wall-clock time in seconds to process 12 input tokens and autoregressively generate 128 output tokens at batch size 1. Reported as speedup factor or percentage reduction relative to the dense baseline.
Input / output format
Input: Multiple-choice questions or prompts from the specified benchmarks, formatted according to EleutherAI LM Harness or LMMs-Eval conventions.
Output: Model's predicted answer choice or generated text response.
Scoring recipe
def compute_accuracy(predictions, golds):
correct = sum(1 for p, g in zip(predictions, golds) if p == g)
return correct / len(golds)
# Note: ARC-e/c, HellaSwag, PIQA use normalized accuracy; WinoGrande uses standard accuracy.
Common pitfalls
- Failing to distinguish between standard accuracy (WinoGrande) and normalized accuracy (ARC, HellaSwag, PIQA), which use different scoring conventions.
- Reporting inference latency without specifying the exact prompt length, output length, and batch size, as speedup is highly sensitive to these parameters.
- Using the calibration set (WikiText-2) for final performance reporting instead of the held-out evaluation benchmarks.
Evidence (verbatim from paper)
we evaluate the LLMs on five commonsense benchmarks: ARC-e / ARC-c, HellaSwag, PIQA, and WinoGrande. We employ the EleutherAI LM Harness framework to conduct these evaluations. Consistent with established literature, we report standard accuracy for WinoGrande and normalized accuracy for the remaining tasks.
Citation
@misc{yamamoto2026mop,
title={Compressing LLMs with MoP: Mixture of Pruners},
author={Yamamoto et al. (2026)},
year={2026},
note={arXiv:2602.06127}
}
1---2name: mop-llm-pruning-eval3description: Evaluates the performance of pruned large language models on a suite of commonsense reasoning and multimodal benchmarks to measure accuracy retention under varying compression ratios. Use when the user wants to benchmark on ARC-e, ARC-c, HellaSwag, PIQA, WinoGrande, ScienceQA, VizWiz, LLaVA-Bench, MM-Vet, or asks about evaluating this task. Reports accuracy.4---56# mop-llm-pruning-eval78> Compressing LLMs with MoP: Mixture of Pruners — Yamamoto et al. (2026) (arXiv:2602.06127, 2026)910## What this evaluates1112Evaluates the performance of pruned large language models on a suite of commonsense reasoning and multimodal benchmarks to measure accuracy retention under varying compression ratios.1314## Datasets1516- **ARC-e, ARC-c, HellaSwag, PIQA, WinoGrande, ScienceQA, VizWiz, LLaVA-Bench, MM-Vet** — total ?; splits: test (-1)1718## Metrics1920- `accuracy` **(primary)** — range: [0, 1]21 - Standard accuracy for WinoGrande; normalized accuracy for ARC-e, ARC-c, HellaSwag, and PIQA. Computed as the fraction of correctly answered multiple-choice questions.22- `latency` — range: seconds23 - Wall-clock time in seconds to process 12 input tokens and autoregressively generate 128 output tokens at batch size 1. Reported as speedup factor or percentage reduction relative to the dense baseline.2425## Input / output format2627**Input**: Multiple-choice questions or prompts from the specified benchmarks, formatted according to EleutherAI LM Harness or LMMs-Eval conventions.2829**Output**: Model's predicted answer choice or generated text response.3031## Scoring recipe3233```python34def compute_accuracy(predictions, golds):35 correct = sum(1 for p, g in zip(predictions, golds) if p == g)36 return correct / len(golds)37# Note: ARC-e/c, HellaSwag, PIQA use normalized accuracy; WinoGrande uses standard accuracy.38```3940## Common pitfalls4142- Failing to distinguish between standard accuracy (WinoGrande) and normalized accuracy (ARC, HellaSwag, PIQA), which use different scoring conventions.43- Reporting inference latency without specifying the exact prompt length, output length, and batch size, as speedup is highly sensitive to these parameters.44- Using the calibration set (WikiText-2) for final performance reporting instead of the held-out evaluation benchmarks.4546## Evidence (verbatim from paper)4748> we evaluate the LLMs on five commonsense benchmarks: ARC-e / ARC-c, HellaSwag, PIQA, and WinoGrande. We employ the EleutherAI LM Harness framework to conduct these evaluations. Consistent with established literature, we report standard accuracy for WinoGrande and normalized accuracy for the remaining tasks.4950## Citation5152```bibtex53@misc{yamamoto2026mop,54 title={Compressing LLMs with MoP: Mixture of Pruners},55 author={Yamamoto et al. (2026)},56 year={2026},57 note={arXiv:2602.06127}58}59```6061- arXiv: 2602.06127