PP12: Bayesian posterior packets + selective gating (1.1261 BPB)#1043
Open
okezue wants to merge 1 commit intoopenai:mainfrom
Open
PP12: Bayesian posterior packets + selective gating (1.1261 BPB)#1043okezue wants to merge 1 commit intoopenai:mainfrom
okezue wants to merge 1 commit intoopenai:mainfrom
Conversation
3f47370 to
f754794
Compare
icryo
added a commit
to icryo/parameter-golf
that referenced
this pull request
Mar 29, 2026
PR openai#1043 found early TTT chunks achieve 1.109 BPB (below SOTA!) but accumulated SGD updates cause drift to 1.126 by late chunks. Fix: periodically reset model weights to the original checkpoint. This prevents catastrophic drift while preserving local adaptation. Implementation: - TTT_RESET_EVERY=N: reset weights every N chunks (0=disabled) - Resets both weights and optimizer momentum state - Uses in-place copy (no reallocation, parameter references preserved) H100 sweep now tests 11 configurations: 6 temperatures × sliding eval 5 TTT configs: A: SOTA baseline (lr=0.002, 3ep) B: PR openai#1039 (lr=0.0025, 4ep) C: 5 epochs (lr=0.002, 5ep) D: PR openai#1039 + reset/100 (anti-drift) E: PR openai#1039 + reset/50 (anti-drift) If early chunks consistently hit 1.109 and reset prevents drift, the mean across all chunks could drop from 1.119 toward 1.110-1.114. That's record territory. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Test plan