sol-max-v2 complete (36 ckpts); -data/-record repos; serving note
Browse files
README.md
CHANGED
|
@@ -32,9 +32,11 @@ the performance-over-time curve, and sorting ids within a cell sorts them chrono
|
|
| 32 |
| `sol-max` | Codex / gpt-5.6-sol | max | 13 |
|
| 33 |
| `opus-high-v1` | Claude Code / claude-opus-5 | high | 3 |
|
| 34 |
| `sol-max-opusnode` | Codex / gpt-5.6-sol | max | 9 |
|
| 35 |
-
| `sol-max-v2` | Codex / gpt-5.6-sol | max |
|
| 36 |
|
| 37 |
`opus-high-v1` is the original opus@high; a rerun (v2) is in flight.
|
|
|
|
|
|
|
| 38 |
`sol-max-opusnode` is an extra attempt, not one of the 7 plotted cells.
|
| 39 |
|
| 40 |
## Fields
|
|
@@ -57,11 +59,41 @@ the performance-over-time curve, and sorting ids within a cell sorts them chrono
|
|
| 57 |
|
| 58 |
| value | n | meaning |
|
| 59 |
|---|---|---|
|
| 60 |
-
| `mtime` |
|
| 61 |
| `janitor` | 24 | archive timestamps from the arm's `ckpt-janitor.log` (exact) |
|
| 62 |
| `extrapolated` | 7 | that family's own step→time cadence; validated against independent local anchors to within ~1.4 h |
|
| 63 |
| `unrecoverable` | 15 | local copy pruned, no timing record survives. `hour` is null — use `hour_upper_bound` and step order, or exclude |
|
| 64 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
## Before you compare two checkpoints
|
| 66 |
|
| 67 |
**Check `eos_ok`.** `248046` is `<|im_end|>`, which the Qwen3.5 chat template ends every
|
|
|
|
| 32 |
| `sol-max` | Codex / gpt-5.6-sol | max | 13 |
|
| 33 |
| `opus-high-v1` | Claude Code / claude-opus-5 | high | 3 |
|
| 34 |
| `sol-max-opusnode` | Codex / gpt-5.6-sol | max | 9 |
|
| 35 |
+
| `sol-max-v2` | Codex / gpt-5.6-sol | max | 36 |
|
| 36 |
|
| 37 |
`opus-high-v1` is the original opus@high; a rerun (v2) is in flight.
|
| 38 |
+
`sol-max-v2` is the sol@max redo that ran the full 100 h after the original died at ~h16;
|
| 39 |
+
it submitted an **h7** checkpoint over 75 further hours of its own training.
|
| 40 |
`sol-max-opusnode` is an extra attempt, not one of the 7 plotted cells.
|
| 41 |
|
| 42 |
## Fields
|
|
|
|
| 59 |
|
| 60 |
| value | n | meaning |
|
| 61 |
|---|---|---|
|
| 62 |
+
| `mtime` | 222 | checkpoint dir mtime on the PVC (exact) |
|
| 63 |
| `janitor` | 24 | archive timestamps from the arm's `ckpt-janitor.log` (exact) |
|
| 64 |
| `extrapolated` | 7 | that family's own step→time cadence; validated against independent local anchors to within ~1.4 h |
|
| 65 |
| `unrecoverable` | 15 | local copy pruned, no timing record survives. `hour` is null — use `hour_upper_bound` and step order, or exclude |
|
| 66 |
|
| 67 |
+
## What else is published per cell
|
| 68 |
+
|
| 69 |
+
Every cell has three companion repos beyond its checkpoints:
|
| 70 |
+
|
| 71 |
+
| repo | type | contents |
|
| 72 |
+
|---|---|---|
|
| 73 |
+
| `agentic-ptb/{cell}-record` | model | driver trajectory (every turn), harness source, configs, the arm's own evals, RUNLOG, supervisor history |
|
| 74 |
+
| `agentic-ptb/{cell}-data` | dataset | the training corpus the arm built for itself — downloaded, filtered and mixed |
|
| 75 |
+
| `agentic-ptb/{cell}.h*` | model | the checkpoints, indexed here |
|
| 76 |
+
|
| 77 |
+
Driver credentials are never included in a record repo.
|
| 78 |
+
|
| 79 |
+
Automated scanners flag credential-shaped strings inside the `-data` corpora. They were
|
| 80 |
+
checked: they are synthetic fixtures belonging to the training tasks themselves
|
| 81 |
+
(secret-scanning exercises whose text embeds fake keys). No project credential is present.
|
| 82 |
+
|
| 83 |
+
## Serving these checkpoints
|
| 84 |
+
|
| 85 |
+
`Qwen/Qwen3.5-9B-Base` is `Qwen3_5ForConditionalGeneration` — a **vision** architecture, and
|
| 86 |
+
the vision tower is present in every checkpoint here. prime-rl exports only the text-side
|
| 87 |
+
files, so vLLM fails two different ways unless multimodality is switched off: it first demands
|
| 88 |
+
a `preprocessor_config.json` that was never exported, and if you supply one it dies inside the
|
| 89 |
+
vision kernel (`fmax() missing 1 required positional argument`).
|
| 90 |
+
|
| 91 |
+
Serve text-only, which is what the arms themselves did:
|
| 92 |
+
|
| 93 |
+
```
|
| 94 |
+
--limit-mm-per-prompt '{"image": 0, "video": 0}'
|
| 95 |
+
```
|
| 96 |
+
|
| 97 |
## Before you compare two checkpoints
|
| 98 |
|
| 99 |
**Check `eos_ok`.** `248046` is `<|im_end|>`, which the Qwen3.5 chat template ends every
|