5 novel architecture ablations on SOTA baseline#584
Closed
ssatia wants to merge 1 commit intoopenai:mainfrom
Closed
5 novel architecture ablations on SOTA baseline#584ssatia wants to merge 1 commit intoopenai:mainfrom
ssatia wants to merge 1 commit intoopenai:mainfrom
Conversation
Each ablation is a self-contained training script based on the latest record, with a single targeted modification to isolate its effect: 1. SwiGLU MLP - replaces relu-squared with gated linear unit 2. Sliding Window Attention - window attn on early encoder layers 3. Register/Sink Tokens - learnable prefix tokens as attention sinks 4. Gated Value Normalization - learned RMS norm gate on V vectors 5. Mixture of Softmax - breaks the softmax rank bottleneck 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
torchrun --nproc_per_node=8baseline.pyas the unmodified controlAblations
ablation1_swiglu.pyablation2_sliding_window.pySW_WINDOW_SIZE=256,SW_NUM_LAYERS=5ablation3_register_tokens.pyNUM_REGISTERS=4ablation4_head_temperature.pyablation5_mixture_of_softmax.pyMOS_NUM_EXPERTS=2Rationale
These target techniques not yet explored in the competition:
Test plan
baseline.pywith SEED=1337 as controlfinal_int6_sliding_window_exact val_bpbacross all runs🤖 Generated with Claude Code