code backup: README.md
Browse files
README.md
CHANGED
|
@@ -757,6 +757,32 @@ back up its results (additive, never destructive):
|
|
| 757 |
`python backup.py --repo-id <you>/<repo> --target <step's target>` -- targets are
|
| 758 |
listed in backup.py's own docstring; `--target all` covers everything.
|
| 759 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 760 |
Rather than a full factorial sweep across every axis, configuration is narrowed in
|
| 761 |
stages — each stage's winner freezes the next stage's config — because the model axis
|
| 762 |
is never collapsed (every stage always sweeps all 3 models) but frame count, input
|
|
|
|
| 757 |
`python backup.py --repo-id <you>/<repo> --target <step's target>` -- targets are
|
| 758 |
listed in backup.py's own docstring; `--target all` covers everything.
|
| 759 |
|
| 760 |
+
**Step 0.5 (optional pilot) — reasoning-budget calibration.** Before committing the
|
| 761 |
+
main sweeps to the pre-registered 2048-token budget, a small pilot (e.g. 4 H100s)
|
| 762 |
+
sweeps OPERATOR-CHOSEN budgets on an OPERATOR-CHOSEN question list and format —
|
| 763 |
+
nothing about the pilot's scope is baked in; you list the budgets, the exact
|
| 764 |
+
question ids, and the spatial-code format:
|
| 765 |
+
|
| 766 |
+
```bash
|
| 767 |
+
python -m calibration.run --models all --budgets 256,512,1024 \
|
| 768 |
+
--questions 12,34,56,789 --spatial-code-format explicit \
|
| 769 |
+
--depth metric --tracking tracking --input-selection selective --frames 64
|
| 770 |
+
# or --questions-file pilot_questions.json instead of --questions
|
| 771 |
+
python -m calibration.report # per-cell recommendation
|
| 772 |
+
```
|
| 773 |
+
|
| 774 |
+
Budgets, question ids, spatial-code format, AND the full perceived-code config
|
| 775 |
+
(depth / tracking / input selection / frame count) are all required operator
|
| 776 |
+
choices -- nothing is defaulted. Scenes are derived from the question ids
|
| 777 |
+
automatically (unknown ids fail loudly); each cell writes to
|
| 778 |
+
`results/calibration/<model>/<format>/<depth>/<tracking>/<input>/<frames>/<budget>/<scene>/<question_id>.json`,
|
| 779 |
+
so pilots at different configs can never collide.
|
| 780 |
+
|
| 781 |
+
The recommendation rule is fixed in `calibration/report.py`'s docstring (smallest
|
| 782 |
+
budget within tolerance of best AND with an acceptable forced rate). If it moves the
|
| 783 |
+
budget off 2048, record the new value in `analysis/preregistration.md` BEFORE Step 1
|
| 784 |
+
and pass `--reasoning-budget` on every extended run thereafter.
|
| 785 |
+
|
| 786 |
Rather than a full factorial sweep across every axis, configuration is narrowed in
|
| 787 |
stages — each stage's winner freezes the next stage's config — because the model axis
|
| 788 |
is never collapsed (every stage always sweeps all 3 models) but frame count, input
|