CoRL Experiments
At CoRL the object under evaluation is a learned policy, which makes the
evidence problem statistical twice over: training is stochastic (seeds, data
order, initialization) and execution is stochastic (initial states, physics,
sensor noise). An experimental design that controls only one of the two is the
most common weakness this reviewer pool writes up.
Match the evidence to the claim, not the venue
| Claim in the paper |
Minimum credible evidence shape |
| "Method X learns task family T" |
Multiple training seeds; per-task success over many scripted-reset episodes |
| "X outperforms baseline Y" |
Same data, same evaluation protocol, same tuning effort for both; dispersion reported |
| "X transfers sim-to-real" |
The same checkpoint evaluated in sim and on hardware; the gap reported as a number |
| "X generalizes to novel objects/scenes/instructions" |
Held-out splits defined before training; per-split breakdown, not a pooled average |
| "X scales with data" |
≥3 dataset sizes on the same axis; no two-point "trends" |
| "X runs in real time on the robot" |
Latency/frequency measured on the deployed compute, stated with hardware |
The routing consequence: if none of your claims require the last four rows, ask
whether the paper is CoRL-shaped at all (corl-topic-selection).
The two-layer randomness protocol
- Training layer: train ≥3 seeds (5 where budget allows) per method per
configuration. Report the spread across seeds — a method whose best seed wins
but whose median loses has not demonstrated superiority.
- Evaluation layer: for each trained policy, evaluate over a fixed, scripted
set of initial conditions — in simulation, dozens to hundreds of episodes per
task is cheap and expected; on hardware, 10–25 trials per task per policy is
typical practice, with the success criterion written down verbatim.
- Never mix the layers in reporting: "80% success" must decompose into "mean over
k seeds of per-seed success over n episodes," and the paper states k and n in
the table caption, not only in the appendix.
# Evaluation bookkeeping: per-seed success with a binomial interval,
# then dispersion across seeds — the two layers stay separate.
import numpy as np
from scipy import stats
def summarize(results): # results[seed] = list of 0/1 episode outcomes
per_seed = {}
for seed, eps in results.items():
n, k = len(eps), int(np.sum(eps))
lo, hi = stats.beta.ppf([0.025, 0.975], k + 1, n - k + 1) # Jeffreys-ish CI
per_seed[seed] = dict(rate=k / n, n=n, ci=(lo, hi))
rates = [v["rate"] for v in per_seed.values()]
return per_seed, dict(mean=np.mean(rates), sd=np.std(rates), seeds=len(rates))
Small-n hardware caveat: with 15 trials, a 73% vs 60% difference is not
resolvable — either add trials, aggregate over tasks with a paired design, or
soften the comparative language.
Sim, real, and the space between
- Declare each experiment's regime in the table itself (sim / real / sim-trained
real-evaluated). Reviewers at this venue actively hunt for regime laundering —
headline numbers from sim standing in for a "real-world" abstract claim.
- If the paper's story includes transfer, the sim-to-real delta is a result,
not an embarrassment: evaluate the identical checkpoint in both regimes on
matched task instances and print the gap. A measured 20-point drop with
analysis outranks an unmeasured claim of robustness.
- Describe the reality of hardware evaluation: reset procedure (human or
scripted), object pose randomization method, stopping rule, and any trials
excluded — exclusions disclosed with cause, never silently.
- Simulation-only papers survive at CoRL when the sim is a recognized benchmark
and the claims stay inside it; say why the simulator is adequate for the claim
(contact fidelity, sensor models, prior validated transfer).
Baseline fairness across method families
Robot-learning baselines span imitation (BC, diffusion policies), offline/online
RL, and pretrained VLA models — families with wildly different data appetites:
- Give every family its natural input: comparing your method-with-demos against
an RL baseline denied demos measures data access, not algorithms. Either equal
data or an explicit data-budget axis.
- Tune baselines with the same effort budget you spent on your method and say so
("each method: 24 GPU-hours of search over its authors' recommended grid").
- Pin baseline provenance: re-implementation vs official code vs released
checkpoint — each is a different evidentiary object; name which one each row is.
- Include one strong recent robot-learning baseline (not only classical control),
because this reviewer pool benchmarks your table against the current PMLR
volume, and one simple sanity baseline (scripted policy, nearest-neighbor over
demos) to calibrate task difficulty.
Generalization splits that survive scrutiny
- Freeze train/held-out splits (objects, scenes, language instructions, layouts)
before training and publish the split lists in the supplementary.
- Report per-axis breakdowns: "novel object, seen scene" and "seen object, novel
scene" are different claims; a pooled number hides which one failed.
- For language-conditioned policies, separate paraphrase-level from task-level
novelty — reviewers with VLA experience will ask.
Ablations and the Limitations coupling
- Ablate the components you advertise: each named contribution in the intro gets
a row showing the system without it.
- Feed the failures you observe into the mandatory Limitations section
(
corl-writing-style); a Limitations section that matches the failure cases in
your video reads as credible, and one that contradicts them reads as concealment.
Design-review checklist
[ ] Every abstract-level claim mapped to a table/figure with regime declared
[ ] k seeds x n episodes stated per cell; two randomness layers separated
[ ] Hardware protocol written: resets, success criterion, stopping rule, exclusions
[ ] Same-checkpoint sim/real pairing for any transfer claim; gap printed
[ ] Baselines: fair data, disclosed tuning, pinned provenance, one recent + one simple
[ ] Splits frozen pre-training; per-axis generalization breakdown
[ ] Compute + data volumes reported (GPU-hours, demo counts, env steps)
Evidence norms here are community culture rather than a posted rulebook — they
move each year with the field. Calibrate against the newest PMLR volume
(v305 = CoRL 2025) and the current reviewer instructions at corl.org.
1---2name: corl-experiments3description: Use when designing or auditing experiments for a CoRL robot-learning paper — seeds and evaluation-episode counts, task-suite breadth, real-robot versus simulation evidence, sim-to-real gap measurement, baseline fairness across BC/RL/VLA families, generalization splits, and statistics for success-rate claims.4---56# CoRL Experiments78At CoRL the object under evaluation is a *learned policy*, which makes the9evidence problem statistical twice over: training is stochastic (seeds, data10order, initialization) and execution is stochastic (initial states, physics,11sensor noise). An experimental design that controls only one of the two is the12most common weakness this reviewer pool writes up.1314## Match the evidence to the claim, not the venue1516| Claim in the paper | Minimum credible evidence shape |17|---|---|18| "Method X learns task family T" | Multiple training seeds; per-task success over many scripted-reset episodes |19| "X outperforms baseline Y" | Same data, same evaluation protocol, same tuning effort for both; dispersion reported |20| "X transfers sim-to-real" | The *same checkpoint* evaluated in sim and on hardware; the gap reported as a number |21| "X generalizes to novel objects/scenes/instructions" | Held-out splits defined before training; per-split breakdown, not a pooled average |22| "X scales with data" | ≥3 dataset sizes on the same axis; no two-point "trends" |23| "X runs in real time on the robot" | Latency/frequency measured on the deployed compute, stated with hardware |2425The routing consequence: if none of your claims require the last four rows, ask26whether the paper is CoRL-shaped at all (`corl-topic-selection`).2728## The two-layer randomness protocol2930- **Training layer**: train ≥3 seeds (5 where budget allows) per method per31 configuration. Report the spread across seeds — a method whose best seed wins32 but whose median loses has not demonstrated superiority.33- **Evaluation layer**: for each trained policy, evaluate over a fixed, scripted34 set of initial conditions — in simulation, dozens to hundreds of episodes per35 task is cheap and expected; on hardware, 10–25 trials per task per policy is36 typical practice, with the success criterion written down verbatim.37- Never mix the layers in reporting: "80% success" must decompose into "mean over38 k seeds of per-seed success over n episodes," and the paper states k and n in39 the table caption, not only in the appendix.4041```python42# Evaluation bookkeeping: per-seed success with a binomial interval,43# then dispersion across seeds — the two layers stay separate.44import numpy as np45from scipy import stats4647def summarize(results): # results[seed] = list of 0/1 episode outcomes48 per_seed = {}49 for seed, eps in results.items():50 n, k = len(eps), int(np.sum(eps))51 lo, hi = stats.beta.ppf([0.025, 0.975], k + 1, n - k + 1) # Jeffreys-ish CI52 per_seed[seed] = dict(rate=k / n, n=n, ci=(lo, hi))53 rates = [v["rate"] for v in per_seed.values()]54 return per_seed, dict(mean=np.mean(rates), sd=np.std(rates), seeds=len(rates))55```5657Small-n hardware caveat: with 15 trials, a 73% vs 60% difference is not58resolvable — either add trials, aggregate over tasks with a paired design, or59soften the comparative language.6061## Sim, real, and the space between6263- Declare each experiment's regime in the table itself (sim / real / sim-trained64 real-evaluated). Reviewers at this venue actively hunt for regime laundering —65 headline numbers from sim standing in for a "real-world" abstract claim.66- If the paper's story includes transfer, the **sim-to-real delta is a result**,67 not an embarrassment: evaluate the identical checkpoint in both regimes on68 matched task instances and print the gap. A measured 20-point drop with69 analysis outranks an unmeasured claim of robustness.70- Describe the reality of hardware evaluation: reset procedure (human or71 scripted), object pose randomization method, stopping rule, and any trials72 excluded — exclusions disclosed with cause, never silently.73- Simulation-only papers survive at CoRL when the sim is a recognized benchmark74 and the claims stay inside it; say why the simulator is adequate for the claim75 (contact fidelity, sensor models, prior validated transfer).7677## Baseline fairness across method families7879Robot-learning baselines span imitation (BC, diffusion policies), offline/online80RL, and pretrained VLA models — families with wildly different data appetites:8182- Give every family its natural input: comparing your method-with-demos against83 an RL baseline denied demos measures data access, not algorithms. Either equal84 data or an explicit data-budget axis.85- Tune baselines with the same effort budget you spent on your method and say so86 ("each method: 24 GPU-hours of search over its authors' recommended grid").87- Pin baseline provenance: re-implementation vs official code vs released88 checkpoint — each is a different evidentiary object; name which one each row is.89- Include one strong recent robot-learning baseline (not only classical control),90 because this reviewer pool benchmarks your table against the current PMLR91 volume, and one simple sanity baseline (scripted policy, nearest-neighbor over92 demos) to calibrate task difficulty.9394## Generalization splits that survive scrutiny9596- Freeze train/held-out splits (objects, scenes, language instructions, layouts)97 before training and publish the split lists in the supplementary.98- Report per-axis breakdowns: "novel object, seen scene" and "seen object, novel99 scene" are different claims; a pooled number hides which one failed.100- For language-conditioned policies, separate paraphrase-level from task-level101 novelty — reviewers with VLA experience will ask.102103## Ablations and the Limitations coupling104105- Ablate the components you advertise: each named contribution in the intro gets106 a row showing the system without it.107- Feed the failures you observe into the mandatory Limitations section108 (`corl-writing-style`); a Limitations section that matches the failure cases in109 your video reads as credible, and one that contradicts them reads as concealment.110111## Design-review checklist112113```text114[ ] Every abstract-level claim mapped to a table/figure with regime declared115[ ] k seeds x n episodes stated per cell; two randomness layers separated116[ ] Hardware protocol written: resets, success criterion, stopping rule, exclusions117[ ] Same-checkpoint sim/real pairing for any transfer claim; gap printed118[ ] Baselines: fair data, disclosed tuning, pinned provenance, one recent + one simple119[ ] Splits frozen pre-training; per-axis generalization breakdown120[ ] Compute + data volumes reported (GPU-hours, demo counts, env steps)121```122123Evidence norms here are community culture rather than a posted rulebook — they124move each year with the field. Calibrate against the newest PMLR volume125(v305 = CoRL 2025) and the current reviewer instructions at corl.org.