What problem does it solve?
This Skill solves the problem of making training experiments comparable and auditable by ensuring every meaningful training run is recorded consistently.
Core Features & Use Cases
- One notebook per experiment: Create a self-contained experiment notebook under ./userland/<project>/experiments/ that can be rerun from a clean kernel.
- Single source-of-truth index: Maintain a project-level experiments.md table at ./userland/<project>/experiments.md with newest results on top.
- Config-change driven experiment creation: Create a new exp_NNN_<slug>.ipynb only when tracked training knobs differ from the previous experiment (or mark status as running/done/failed as appropriate).
Use cases: when you iterate on base_model_id, labeler confidence thresholds, training steps, learning rate, or dataset regeneration parameters, you want an at-a-glance history of what changed and how calibration and accuracy metrics moved.
Quick Start
Tell the assistant to start a new training run and have it create a new experiment notebook and update experiments.md only if the tracked configuration differs from the last run.