Experiment Execution
Use this when a task moves from paper planning into executable experiments, metrics, or reproducibility checks.
Workflow
- Define hypothesis, baseline, treatment, dataset, metric, resource budget, and success criteria.
- Record exact run configuration before execution: code revision, command, environment, seeds, data split, and output directory.
- Prefer dry runs or small smoke tests before full runs.
- Monitor logs and intermediate artifacts. Starting a run is not completion.
- Interpret results with uncertainty:
- compare against baseline;
- check variance or confidence intervals;
- inspect failure cases;
- avoid overclaiming from a single run.
- Package reproducibility evidence: command, config, artifact path, metric table, and known caveats.
Failure Handling
- If a run fails, preserve the error, config, and last valid artifact.
- If results are weak, report whether the issue is implementation, data, metric mismatch, or hypothesis weakness.
- If a method requires expensive compute, state the smallest meaningful validation first.
Hand Off
- Use
statistical-analysisorbayesian-ppl-diagnosticsfor model-level statistical reasoning. - Use
scientific-visualizationfor paper-ready result figures. - Use
paper-workflow-orchestratorwhen results change the manuscript claim.