diff options
| author | YurenHao0426 <Blackhao0426@gmail.com> | 2026-03-25 16:20:53 -0500 |
|---|---|---|
| committer | YurenHao0426 <Blackhao0426@gmail.com> | 2026-03-25 16:20:53 -0500 |
| commit | 5a3b20d627eca65612f598c1ba5807d5d2df029a (patch) | |
| tree | e7f2f697303f738e757db6e93214d880f6c7642a /NOTE.md | |
| parent | 3ec9a5cd63b4578999d89b49f5223024a1acb723 (diff) | |
Add Phase 9A: checkpointed handoff — blend(Vec+DFA) outperforms pure DFA
First positive online result: 50% blend of offline-fitted Vec + DFA gives 31.7%
vs 31.1% for pure DFA (+0.55%). This is Case B: pure Vec handoff fails (-1.1%)
but blend works because DFA stabilizes trajectory while Vec adds directional credit.
Offline-fitted Vec at DFA epoch-5 checkpoint: Gamma=0.229, rho=0.262.
Cold-start confirmed as main bottleneck — Vec IS useful on DFA trajectory features.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'NOTE.md')
| -rw-r--r-- | NOTE.md | 24 |
1 files changed, 23 insertions, 1 deletions
@@ -5,7 +5,7 @@ - **pilot**: Controlled iteration (commits 0b9ebb2, 7baf7ae) - **frozen**: Code at commit 0b9ebb2 for all reported results -## Status: PHASE 8 SCHEDULE TIMING — ONLINE CO-LEARNING IS THE REMAINING BOTTLENECK +## Status: PHASE 9A — BLEND HANDOFF OUTPERFORMS DFA (+0.55%) --- @@ -484,3 +484,25 @@ is ready, the early window is closed. ### Experiment IDs (Phase 8) - `schedule_timing/`: Phase 8 schedule comparison + +--- + +## Phase 9A: Checkpointed Offline Handoff + +**Setup**: DFA trajectory with checkpoint at t0=5 (acc=30.4%). +Offline-fit Vec_M4 on frozen checkpoint (60 epochs). Then branch. + +| Branch | final acc | diff vs DFA | +|--------|-----------|-------------| +| continue_DFA | 0.311 | baseline | +| handoff_to_Vec | 0.300 | -0.011 | +| **handoff_blend_05** | **0.317** | **+0.006** | + +**FIRST POSITIVE ONLINE RESULT**: 50% blend (Vec+DFA) outperforms pure DFA by +0.55%. + +This is Case B: pure Vec handoff fails, but blend works. +Vec provides complementary directional credit that DFA alone lacks. +DFA stabilizes the trajectory while Vec adds learned corrections. + +### Experiment IDs (Phase 9) +- `checkpointed_handoff/`: Phase 9A checkpointed handoff with branches |
