adduce
A local research-artifact auditor.
adduce checks whether a paper's claims, code, configs, data, dependencies, remote models, precision settings, and generated results still agree with each other before submission. It also drafts repository-observable NeurIPS/ACL checklist items, an ACM Artifact Appendix, archival metadata (RO-Crate, Croissant, CodeMeta, Zenodo), and a claim-by-claim evidence trail for author review.
pipx install adduce # or: pip install adduce / uvx adduce
adduce check .
PyPI 0.1.1 is the current release.
Existing installations do not update automatically. Upgrade with the command for the installer you used:
python -m pip install --upgrade adduce
pipx upgrade adduce
uv tool upgrade adduce
For a one-off run that explicitly selects the latest release, use
uvx adduce@latest --version.
The north-star question: for every number in the paper, can I point to the artifact that produced it, and will that artifact still produce it elsewhere?
adduceis offline by default and sends nothing anywhere during ordinary checks. Public-metadata lookups are opt-in through--onlineorpin-remotes; they resolve Hugging Face revisions and URL headers from the user's machine and cache responses in.adduce/cache. The separatechecklist --llmoption sends the selected checklist question plus deterministic rule statuses and messages to the provider the user explicitly configures, or to a local Ollama endpoint. Those messages can contain repository paths, artifact identifiers, and detected metric or configuration values, but not source-file contents. No server is operated by the project.
What it reports
Trimmed output captured from running adduce check on nanoGPT at commit 3adf61e:
╭─ adduce · nanoGPT · commit 3adf61e ──────────────────────────────────────╮
│ Reproducibility 54/100 Bronze · profile: default │
╰──────────────────────────────────────────────────────────────────────────────╯
Reviewer time to first result: 23–83 min (Risky)
- no one-command reproduction path
- environment must be assembled by hand (no container or conda env)
- no smoke/quick-run target for a minutes-scale sanity check
Category Score Notes
Environment & Tooling 1/10 No dependency manifest found
(requirements.txt, pyproject.toml, ...)
Determinism & Model 3/12 Some RNG sources are seeded, but not all:
missing python (random.seed), numpy;
neither cudnn.deterministic=True nor ...
Numerical Precision & Hardware 2/4 TF32 matmul precision control in use
(torch.backends.cuda.matmul.allow_tf32 =
True) but no precision policy documented
Checkpoint & Experiment State 2/3 No torch.save site visibly includes
LR-scheduler state or epoch/step progress
Top fixes (largest score gains first)
1. Extend the seeding helper to cover: python (random.seed), numpy.
adduce fix --scaffold seeds
2. Set cudnn.deterministic = True and cudnn.benchmark = False.
adduce fix --scaffold seeds
3. Declare dependencies, then pin them (pip-compile, uv lock, poetry lock).
4. Add revision="<commit-sha>" to each from_pretrained call.
adduce pin-remotes --diff
Location-bearing findings are anchored to source lines—the TF32 finding above points at train.py:107, and the unpinned hub call at model.py:238. When a manifest declares claims, the report adds a per-claim trail:
Claim trails (manifest)
Table 2 · "LambdaMART improves NDCG@10 to 0.814"
metric results/lambdamart_eval.csv (found: 0.8127) ~ rounding vs paper (0.814) ✓
command make eval-lambdamart
config configs/lambdamart.yaml ✓
seeds 42, 43, 44
status PARTIAL
Every finding carries a status (pass / partial / fail / not-applicable / unknown), a confidence, available file:line locations, and a concrete remediation. partial is used when the repository supports only part of a check.
The three layers, and which one this is
The reproducibility problem has three layers. FAIR tools such as howfairis focus on sharing (findable, licensed, citable). ReproZip, DataLad, and repo2docker focus on packaging (capture and replay execution). adduce focuses on traceability: whether each reported claim maps to the code, config, data, seed, environment, command, and logged result that produced it, while using sharing and packaging signals as inputs.
The Reproducibility Manifest
.adduce/manifest.yaml is the machine-readable source of truth. adduce manifest drafts it from detected evidence—claims extracted from the paper, datasets from loaders, unpinned remotes, and the environment—and marks generated claims as drafts for author confirmation. Non-draft manifest links are authoritative; draft and inferred links retain their provisional status. Refreshes are written as separate proposal files so comments, extensions, and author content are never overwritten.
schema: adduce/1
claims:
- id: C1
text: "LambdaMART achieves NDCG@10 of 0.814"
where: "Table 2"
metric: "ndcg@10"
value: 0.814
seeds: [42, 43, 44]
produced_by:
command: "make eval-lambdamart"
config: configs/lambdamart.yaml
log: results/lambdamart_eval.csv
smoke:
command: "python train.py --config configs/smoke.yaml"
max_runtime_minutes: 10
expected_outputs: ["results/smoke_metrics.json"]
A smoke target can substantially reduce reviewer setup time by checking the pipeline's shape without requiring the full experiment.
What it checks
78 rules across 17 categories:
| Category | Prefix | Examples |
|---|---|---|
| Code & Execution | R-EXEC |
entrypoint, one-command runner, exact reproduce command |
| Environment & Tooling | R-ENV |
pinning posture, lockfile, container, Python version, CUDA capture |
| Dependencies | R-DEP |
ghost imports, unused declarations, notebook-only imports, system tools |
| Data | R-DATA |
provenance, download path, checksums, LFS, access-friction grade A–E |
| Documentation | R-DOC |
README sections, hyperparameters recorded, expected results |
| Determinism & Model | R-DET |
layered seeds, cuDNN flags, strict mode, both DataLoader RNG sources, random_state |
| Numerical Precision & Hardware | R-PREC |
undocumented TF32/AMP/bf16, hardware baseline (warnings, never fails) |
| Paper & Artifact Consistency | R-DRIFT |
paper hyperparameter vs authoritative config, dataset drift, ablation traces |
| Result Reconciliation | R-RES |
reported vs logged metrics, rounding vs material gaps, single-run detection |
| Run Traceability | R-RUN |
per-claim commands, materialised Hydra configs vs committed ones, SLURM requests |
| Checkpoint & Experiment State | R-CKPT |
optimizer/scheduler/RNG state, epoch, config/commit provenance in checkpoints |
| Notebooks | R-NB |
execution order, hidden state, !pip install cells, seed-before-draw, script twins |
| Portability | R-PORT |
absolute paths, localhost, drive-link data sources, committed secrets |
| Remote Artifacts & Rot | R-REMOTE |
unpinned from_pretrained, mutable revisions, torch.hub, checksum-less downloads |
| Versioning | R-VER |
git, tags, commit referenced in docs |
| Access & Legal | R-LIC |
LICENSE, CITATION.cff, third-party asset licenses |
| Archival Readiness | R-ARC |
DOI/SWHID, archivable size, .zenodo.json/codemeta.json |
Drift resolution uses an explicit authority ranking: a materialised run config (Hydra output, W&B, MLflow) outranks a checked-in config only when an author-confirmed claim links that run config; checked-in configs otherwise outrank argparse/dataclass defaults. Floats compare with rounding-awareness (a paper's 0.814 matches a logged 0.8137); nothing ever auto-edits the .tex.
Call resolution goes through an import-alias map (import torch as th is handled) plus one hop of wrapper resolution: a project-local set_seed() that calls the primitives counts. Python's dynamism (getattr, dynamic import) cannot be resolved statically — which is exactly why findings carry a confidence, never a verdict.
Commands
adduce check . # everything offline: report, claim trails, reviewer time
adduce check --mode reviewer # skeptical framing: what could not be verified
adduce check --mode ae-chair # badge prerequisites, blocking issues, burden headline
adduce check -f json|sarif|markdown|badge|latex -o out
adduce check ./code --paper ../paper # paper and code kept in separate repositories
adduce drift # paper ↔ code/config consistency + result reconciliation
adduce precision # TF32/AMP/low-precision audit
adduce deps # ghost/unused/notebook dependency analysis
adduce manifest # scaffold .adduce/manifest.yaml
adduce manifest --refresh # write a separate refresh proposal; never overwrite author content
adduce checklist --profile neurips # repository-evidence checklist draft (also: acl); --strict-evidence
adduce appendix # ACM Artifact Appendix draft; --strict-evidence
adduce package --profile neurips # one-command submission bundle (checklist, appendix,
# manifest, ledger, checksums, RO-Crate) in adduce-submission/
adduce audit-generated checklist.md # audit a generated artifact against its evidence ledger
adduce export ro-crate|croissant|codemeta|zenodo|checksums|software-heritage|all
adduce badge --svg # committed-in-repo badge; no hosted endpoint
adduce diff main...HEAD # artifact regression: code changed, docs/manifest did not?
adduce archive-plan # exact steps to a Zenodo DOI / Software Heritage SWHID
adduce baseline # snapshot for the CI ratchet
adduce rules · adduce explain R-DET-001
adduce fix --scaffold seeds|docker|citation|runner|readme
# opt-in, clearly fenced:
adduce pin-remotes --diff # resolve current Hugging Face revisions (online), show pin diffs
adduce reproduce --yes # run the smoke target twice, assert the runs agree (executes repo code)
adduce reproduce is the empirical layer: two runs with a pinned seed, fingerprinted (output hashes, stdout metrics), compared. It executes repository code, so it demands --yes, is designed to run inside the repo's own container or CI, and is never invoked by check. A first-use ordering diagnostic (python -m adduce.dynamic.import_hook train.py) reports whether seeding precedes the first RNG draw.
adduce pin-remotes resolves current revisions and drafts revision="<sha>" edits as diffs (libcst codemods, applied only with --write). Pinning to the current SHA is a forward guarantee — it does not recover the version historically used, and the output says so.
Reviewer time to first result
The reviewer-time estimate uses four buckets: < 10 min Excellent · 10–30 Good · 30–90 Risky · 90+ High reviewer burden. It lists the contributing signals (for example, no one-command path, manual data fetch, no smoke target, or undocumented runtime) so the estimate remains inspectable.
Scoring, profiles, suppression
Scoring is category-weighted and explainable — each category reports earned/possible with the findings that moved it; inapplicable categories drop out and the rest renormalise, so a scikit-learn repository is never scored against CUDA flags. Profiles: default, neurips, iclr, acl, acm, strict, or your own TOML.
Every finding carries four separate dimensions — status, confidence, severity, and score weight — because a low-confidence high-severity issue (a possible committed secret) must not read the same as a high-confidence low-severity one (a missing .zenodo.json).
loader = DataLoader(ds, shuffle=True) # adduce: ignore=R-DET-004
[tool.adduce] # or adduce.toml
profile = "neurips"
ignore = ["R-ARC-001"]
exclude = ["third_party"]
Suppressed findings still appear, marked as ignored.
Continuous integration
The default run is diagnostic: adduce check exits 0 regardless of score. Gate with --fail-under N, or adopt incrementally with adduce baseline + --fail-on-regression, which fails only when a recorded rule gets worse than the committed .adduce/baseline.json. Rules absent from the baseline are not classified as regressions.
# .github/workflows/reproducibility.yml
name: reproducibility
on: [pull_request]
jobs:
adduce:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: QHarshil/adduce@v0.1.1
with:
profile: neurips
report-file: adduce-report.md # lands in the job summary
sarif-file: adduce.sarif
- uses: github/codeql-action/upload-sarif@v3 # code-scanning alerts on public repos
with:
sarif_file: adduce.sarif
A pre-commit hook ships as well (id: adduce).
Extending adduce
Rules and reporters are discovered through entry points — the flake8/pytest pattern. A lab rule pack is an ordinary package:
# my_lab_rules.py
from adduce.rules import Category, Rule, Status
class SlurmScriptRule(Rule):
id = "R-LAB-001"
category = Category.CODE_EXECUTION
title = "SLURM submission script present"
rationale = "Our cluster reproductions start from a submit script."
weight = 3
def evaluate(self, ev):
scripts = ev.repo.find("slurm/*.sh") + ev.repo.find("*.sbatch")
if scripts:
return self.finding(Status.PASS, 0.9, f"Found {scripts[0].path}.")
return self.finding(Status.FAIL, 0.8, "No SLURM script found.",
remediation="Add slurm/submit.sh for the main experiment.")
RULES = [SlurmScriptRule]
[project.entry-points."adduce.rules"]
my_lab = "my_lab_rules"
# reporters: [project.entry-points."adduce.reporters"] name = "module:render"
Installing the pack is all it takes.
Generation safety
adduce generates checklist and appendix drafts that may enter real submissions, so their answers are derived from a deterministic evidence ledger—never treated as final claims or substitutes for author review. The full generation-safety contract documents this policy; the short version:
- Generated answers use a fixed vocabulary —
yes(direct, high-confidence evidence),partial(incomplete, inferred, or conflicting evidence),not detected(searched and absent, with the search scope recorded),author input required(depends on information outside the repository),unknown(too ambiguous to classify). There is no unsupported "yes." - Every checklist and appendix generation updates
.adduce/evidence-ledger.json: per-answer evidence with availablefile:lineanchors, confidence, evidence strength, and generation provenance (version, command, profile, commit, timestamp). Generated text is downstream of deterministic evidence, not the source of truth. --strict-evidencetightens generation for authors who want zero inference in the output.- Checklist, appendix, and package generation end with a safety summary (evidence-backed vs. partial vs. author-input answers, conflicts, the ledger path)—a draft with open items is useful, but it is not submission-ready, and adduce says so.
adduce audit-generated <artifact>checks a generated artifact against its ledger before submission: unsupported claims, low-confidence yeses, execution wording without an actualreproducerun, unresolved placeholders, and drift since the ledger was produced.- Checklist and appendix drafts do not imply execution-based verification;
adduce reproducewrites a separate dynamic report. Nothing is invented from context; conflicts are surfaced rather than silently resolved; secrets are never echoed; source is never edited without an explicit--writeafter a shown diff.
Optional LLM layer
Checks, scores, and checklist answers remain deterministic and offline. With a configured provider (ADDUCE_LLM_PROVIDER=openai|anthropic|ollama, bring your own key or a local model), adduce checklist --llm can draft optional free-text justification from finding summaries. Provider prose is labelled as a draft and requires author review; it never determines the answer recorded in the evidence ledger. Without a provider, everything works identically. adduce ships no key and never calls a paid API on your behalf.
Honest limits
- Signals, never certification. adduce reports what it detected and what it could not; it never says "your code is reproducible", and it never assesses execution-based badges (Results Reproduced/Replicated).
- Static resolution has a ceiling. Alias plus one-hop wrapper resolution covers the common shapes of real ML code; Python's dynamism is unresolvable and reported as confidence, not verdicts, with
adduce reproduceas the escape hatch. - The probabilistic rules are diagnostic. LaTeX numeric extraction, result reconciliation, notebook staleness, and ablation matching will sometimes miss or over-flag; they carry confidence and stay off the blocking path by default.
- Remote pinning is a forward guarantee, not recovery of the version historically used.
- CUDA/cuDNN versions are rarely in source. adduce checks whether anything captures them (container, conda env, manifest), not that it can read them from code.
- Not a data-leakage detector. Train/test contamination is undetectable statically and adduce claims nothing about it.
- No hosted backend, ever. The design is deliberately serverless so it stays free.
Development
git clone https://github.com/QHarshil/adduce
cd adduce
python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
pytest
ruff check src tests
Validation against real repositories is a standing quality gate — see corpus/README.md for the protocol and what may honestly be claimed from it. Contributions are welcome, especially false-positive reports: a check that cries wolf is a bug. See CONTRIBUTING.md.
License
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file adduce-0.1.1.tar.gz.
File metadata
- Download URL: adduce-0.1.1.tar.gz
- Upload date:
- Size: 173.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3b8817816cccf7f3b24b98b6d9949f35c6ab2cc1f31c4cfa59c9563ba4b41d4
|
|
| MD5 |
ba477f522f4371f183b2d0b53bd69590
|
|
| BLAKE2b-256 |
86f6d76708ce5d238819435575cc784eb7b12e25a25cb4642e35d11ab1f73122
|
File details
Details for the file adduce-0.1.1-py3-none-any.whl.
File metadata
- Download URL: adduce-0.1.1-py3-none-any.whl
- Upload date:
- Size: 175.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d4699b2ec21aab868a951d9d8a371c8ccb84e85e0ba062c392d1a9a0811120f
|
|
| MD5 |
2a4e4e5c290e46f68a9493690d8c7105
|
|
| BLAKE2b-256 |
be7f44f6154c653a893b4eb06913c3392d4c4d9e429409d6333423d4eb3f40d4
|