CoRL Artifact Evaluation
CoRL has no separate artifact-evaluation track or badge system in the 2026
materials verified for this pack (a formal AE track remains 待核实 each cycle).
Artifacts are instead judged twice, informally: by reviewers deciding whether to
trust your tables, and by the community deciding — for years afterward — whether
your method becomes a baseline. Package for both audiences from the start.
Artifact inventory for a robot-learning paper
| Artifact |
Review-time form (anonymous) |
Public form (post-acceptance) |
| Training code + configs |
Scrubbed ZIP in the supplementary |
GitHub repo, tagged release matching the paper |
| Evaluation harness |
Same ZIP; scripts + fixed init-state lists |
Same repo; the part reused most by others |
| Demonstration data |
Small sample in ZIP; full set described |
Archive with DOI + datasheet, license stated |
| Policy checkpoints |
Optional if small; else described |
Hosted weights keyed to each results table |
| Sim environments / tasks |
Env definitions + versions in ZIP |
Repo or upstream PR to the benchmark suite |
| Hardware recipe |
Appendix spec (rig, control interface) |
Project page: BOM-level detail, photos |
| Overview video |
Supplementary upload (≤ 250 MB, 2026 cap) |
Project page / video host — PMLR takes no video |
The reuse test
Design the release around one question: can a stranger reproduce your evaluation
without emailing you? Concretely, a competent robot-learning grad student
should be able to (1) install, (2) run evaluation with a released checkpoint,
and (3) regenerate one paper table, in an afternoon, in simulation. Training
reproduction and hardware reproduction are aspirational tiers above this floor —
label the tiers honestly rather than implying all three.
Release tiers — declare one per artifact in the README:
T1 evaluate: released checkpoint + eval script reproduce Table N in sim
T2 retrain: configs + data (or data recipe) reproduce the training run
within the reported seed spread
T3 re-embody: rig documentation sufficient to attempt hardware replication
Review-time packaging (anonymous)
- One ZIP, one top-level README, a table mapping
paper table → command.
- Determinize what you can: fixed evaluation seeds, fixed init-state lists,
pinned dependency versions (
corl-reproducibility owns the manifest format).
- Anonymize mechanically, then by eyeball: repo history stripped, paths cleaned,
no W&B/HF org names, no grant numbers in license headers, and remember the
URL rule — an anonymized page on a lab-named domain still leaks.
- Keep it runnable without a robot: reviewers do not have your hardware, so the
artifact's demonstrable slice is sim evaluation plus logs/video of the
hardware runs. Ship episode-level logs (CSV) for every hardware table.
Post-acceptance: durable release
- Timing. The 2026 camera-ready deadline (October 12) is when links get
frozen into the PMLR record — stand up the public repo, dataset archive, and
project page before finalizing the PDF so the printed URLs are real.
- Durability ladder. Lab web servers die with funding cycles: put datasets
and static artifacts in DOI-granting archives, code in a tagged repository
release, and treat the project page as a pointer hub rather than the sole home.
- Checkpoint provenance. Key each released checkpoint to its table and seed
("
ckpt_t3_s2 = Table 3, seed 2"); publishing only a best-seed checkpoint
while the paper reports seed means invites a mismatch report you'll answer
publicly — CoRL reviews of accepted papers are public, and so is the follow-up
scrutiny.
- License deliberately. Code (permissive vs copyleft), data (usage terms,
consent constraints for human video), and weights (increasingly their own
license class) are three separate decisions; "no license" means "nobody may
legally build on this."
Benchmarks and datasets as first-class artifacts
If the artifact is the contribution (a task suite, a large demo corpus), the
bar rises from reuse to stewardship:
- Version the benchmark explicitly (v1.0 at camera-ready) and changelog any
post-publication fix; silent edits corrupt every downstream comparison.
- Publish the evaluation protocol as executable code, not prose — episode
counts, init distributions, success criteria — so future papers cite numbers
produced by your harness rather than reimplementations.
- Provide a datasheet: collection method, operator demographics if teleop,
filtering, known biases, consent/licensing status of any human footage.
Failure patterns that surface after publication
Because CoRL reviews of accepted papers are public and the community reuses
artifacts aggressively, release defects surface fast and visibly:
- The vanished environment: the eval harness imports a benchmark fork whose
branch was deleted; vendor the environment code or pin an archived copy.
- The config drift: the repo's default config differs from the paper's
runs; ship the exact configs used, named per table, and make defaults match.
- The GPU-only afternoon: an evaluation that silently requires 8×A100 to
run at all; document minimum hardware and offer a reduced smoke-test target.
- The consent surprise: teleop or human-video data released without the
consent scope to permit it; resolve data-rights questions before the paper
promises release, not after.
Release checklist
[ ] Tier (T1/T2/T3) declared per artifact; T1 actually tested by a
teammate on a clean machine
[ ] README: install steps, table→command map, expected tolerances
[ ] Checkpoints keyed to tables and seeds; selection rule stated
[ ] Dataset archived with DOI, datasheet, and license
[ ] Hardware logs + uncut eval video published for hardware tables
[ ] Licenses chosen for code, data, and weights separately
[ ] All URLs live before camera-ready freeze (2026: Oct 12 AoE)
[ ] Anonymous variant retired only after decisions are out
Re-check the live cycle for any new artifact policy, badge program, or required
availability statement at https://www.corl.org/contributions/instruction-for-authors
— venue policy here is young and moves quickly, like the field itself.
1---2name: corl-artifact-evaluation3description: Use when packaging the artifacts of a CoRL paper — code, training configs, demonstration datasets, policy checkpoints, simulation environments, and benchmark definitions — as anonymous review-time evidence and as durable public releases after acceptance, in a venue with no formal artifact-badging track.4---56# CoRL Artifact Evaluation78CoRL has no separate artifact-evaluation track or badge system in the 20269materials verified for this pack (a formal AE track remains 待核实 each cycle).10Artifacts are instead judged twice, informally: by reviewers deciding whether to11trust your tables, and by the community deciding — for years afterward — whether12your method becomes a baseline. Package for both audiences from the start.1314## Artifact inventory for a robot-learning paper1516| Artifact | Review-time form (anonymous) | Public form (post-acceptance) |17|---|---|---|18| Training code + configs | Scrubbed ZIP in the supplementary | GitHub repo, tagged release matching the paper |19| Evaluation harness | Same ZIP; scripts + fixed init-state lists | Same repo; the part reused most by others |20| Demonstration data | Small sample in ZIP; full set described | Archive with DOI + datasheet, license stated |21| Policy checkpoints | Optional if small; else described | Hosted weights keyed to each results table |22| Sim environments / tasks | Env definitions + versions in ZIP | Repo or upstream PR to the benchmark suite |23| Hardware recipe | Appendix spec (rig, control interface) | Project page: BOM-level detail, photos |24| Overview video | Supplementary upload (≤ 250 MB, 2026 cap) | Project page / video host — PMLR takes no video |2526## The reuse test2728Design the release around one question: *can a stranger reproduce your evaluation29without emailing you?* Concretely, a competent robot-learning grad student30should be able to (1) install, (2) run evaluation with a released checkpoint,31and (3) regenerate one paper table, in an afternoon, in simulation. Training32reproduction and hardware reproduction are aspirational tiers above this floor —33label the tiers honestly rather than implying all three.3435```text36Release tiers — declare one per artifact in the README:37 T1 evaluate: released checkpoint + eval script reproduce Table N in sim38 T2 retrain: configs + data (or data recipe) reproduce the training run39 within the reported seed spread40 T3 re-embody: rig documentation sufficient to attempt hardware replication41```4243## Review-time packaging (anonymous)4445- One ZIP, one top-level README, a table mapping `paper table → command`.46- Determinize what you can: fixed evaluation seeds, fixed init-state lists,47 pinned dependency versions (`corl-reproducibility` owns the manifest format).48- Anonymize mechanically, then by eyeball: repo history stripped, paths cleaned,49 no W&B/HF org names, no grant numbers in license headers, and remember the50 URL rule — an anonymized page on a lab-named domain still leaks.51- Keep it runnable without a robot: reviewers do not have your hardware, so the52 artifact's demonstrable slice is sim evaluation plus logs/video of the53 hardware runs. Ship episode-level logs (CSV) for every hardware table.5455## Post-acceptance: durable release5657- **Timing.** The 2026 camera-ready deadline (October 12) is when links get58 frozen into the PMLR record — stand up the public repo, dataset archive, and59 project page *before* finalizing the PDF so the printed URLs are real.60- **Durability ladder.** Lab web servers die with funding cycles: put datasets61 and static artifacts in DOI-granting archives, code in a tagged repository62 release, and treat the project page as a pointer hub rather than the sole home.63- **Checkpoint provenance.** Key each released checkpoint to its table and seed64 ("`ckpt_t3_s2` = Table 3, seed 2"); publishing only a best-seed checkpoint65 while the paper reports seed means invites a mismatch report you'll answer66 publicly — CoRL reviews of accepted papers are public, and so is the follow-up67 scrutiny.68- **License deliberately.** Code (permissive vs copyleft), data (usage terms,69 consent constraints for human video), and weights (increasingly their own70 license class) are three separate decisions; "no license" means "nobody may71 legally build on this."7273## Benchmarks and datasets as first-class artifacts7475If the artifact *is* the contribution (a task suite, a large demo corpus), the76bar rises from reuse to stewardship:7778- Version the benchmark explicitly (v1.0 at camera-ready) and changelog any79 post-publication fix; silent edits corrupt every downstream comparison.80- Publish the evaluation protocol as executable code, not prose — episode81 counts, init distributions, success criteria — so future papers cite numbers82 produced by *your* harness rather than reimplementations.83- Provide a datasheet: collection method, operator demographics if teleop,84 filtering, known biases, consent/licensing status of any human footage.8586## Failure patterns that surface after publication8788Because CoRL reviews of accepted papers are public and the community reuses89artifacts aggressively, release defects surface fast and visibly:9091- **The vanished environment**: the eval harness imports a benchmark fork whose92 branch was deleted; vendor the environment code or pin an archived copy.93- **The config drift**: the repo's default config differs from the paper's94 runs; ship the exact configs used, named per table, and make defaults match.95- **The GPU-only afternoon**: an evaluation that silently requires 8×A100 to96 run at all; document minimum hardware and offer a reduced smoke-test target.97- **The consent surprise**: teleop or human-video data released without the98 consent scope to permit it; resolve data-rights questions before the paper99 promises release, not after.100101## Release checklist102103```text104[ ] Tier (T1/T2/T3) declared per artifact; T1 actually tested by a105 teammate on a clean machine106[ ] README: install steps, table→command map, expected tolerances107[ ] Checkpoints keyed to tables and seeds; selection rule stated108[ ] Dataset archived with DOI, datasheet, and license109[ ] Hardware logs + uncut eval video published for hardware tables110[ ] Licenses chosen for code, data, and weights separately111[ ] All URLs live before camera-ready freeze (2026: Oct 12 AoE)112[ ] Anonymous variant retired only after decisions are out113```114115Re-check the live cycle for any new artifact policy, badge program, or required116availability statement at https://www.corl.org/contributions/instruction-for-authors117— venue policy here is young and moves quickly, like the field itself.