Autoresearch Update: From Quick Hit to Validated Methodology — What 700 Experiments Actually Prove
What Changed Since Tuesday
Tuesday's briefing flagged Karpathy's autoresearch as a quick hit with ~100 experiments/night and 18% claimed hit rate but no baselines, no ablations, no defined success criteria. That's no longer true. Three independent sources now provide substantially more detail, and a second team (Shopify) independently replicated the approach overnight.
The Numbers, Validated
Autoresearch ran ~700 autonomous experiments over 2 days on 8×H100, with Claude Opus 4.6 as the driver agent. Of those, ~20 improvements were kept (~2.9% acceptance rate) — including structural fixes like broken attention scaling and missing regularization that Karpathy himself missed. The improvements were additive and transferable: optimizations discovered at depth=12 held at depth=24, cutting Time-to-GPT-2 from 2.02h to 1.80h (11% wallclock improvement).
Shopify CEO Tobi Lütke adapted it overnight and reported a 19% validation improvement, with an agent-tuned smaller model outperforming a manually-configured larger one. Caveat: Shopify's result has no task specification, no model sizes, no dataset details, and no statistical significance testing — it's a CEO's overnight hack, not a controlled experiment.
Architecture Pattern Worth Stealing
| Dimension | Autoresearch | Traditional HPO | Manual Ablation |
|---|---|---|---|
| Search space | Architecture + hyperparams + code changes | Hyperparameters only | Researcher hypotheses |
| Throughput | ~350 experiments/day/GPU | Varies with parallelism | ~5-15/day |
| Discovery type | Structural bugs + novel combos | Optimal config in fixed arch | Hypothesis-driven |
| Scale transfer | Demonstrated (12→24 depth) | Requires re-search per scale | Manual verification |
| Failure mode | Proxy metric overfitting (5-min runs) | Space misspecification | Human bias |
The 630-line single-file design is deliberate: the entire training pipeline fits in one LLM context window, enabling holistic reasoning over the full codebase in a single forward pass. This is an architectural constraint you should replicate — flatten your training code to be agent-readable.
The Open Questions
The hard question isn't whether agents can optimize training recipes — it's whether you can trust their improvements transfer to production scale without manual validation of every change.
The 5-minute training cycles create strong selection pressure toward improvements that manifest early — these may not survive to convergence at full scale. The 2.9% acceptance rate looks low, but we don't know if random search at equivalent compute would do better or worse. And the interaction effects between the 20 kept improvements are completely uncharacterized.
Critical agent reliability finding: Opus 4.6 ran 12+ hours sustained (118 experiments) while GPT-5.4 xhigh failed entirely on open-ended loop instructions. Karpathy states OpenAI Codex can't run autoresearch in its current setup. Your choice of agent harness constrains your research more than your choice of model.
What to do
Clone autoresearch and run it against your smallest training loop for 48 hours this week
Refactor one critical training script into a single-file, context-window-sized format (<800 lines) with an agent-readable program.md
Stress-test your experiment tracking (MLflow/W&B) at 350+ experiments/day write throughput
Manually validate every agent-discovered optimization at full training scale before promotion — treat outputs as hypotheses, not conclusions