Add ArxivRollBench scenario#4288
Open
liangzid wants to merge 1 commit into
Open
Conversation
liangzid
marked this pull request as ready for review
May 24, 2026 06:52
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds ArxivRollBench as a HELM scenario and run spec.
ArxivRollBench is a rolling arXiv benchmark for recent scientific text reasoning. It is built from newly released arXiv papers and evaluates three multiple-choice task types:
The benchmark spans multiple arXiv domains and has rolling releases (
2024b,2025a,2026a) to reduce overfitting to static benchmark snapshots. The paper has been accepted to AAAI 2026: https://ojs.aaai.org/index.php/AAAI/article/view/41098. Project website: https://arxivrollbench.github.io/.Why this benchmark fits HELM
ArxivRollBench is intended to fill a gap in temporally refreshed scientific reasoning evaluation. Many widely used academic reasoning benchmarks are static, so model scores can become harder to interpret as benchmark data ages or becomes exposed during model development. ArxivRollBench focuses on recent scientific text and releases new benchmark snapshots over time, which makes it useful for measuring whether LLMs can reason over contemporary research writing rather than only memorizing older public examples.
This matches HELM's goal of broad, reproducible, and transparent model evaluation across meaningful capabilities.
Changes
ArxivRollBenchScenario.arxivrollbenchrun spec.release:2024b,2025a,2026a, oralldomain:cs,q_fin/q-fin,math,physics,stat,q_bio/q-bio,econ,eess, oralltask_type:s,c,p, orallsplit:compactorfullInstanceconversion.The default run spec uses
split=compact, corresponding to the lightweight-50datasets. Full benchmark runs can passsplit=full.Example
Validation
python -m compileall -q src/helm/benchmark/scenarios/arxivrollbench_scenario.py src/helm/benchmark/run_specs/arxivrollbench_run_specs.py src/helm/benchmark/scenarios/test_arxivrollbench_scenario.pypython -m black --check src/helm/benchmark/scenarios/arxivrollbench_scenario.py src/helm/benchmark/run_specs/arxivrollbench_run_specs.py src/helm/benchmark/scenarios/test_arxivrollbench_scenario.pyPYTHONPATH=src python -m pytest -o addopts='' src/helm/benchmark/scenarios/test_arxivrollbench_scenario.pyPYTHONPATH=src python -m helm.benchmark.run --run-entries arxivrollbench:release=2026a,domain=cs,task_type=s,split=compact,model=simple/model1 --suite arxivrollbench_smoke --max-eval-instances 1 --dry-run --output-path /tmp/helm-arxivrollbench-smokeThe smoke run loads the compact Hugging Face dataset, builds one HELM scenario state, and verifies the prompt path without external model calls.