submission: Int6 MLP3x + Late-K Passthrough + SlidingWindow (val_bpb: 1.1605)#99
Open
takhir-iota wants to merge 4 commits intoopenai:mainfrom
Open
submission: Int6 MLP3x + Late-K Passthrough + SlidingWindow (val_bpb: 1.1605)#99takhir-iota wants to merge 4 commits intoopenai:mainfrom
takhir-iota wants to merge 4 commits intoopenai:mainfrom
Conversation
Author
|
The submitted code snapshot is minified because code size counts toward the 16,000,000-byte submission limit. I kept the PR body and submission README detailed so the method is still reviewable, and the included logs/config describe the exact run behavior. |
5 tasks
m0at
added a commit
to m0at/parameter-golf
that referenced
this pull request
Mar 20, 2026
MLP_HIDDEN=1488, 15.93MB. 9918 steps in 570s (57ms/step). LR tuning from PR openai#99: scalar_lr 0.04->0.02, embed_lr 0.05->0.03. Improvement vs baseline: -0.0596 BPB.
5 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.
Int6 MLP3x + Late-K Passthrough + SlidingWindow
Summary
This PR is a 10-minute submission for leaderboard placement, not a record claim.
The submitted run is the best under-cap seed on this lane:
seed2025final_sliding_window_eval_exact stride:64 val_loss:1.95946000 val_bpb:1.16050360Total submission size quant+zstd: 15,844,924The lane stacks four practical improvements on the strong 9-layer, 512-dim GPT recipe:
.mlp.,.attn.c_q.,.attn.c_v., and.attn.proj.are stored in int6, then compressed withzstd.MLP_MULT=3keeps the wider hidden layer that materially improves score within the byte budget.blocks.7.attn.c_k.weightandblocks.8.attn.c_k.weightstay in fp16, while the remainingc_kmatrices use grouped int8 withgroup_size=64.EVAL_STRIDE=64gives near-full context at evaluation time and is the main improvement over the stride-256 variant.Configuration
Command
Key Metrics
val_loss:2.0047 val_bpb:1.1873val_loss:2.01675174 val_bpb:1.19443398val_loss:1.95946000 val_bpb:1.16050360Quantization Strategy
The main serializer choice is to spend the remaining bytes on the attention
Kpath rather than on broader fp16 promotion:tok_emb.weight: fp16 passthroughblocks.7.attn.c_k.weightandblocks.8.attn.c_k.weight: fp16 passthrough.attn.c_k.matrices: grouped int8,group_size=64.mlp.,.attn.c_q.,.attn.c_v.,.attn.proj.: int6zstdThis keeps the artifact under
16,000,000bytes while preserving the highest-value late-layer key projections.Additional Seeds
The same lane was rerun on two more under-cap seeds:
seed42:val_loss:1.96035715 val_bpb:1.16103494,15,802,877bytesseed4242:val_loss:1.96595032 val_bpb:1.16434753,15,822,568bytesMaintainers can place this submission according to the project’s current eligibility and ranking criteria.