ICLR Reproducibility
Use this when the paper's main claims depend on experiments, simulations, data processing, human
subjects, or benchmark comparisons. ICLR reviewers are asked to evaluate rigor and reproducibility,
not just headline scores.
Reproducibility audit
- Map each central claim to a table, figure, proof, appendix item, or artifact command.
- Record seeds, variance, confidence intervals, test splits, preprocessing, early stopping,
hyperparameter search, model selection, and compute budget.
- Distinguish training compute from inference compute and report hardware details that affect
comparability.
- Add negative results and failure cases when they explain boundary conditions.
- Check whether ethics or reproducibility statements are relevant under the current Author Guide.
- Make the appendix useful but not required for basic verification; reviewers may not inspect every
appendix page.
Common ICLR weak points
- Single-seed wins on unstable benchmarks.
- Missing comparison to strong open-source baselines or recent OpenReview/arXiv work.
- Ambiguous data leakage, test-set tuning, or prompt selection.
- Scaling claims without enough model sizes, tasks, or compute reporting.
- Ablations that remove multiple mechanisms at once.
- Private data or closed APIs with no substitute verification path.
The reproducibility statement as a contract
ICLR has long pushed reproducibility statements and code release as community norms. Treat the
statement as a public contract: it sits beside the paper permanently, so reviewers and later readers
will hold you to it. Map every claim to something checkable.
| Claim element |
What the statement should pin |
Reviewer doubt it removes |
| Headline number |
Seed set, split, exact command |
"Did they tune on test?" |
| Architecture detail |
Config file in the supplement |
"Hidden trick not in the text" |
| Compute cost |
Hardware and FLOPs, train vs inference |
"Only works at huge scale" |
| Data pipeline |
Preprocessing script and license |
"Leakage between splits" |
Worked vignette
A representation-learning paper reports an embedding that improves retrieval. The reproducibility
statement maps the headline metric to eval_retrieval.py --seed {0..4} --split test, names the
frozen-encoder protocol, links the anonymized config, and reports per-seed variance. When a reviewer
asks whether the gain survives a different split, the authors point to the appendix table already
covering it. The verifiable mapping turns a potential "fragile" grade into "adequate" without new runs.
Reviewer-pushback patterns
- "Cannot verify without your private data." Provide a synthetic or public-subset substitute path.
- "No variance reported." Add seed spread; ICLR reviewers distrust single-run peaks.
- "Appendix is a dump." Add an appendix map so verification does not require reading every page.
Output format
[Reproducibility grade] strong / adequate / fragile / not reviewable
[Claim-to-evidence map] <claim -> table/figure/appendix/artifact>
[Missing controls] <seeds, baselines, ablations, leakage checks>
[Compute disclosure] complete / incomplete
[Priority fixes] <smallest changes that improve review confidence>
1---2name: iclr-reproducibility3description: Use when strengthening reproducibility for ICLR papers, including seeds, variance, compute, datasets, implementation details, ethics statements, and reviewer-verifiable evidence. Use when writing the ICLR reproducibility statement, when a reviewer says a result is not verifiable, or when mapping each representation-learning claim to a seed, split, and command so anyone reading the permanent OpenReview record can check it.4---56# ICLR Reproducibility78Use this when the paper's main claims depend on experiments, simulations, data processing, human9subjects, or benchmark comparisons. ICLR reviewers are asked to evaluate rigor and reproducibility,10not just headline scores.1112## Reproducibility audit1314- Map each central claim to a table, figure, proof, appendix item, or artifact command.15- Record seeds, variance, confidence intervals, test splits, preprocessing, early stopping,16 hyperparameter search, model selection, and compute budget.17- Distinguish training compute from inference compute and report hardware details that affect18 comparability.19- Add negative results and failure cases when they explain boundary conditions.20- Check whether ethics or reproducibility statements are relevant under the current Author Guide.21- Make the appendix useful but not required for basic verification; reviewers may not inspect every22 appendix page.2324## Common ICLR weak points2526- Single-seed wins on unstable benchmarks.27- Missing comparison to strong open-source baselines or recent OpenReview/arXiv work.28- Ambiguous data leakage, test-set tuning, or prompt selection.29- Scaling claims without enough model sizes, tasks, or compute reporting.30- Ablations that remove multiple mechanisms at once.31- Private data or closed APIs with no substitute verification path.3233## The reproducibility statement as a contract3435ICLR has long pushed reproducibility statements and code release as community norms. Treat the36statement as a public contract: it sits beside the paper permanently, so reviewers and later readers37will hold you to it. Map every claim to something checkable.3839| Claim element | What the statement should pin | Reviewer doubt it removes |40| --- | --- | --- |41| Headline number | Seed set, split, exact command | "Did they tune on test?" |42| Architecture detail | Config file in the supplement | "Hidden trick not in the text" |43| Compute cost | Hardware and FLOPs, train vs inference | "Only works at huge scale" |44| Data pipeline | Preprocessing script and license | "Leakage between splits" |4546## Worked vignette4748A representation-learning paper reports an embedding that improves retrieval. The reproducibility49statement maps the headline metric to `eval_retrieval.py --seed {0..4} --split test`, names the50frozen-encoder protocol, links the anonymized config, and reports per-seed variance. When a reviewer51asks whether the gain survives a different split, the authors point to the appendix table already52covering it. The verifiable mapping turns a potential "fragile" grade into "adequate" without new runs.5354## Reviewer-pushback patterns5556- "Cannot verify without your private data." Provide a synthetic or public-subset substitute path.57- "No variance reported." Add seed spread; ICLR reviewers distrust single-run peaks.58- "Appendix is a dump." Add an appendix map so verification does not require reading every page.5960## Output format6162```text63[Reproducibility grade] strong / adequate / fragile / not reviewable64[Claim-to-evidence map] <claim -> table/figure/appendix/artifact>65[Missing controls] <seeds, baselines, ablations, leakage checks>66[Compute disclosure] complete / incomplete67[Priority fixes] <smallest changes that improve review confidence>68```69