Record: NgramRes + Sliding-Window Attention + Legal Score-First TTT. …#1834
Closed
ghrua wants to merge 1 commit intoopenai:mainfrom
Closed
Record: NgramRes + Sliding-Window Attention + Legal Score-First TTT. …#1834ghrua wants to merge 1 commit intoopenai:mainfrom
ghrua wants to merge 1 commit intoopenai:mainfrom
Conversation
…3-seed Mean 1.08034 (std 0.00034), seeds 42/314/999. All artifacts under 16MB, training under 600s, eval under 600s Score-first TTT (SGD 3ep, cosine decay), no SLOT, no pre-quant TTT
sunnypatneedi
pushed a commit
to sunnypatneedi/parameter-golf
that referenced
this pull request
Apr 26, 2026
…1835 PPM-D 1.00136 new watch; NgramRes stackable; Day 17 plateau; Session 22 - Upstream commit 7427de2 (Alex Zhao, OpenAI Apr 26): Scylla 0.9485 (PR openai#1184) removed as invalid record; PR openai#1813 (djeidy Scylla 0.94166) effectively dead by proxy - PR openai#1835 (anmarhindi, 1.00136): PPM-D order-5 byte mixture, binary-λ gate, score-first, 15,993,020 bytes — most credible extraordinary claim yet; wait 24h for community BPB check - PR openai#1834 (ghrua, 1.08034): NgramRes 3-gram MLP +0.6M params + sliding-window attn layers 0-3 — modest, stackable - PR openai#731 (Hedge Mixer): still OPEN, 2 seeds pending, no merge - Merged SOTA 1.0810 definitively confirmed; target ≤1.0760; 4 days to deadline https://claude.ai/code/session_01XbdTRT7zPHoGp3LfQV4yXF
|
your 1.08034 does not beat the current leader (2026-04-09, bpb 1.0810) by 0.005 nats see: https://github.com/openai/parameter-golf#submission-process |
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.
Record: NgramRes + Sliding-Window Attention + Legal Score-First TTT
val_bpb = 1.08034 (3-seed mean, std 0.00034) | ~15.99 MB | 8xH100 SXM
3-Seed Results
Apr-9 record reference (
track_10min_16mb/2026-04-09_SP8192_3LayerRecur_ParResid_QK525_LegalTTT): val_bpb = 1.0810.Key Techniques
We decomposed the language modeling into two components: an n-gram model for local context, and a residual model for long context:
The basic idea is from [1], i.e., spending effort on learning the knowledge that can be cheaply captured by n-gram (the local context) seems a waste.
NGRAM_SHARE_EMB=1) and a per-position pad embedding, and ties its output totok_emb.weight(NGRAM_TIE_OUTPUT=1). Adds ~0.6 M params (~4 % of the model); int6-quantized identically to the rest of the matrices.flash_attn_3_func(window_size=(512, 0))on the first four blocks; layers 4-10 keep full causal attention (SWA_LAST_EARLY_LAYER=4,SWA_WINDOW=512). Frees attention compute on the early layers that handle local syntax, leaving more wallclock for the rest of the stack.