Run GPQA Diamond
The same run guide is also available from the benchmark detail page.
GPQA Diamond is a 448-question graduate-level science multiple-choice set; the score is exact-match accuracy on the A/B/C/D answer. The idavidrein/gpqa repo only hosts the (HF-gated) data and paper scaffolding, so the canonical runnable harness is OpenAI simple-evals: its gpqa_eval.py pulls gpqa_diamond.csv from OpenAI's public Azure mirror and grades answers locally. Keep attached to any score: harness=openai/simple-evals @ commit, sampler/model, --n-repeats value (default 10 via simple_evals.py), whether --examples subsampled, and that this is the Diamond variant.
1Install
git clone https://github.com/openai/simple-evals.git# simple-evals has no requirements.txt/setup.py; README installs deps individually. openai/anthropic are from the README; pandas+blobfile (Azure CSV fetch) and jinja2 (HTML report) are required by gpqa_eval.py/common.py.
pip install openai anthropic blobfile pandas jinja2export OPENAI_API_KEY=sk-... # or ANTHROPIC_API_KEY=... for Anthropic models2Run evaluation
# List the samplers/models registered in the repo (README-documented).
python -m simple-evals.simple_evals --list-models# Run only GPQA (Diamond) against a registered model. Add --examples N to subsample, --debug for a 1-repeat smoke test, --n-repeats to override the default of 10.
python -m simple-evals.simple_evals --model <model_name> --eval gpqa3Expected output
gpqa_eval.py downloads gpqa_diamond.csv from https://openaipublic.blob.core.windows.net/simple-evals/gpqa_diamond.csv (variant defaults to 'diamond'), queries your model (simple_evals.py sets n_repeats=10 unless --n-repeats/--debug given, over the 448 Diamond questions), regex-extracts the chosen letter, and computes exact-match accuracy. simple_evals.py prints the aggregate score and writes a per-eval HTML report + JSON results into the working directory.
4Submit results
GPQA has no central submission/leaderboard; report the accuracy your run prints. Always attach the run context: harness = openai/simple-evals at a pinned git commit, the exact --model / sampler used, --n-repeats (simple_evals.py default 10) and whether --examples subsampled the set, and that the variant is Diamond (gpqa_diamond.csv). Do not compare against numbers produced by a different harness, prompt template, or repeat count.