| name | run-ablation |
| description | Run an ablation grid and aggregate the results. |
| argument-hint | <grid-config-path> [--smoke] |
You are about to run an ablation grid. Grids are versioned in configs/ablations/ (implementation plan task 4.7).
Steps:
- Read the grid config and identify which knobs are swept and which runs are produced.
- Validate the grid:
python -m rp_detr.cli.validate_config $1
- Run the grid (smoke first if
--smoke is supplied):
python scripts/run_ablation_grid.py --grid $1 ${2:-}
- Aggregate:
python scripts/aggregate_results.py \
--runs experiments/runs \
--grid $1 \
--out reports/ablations/$(basename $1 .yaml).md
- Report: number of runs, total wall time, headline metrics per cell, any failed run.
Do not delete any run directory or registry entry.