COLT Reproducibility
At COLT, reproducibility means a competent reader can re-derive every claim from the
PDF alone. There is no reproducibility checklist form in the COLT 2026 CFP (checked
2026-07-08) — the venue enforces the property the hard way, through referees who
attempt the re-derivation during review. This skill is the pre-submission audit that
makes that attempt succeed.
The re-derivability standard
A theorem is reproducible when all of the following hold:
- Its statement is formally complete: every symbol quantified, every assumption named
in the statement itself or cited by an explicit assumption label, the probability
space and adversary model unambiguous.
- Its proof exists in full inside the submitted PDF — COLT's unlimited appendix
removes every excuse for "omitted for lack of space."
- Each proof step is locally checkable: an expert reading line k needs only lines
1..k-1, cited external results, and standard background — never your unpublished
intuition.
- Constants and parameter regimes survive the chain: if Theorem 1 needs
n ≥ C·d·log(1/δ), the reader can trace what C is or where it was declared absolute.
Audit table: where re-derivation fails
| Failure mode |
Typical symptom in the PDF |
Repair |
| Hypothesis smuggling |
Proof uses independence never assumed |
Add the assumption to the statement, or redo the step |
| External-result misuse |
"By [X], ..." where [X] needs bounded support you don't have |
Check [X]'s hypotheses; find the right variant or prove a lemma |
| Constant drift |
C doubles silently between two displays |
Number constants (C_1, C_2, ...) and track them in a ledger |
| Case leakage |
"The case d=1 is analogous" when it is not |
Write the case or prove the reduction |
| Notation overload |
Same symbol for a filtration and a function class |
One notation table, enforced globally |
| Silent regime switch |
Bound proved for T large, quoted for all T |
State the threshold explicitly in the theorem |
Assumption bookkeeping pattern
Give assumptions their own numbered environment and cite them by label everywhere:
\newtheorem{assumption}{Assumption}
\begin{assumption}[Bounded losses]\label{ass:bounded}
For all $t$, the loss $\ell_t$ maps to $[0,1]$.
\end{assumption}
\begin{theorem}\label{thm:regret}
Under Assumptions~\ref{ass:bounded} and~\ref{ass:oblivious}, the algorithm's
regret satisfies $R_T \le 4\sqrt{T \log K}$ for all $T \ge 1$.
\end{theorem}
The payoff is auditable dependency: a reviewer can grep which theorems rely on
obliviousness, and your rebuttal can answer "is Assumption 2 needed for Theorem 3?"
with a pointer instead of an essay.
Numerical illustrations, when present
Some COLT papers plot a simulated regret curve or a phase transition to illustrate a
bound. The theory community's floor for those figures:
- Fixed seeds, stated replication counts, and error bars whose meaning the caption
defines; a noisy single run "consistent with the theory" persuades no one here.
- The simulated regime must be the theorem's regime — matching horizon, dimension, and
noise assumptions — or the mismatch must be acknowledged as exploratory.
- The generating script should be one dependency-light file, releasable after
acceptance; during review, describe the procedure precisely in the appendix since no
upload channel exists.
- Never let an illustration silently extend the claim ("the bound appears to hold for
heavy tails too") without labeling it as conjecture.
Vignette: the spine of a lower-bound paper
Consider a submission whose main result is a $\Omega(\sqrt{TK})$ lower bound via a
new instance family. Its re-derivability spine, in the order a referee will attack it:
- the instance family's construction, with every distribution parameter explicit and
the randomization protocol (oblivious vs. adaptive) named;
- the information-theoretic step (say, a KL-divergence calculation) with the exact
divergence bound displayed, not cited as "standard";
- the reduction from learner performance to the divergence quantity, where hypothesis
smuggling most often hides (does the argument secretly assume deterministic
learners? say so or generalize);
- the final optimization over instance parameters, with the maximizing choice written
out — "choosing ε appropriately" is where constants go to die.
A referee who can walk this spine without leaving the PDF marks correctness resolved;
each externalized step converts into a review question, and three review questions
into a reject.
Pre-submission re-derivation drill
- Print the numbered-statement list (all definitions, assumptions, lemmas, theorems).
- For each, a non-author coauthor answers: can I state precisely what this claims,
including quantifiers, without reading the proof? Rewrite until yes.
- Verify proofs in dependency order, marking each line verified/unverified; the
colt-artifact-evaluation skill's ledger format works here.
- Re-check every external citation against the cited source's actual hypotheses —
allocate real time; this is where careful papers die.
- Reconcile body sketches against appendix proofs: a sketch that describes an older
proof strategy than the appendix executes reads as a gap to a referee.
Cycle-volatility warnings
- If a future COLT cycle adds any checklist, code policy, or supplementary channel,
the current CFP announces it; the 2026 cycle had none (待核实 in later cycles).
- The 12-page body and single-PDF rules that shape where proofs live are the 2026
formulation; re-read the live CFP before restructuring a paper around them.
- Formatting of assumptions and environments is a house-style choice, not a CFP rule;
the CFP-level constraints remain the 12-page body and the single PDF.
Output format
[Re-derivability verdict] re-derivable / gaps found
[Statement completeness] <theorems needing quantifier or assumption repair>
[Constant ledger] tracked / drift at <displays>
[External-results audit] <citations with unchecked hypotheses>
[Illustration floor] seeds+replications stated / absent / no numerics in paper
Source: brycewang-stanford/Awesome-Journal-Skills → COLT-Skills/skills/colt-reproducibility/SKILL.md
1---2name: colt-reproducibility3description: Use when strengthening the reproducibility of a COLT (Conference on Learning Theory) paper, where reproducing means re-deriving — complete proofs, explicit assumptions, tracked constants, correctly invoked external results, self-contained notation — plus seeds and scripts for any numerical illustration the paper carries.4---567# COLT Reproducibility89At COLT, reproducibility means a competent reader can *re-derive* every claim from the10PDF alone. There is no reproducibility checklist form in the COLT 2026 CFP (checked112026-07-08) — the venue enforces the property the hard way, through referees who12attempt the re-derivation during review. This skill is the pre-submission audit that13makes that attempt succeed.1415## The re-derivability standard1617A theorem is reproducible when all of the following hold:1819- Its statement is formally complete: every symbol quantified, every assumption named20 in the statement itself or cited by an explicit assumption label, the probability21 space and adversary model unambiguous.22- Its proof exists in full inside the submitted PDF — COLT's unlimited appendix23 removes every excuse for "omitted for lack of space."24- Each proof step is locally checkable: an expert reading line k needs only lines25 1..k-1, cited external results, and standard background — never your unpublished26 intuition.27- Constants and parameter regimes survive the chain: if Theorem 1 needs28 n ≥ C·d·log(1/δ), the reader can trace what C is or where it was declared absolute.2930## Audit table: where re-derivation fails3132| Failure mode | Typical symptom in the PDF | Repair |33|---|---|---|34| Hypothesis smuggling | Proof uses independence never assumed | Add the assumption to the statement, or redo the step |35| External-result misuse | "By [X], ..." where [X] needs bounded support you don't have | Check [X]'s hypotheses; find the right variant or prove a lemma |36| Constant drift | C doubles silently between two displays | Number constants (C_1, C_2, ...) and track them in a ledger |37| Case leakage | "The case d=1 is analogous" when it is not | Write the case or prove the reduction |38| Notation overload | Same symbol for a filtration and a function class | One notation table, enforced globally |39| Silent regime switch | Bound proved for T large, quoted for all T | State the threshold explicitly in the theorem |4041## Assumption bookkeeping pattern4243Give assumptions their own numbered environment and cite them by label everywhere:4445```latex46\newtheorem{assumption}{Assumption}4748\begin{assumption}[Bounded losses]\label{ass:bounded}49For all $t$, the loss $\ell_t$ maps to $[0,1]$.50\end{assumption}5152\begin{theorem}\label{thm:regret}53Under Assumptions~\ref{ass:bounded} and~\ref{ass:oblivious}, the algorithm's54regret satisfies $R_T \le 4\sqrt{T \log K}$ for all $T \ge 1$.55\end{theorem}56```5758The payoff is auditable dependency: a reviewer can grep which theorems rely on59obliviousness, and your rebuttal can answer "is Assumption 2 needed for Theorem 3?"60with a pointer instead of an essay.6162## Numerical illustrations, when present6364Some COLT papers plot a simulated regret curve or a phase transition to illustrate a65bound. The theory community's floor for those figures:6667- Fixed seeds, stated replication counts, and error bars whose meaning the caption68 defines; a noisy single run "consistent with the theory" persuades no one here.69- The simulated regime must be the theorem's regime — matching horizon, dimension, and70 noise assumptions — or the mismatch must be acknowledged as exploratory.71- The generating script should be one dependency-light file, releasable after72 acceptance; during review, describe the procedure precisely in the appendix since no73 upload channel exists.74- Never let an illustration silently extend the claim ("the bound appears to hold for75 heavy tails too") without labeling it as conjecture.7677## Vignette: the spine of a lower-bound paper7879Consider a submission whose main result is a $\Omega(\sqrt{TK})$ lower bound via a80new instance family. Its re-derivability spine, in the order a referee will attack it:8182- the instance family's construction, with every distribution parameter explicit and83 the randomization protocol (oblivious vs. adaptive) named;84- the information-theoretic step (say, a KL-divergence calculation) with the exact85 divergence bound displayed, not cited as "standard";86- the reduction from learner performance to the divergence quantity, where hypothesis87 smuggling most often hides (does the argument secretly assume deterministic88 learners? say so or generalize);89- the final optimization over instance parameters, with the maximizing choice written90 out — "choosing ε appropriately" is where constants go to die.9192A referee who can walk this spine without leaving the PDF marks correctness resolved;93each externalized step converts into a review question, and three review questions94into a reject.9596## Pre-submission re-derivation drill97981. Print the numbered-statement list (all definitions, assumptions, lemmas, theorems).992. For each, a non-author coauthor answers: can I state precisely what this claims,100 including quantifiers, without reading the proof? Rewrite until yes.1013. Verify proofs in dependency order, marking each line verified/unverified; the102 `colt-artifact-evaluation` skill's ledger format works here.1034. Re-check every external citation against the cited source's actual hypotheses —104 allocate real time; this is where careful papers die.1055. Reconcile body sketches against appendix proofs: a sketch that describes an older106 proof strategy than the appendix executes reads as a gap to a referee.107108## Cycle-volatility warnings109110- If a future COLT cycle adds any checklist, code policy, or supplementary channel,111 the current CFP announces it; the 2026 cycle had none (待核实 in later cycles).112- The 12-page body and single-PDF rules that shape where proofs live are the 2026113 formulation; re-read the live CFP before restructuring a paper around them.114- Formatting of assumptions and environments is a house-style choice, not a CFP rule;115 the CFP-level constraints remain the 12-page body and the single PDF.116117## Output format118119```text120[Re-derivability verdict] re-derivable / gaps found121[Statement completeness] <theorems needing quantifier or assumption repair>122[Constant ledger] tracked / drift at <displays>123[External-results audit] <citations with unchecked hypotheses>124[Illustration floor] seeds+replications stated / absent / no numerics in paper125```126127---128129**Source:** [`brycewang-stanford/Awesome-Journal-Skills`](https://github.com/brycewang-stanford/Awesome-Journal-Skills) → `COLT-Skills/skills/colt-reproducibility/SKILL.md`