llm-benchmark-eval
Large Language Diffusion Models — Nie et al. (2025) (arXiv:2502.09992, 2025)
What this evaluates
Evaluates a language model's general capabilities, including in-context learning, instruction following, mathematical reasoning, code generation, and bidirectional reversal reasoning across a suite of standard and custom benchmarks.
Datasets
- MMLU — total ?; splits: test (-1)
- GSM8K — total ?; splits: test (-1)
- HumanEval — total ?; splits: test (-1)
- Chinese Poem Sentence Pairs — total 496; splits: test (496)
Metrics
accuracy (primary) — range: percent
- Percentage of correctly answered questions or completed poem lines. Evaluated with specified in-context learning shots (e.g., 5-shot for MMLU, 4-shot for GSM8K, 0-shot for ARC-C).
Input / output format
Input: Task-specific prompt containing N-shot in-context examples followed by the test instance, or a single poem line for reversal tasks.
Output: Model-generated answer, selected option, or poem line.
Scoring recipe
predictions = model.generate(prompt)
gold = ground_truth
score = 100 * (sum(1 for p, g in zip(predictions, golds) if exact_match(p, g)) / len(golds))
Common pitfalls
- Evaluation protocols follow existing studies, but exact prompt templates and few-shot selection vary per benchmark (e.g., 0-shot for ARC-C, 5-shot for MMLU).
- Data leakage is a concern; the authors explicitly checked GSM8K but note closed-source dataset distributions may affect comparability.
- Reversal tasks are evaluated zero-shot without fine-tuning, so performance reflects inherent bidirectional capability rather than task-specific adaptation.
Evidence (verbatim from paper)
To comprehensively evaluate the in-context learning and instruction-following capabilities of LLaDA 8B, we conducted detailed comparisons with existing LLMs of similar scale. Task selection and evaluation protocols followed existing studies, covering popular benchmarks in general tasks, mathematics, code, and Chinese. To quantify the reversal reasoning ability of models, we follow the protocol established in Allen-Zhu and Li [[35]]. Specifically, we construct a dataset of 496 famous Chinese poem sentence pairs. Given a sentence from a poem, models are tasked with generating the subsequent line (forward) or the preceding line (reversal) without additional fine-tuning.
Citation
@misc{nie2025largelanguagediffusionmodels,
title={Large Language Diffusion Models},
author={Nie et al. (2025)},
year={2025},
note={arXiv:2502.09992}
}
1---2name: llm-benchmark-eval3description: Evaluates a language model's general capabilities, including in-context learning, instruction following, mathematical reasoning, code generation, and bidirectional reversal reasoning across a suite of standard and custom benchmarks. Use when the user wants to benchmark on MMLU, GSM8K, HumanEval, Chinese Poem Sentence Pairs, or asks about evaluating this task. Reports accuracy.4---56# llm-benchmark-eval78> Large Language Diffusion Models — Nie et al. (2025) (arXiv:2502.09992, 2025)910## What this evaluates1112Evaluates a language model's general capabilities, including in-context learning, instruction following, mathematical reasoning, code generation, and bidirectional reversal reasoning across a suite of standard and custom benchmarks.1314## Datasets1516- **MMLU** — total ?; splits: test (-1)17- **GSM8K** — total ?; splits: test (-1)18- **HumanEval** — total ?; splits: test (-1)19- **Chinese Poem Sentence Pairs** — total 496; splits: test (496)2021## Metrics2223- `accuracy` **(primary)** — range: percent24 - Percentage of correctly answered questions or completed poem lines. Evaluated with specified in-context learning shots (e.g., 5-shot for MMLU, 4-shot for GSM8K, 0-shot for ARC-C).2526## Input / output format2728**Input**: Task-specific prompt containing N-shot in-context examples followed by the test instance, or a single poem line for reversal tasks.2930**Output**: Model-generated answer, selected option, or poem line.3132## Scoring recipe3334```python35predictions = model.generate(prompt)36gold = ground_truth37score = 100 * (sum(1 for p, g in zip(predictions, golds) if exact_match(p, g)) / len(golds))38```3940## Common pitfalls4142- Evaluation protocols follow existing studies, but exact prompt templates and few-shot selection vary per benchmark (e.g., 0-shot for ARC-C, 5-shot for MMLU).43- Data leakage is a concern; the authors explicitly checked GSM8K but note closed-source dataset distributions may affect comparability.44- Reversal tasks are evaluated zero-shot without fine-tuning, so performance reflects inherent bidirectional capability rather than task-specific adaptation.4546## Evidence (verbatim from paper)4748> To comprehensively evaluate the in-context learning and instruction-following capabilities of LLaDA 8B, we conducted detailed comparisons with existing LLMs of similar scale. Task selection and evaluation protocols followed existing studies, covering popular benchmarks in general tasks, mathematics, code, and Chinese. To quantify the reversal reasoning ability of models, we follow the protocol established in Allen-Zhu and Li [[35]]. Specifically, we construct a dataset of 496 famous Chinese poem sentence pairs. Given a sentence from a poem, models are tasked with generating the subsequent line (forward) or the preceding line (reversal) without additional fine-tuning.4950## Citation5152```bibtex53@misc{nie2025largelanguagediffusionmodels,54 title={Large Language Diffusion Models},55 author={Nie et al. (2025)},56 year={2025},57 note={arXiv:2502.09992}58}59```6061- arXiv: 2502.09992