Use this for artifact strategy at ECCV, which has no badge-granting artifact track: artifacts live in two phases with opposite rules. Before decisions, code is a sealed, anonymous supplement; after the June decision, it becomes a public release with a ten-week runway before the September conference makes the paper visible to the whole field.
| Artifact | Probe | Failure they report |
|---|---|---|
| Inference code + checkpoint | Run the demo image | Output does not resemble the paper's qualitative figures |
| Training configs | Diff against the paper's Sec. 4 numbers | Config hyperparameters contradict the text |
| Evaluation script | Check the metric implementation | Nonstandard IoU/FID variant silently inflates scores |
| Data tooling | Check preprocessing + splits | Test-set contamination via cropping or dedup choices |
The metric-implementation row is the highest-yield check to run on yourself: vision metrics have venue-standard reference implementations, and a rebuttal cannot repair a nonstandard one discovered in review.
The 2026 calendar gave accepted authors June 17 (decisions) to roughly mid-August (ECVA/Springer open-access copies appear ~4 weeks pre-conference) to ship the release the paper's readers will find:
If the contribution is a dataset or benchmark, plan hosting that outlives the conference cycle: institutional or community storage rather than a personal drive link, versioned splits, a datasheet, and licence terms compatible with the source imagery. A benchmark whose test server or download link dies before the next even-year ECCV is a citation dead end.
# minimal release self-check before announcing
git clone <public-url> fresh && cd fresh
pip install -r requirements.txt # pinned, resolvable
python demo.py --input assets/demo.jpg # CPU-runnable smoke test
python eval.py --split val --ckpt <hash> # reproduces one paper row
[Phase] sealed-supplement / release-runway / post-conference
[Anonymity scrub] <leaks found in configs, paths, metadata, history>
[Reviewer-probe risks] <metric impl / config-text mismatch / demo gap>
[Release plan] <repo, checkpoints, licences, hosting, freeze date>
[Paper-artifact consistency] <camera-ready row -> reproducing command>