The Frugendorff: Recursive Weight Sharing + MLP 4x (1.1478 BPB, 15.19MB)#498
Closed
newjordan wants to merge 3 commits intoopenai:mainfrom
Closed
The Frugendorff: Recursive Weight Sharing + MLP 4x (1.1478 BPB, 15.19MB)#498newjordan wants to merge 3 commits intoopenai:mainfrom
newjordan wants to merge 3 commits intoopenai:mainfrom
Conversation
… gravity needs more steps
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Author
|
Closing to clean up — resubmitting with only submission files. |
This was referenced Mar 25, 2026
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
Non-record submission exploring recursive weight sharing — a novel approach where 6 unique transformer blocks are looped 2x each, providing 12 effective layers of depth with only 6 blocks of stored parameters. The freed parameter budget enables MLP 4x expansion, which is the primary quality driver.
Key Insight
MLP 4x gives ~2% relative BPB improvement over MLP 3x, but doesn't fit in 16MB with 12 unique layers. Recursive weight sharing (6 unique x 2 loops) fits it in 15.19 MB. The weight sharing is the compression technique; the MLP 4x is the quality lever.
Architecture
Results
No TTT on Validation Data
All training uses training data only. Late replay buffers training batches. Self-distillation uses EMA teacher on training data.
Test plan