Podracing III: Cubric Lite — 0.9362 BPB#782
Open
newjordan wants to merge 1 commit intoopenai:mainfrom
Open
Conversation
Per-order adaptive alpha scaling on legal score-first 7-gram backoff. Tracks per-order beat rate on already-scored tokens, suppresses noisy low orders (2-3 → 0.3x alpha), boosts accurate high orders (5-7 → 2.0x). Results (seeds 2045/43/300): Sliding BPB (no n-gram): 1.1198 mean Cubric n-gram BPB: 0.9362 mean (0.9357/0.9362/0.9365) Artifact: 15.59 MB (int6+zstd) 0.026 BPB improvement over Podracing II (openai#753, 0.9625). Original contribution: per-order adaptive alpha scaling. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
6 tasks
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
What Changed vs Podracing II (#753)
One eval-time addition, no training changes:
Per-order adaptive alpha scaling ("Cubric Lite"): During n-gram eval, track how often each order's n-gram probability beats the model's probability on already-scored tokens. Every 32 batches, adjust per-order alpha multipliers. Converged multipliers: **UNDEREXPLORED
Key finding: bigrams and trigrams (orders 2-3) were actively harming BPB by injecting noisy predictions at the same alpha as high-order matches. Suppressing them to 30% of base alpha and boosting orders 5-7 to 200% = 0.026 BPB gain.
Compliance
Credits
Test plan
🤖 Generated with Claude Code