Non-record: 15L Depth Recurrence + LeakyReLU² — BI-guided weight tying (val_bpb=1.1360)#857
Draft
aruniyer wants to merge 2 commits intoopenai:mainfrom
Draft
Conversation
…al_bpb=1.1093) 15 effective layers from 11 unique blocks via BI-guided weight tying. Layers 9-13 share one block (lowest Block Influence scores). 27M unique params, int6+zstd = 15.7MB artifact. 3-seed results: Seed 42: 1.1048 BPB Seed 1337: 1.1092 BPB Seed 2025: 1.1138 BPB Mean: 1.1093 ± 0.0045 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- Removed multi-epoch corpus-level TTT (ruled illegal in issue openai#677) - Added legal score-first TTT option (PR#549 pattern) but it hurts this model - Clean result: 15L depth recurrence + LeakyReLU² = 1.1360 BPB (no TTT) - Documented depth-vs-steps tradeoff in README - Draft status: single seed, architecture exploration Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.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
val_bpb: 1.1360 (seed 1337) | 15.87 MB | 8xH100 SXM
Non-record submission exploring BI-guided depth recurrence: using Block Influence scores (ShortGPT) to identify
which layer positions can share weights, enabling 15 effective layers from 11 unique parameter blocks within the
same 16MB budget as standard 11L.
Result
Key Technique: BI-Guided Weight Tying
Depth vs Steps Tradeoff
15L runs at 116ms/step (vs 86ms for 11L) due to 4 extra forward/backward layers. In 600s: ~5170 steps vs ~6975 for
11L. The depth advantage doesn't fully compensate for ~1800 fewer steps in this wallclock-limited setting. At equal
step counts, 15L outperforms 11L.
Architecture
15L (10 unique + 1 shared×5), 512d, 8H/4KV GQA, MLP 3x, LeakyReLU(0.5)², XSA4, Partial RoPE 16/64, LN Scale, VE128,
SmearGate, BigramHash(2048), EMA, SWA, Late QAT, int6+zstd-22, FA3.
Reproduce
Credits
Base: signalrush (PR #374/#414). LeakyReLU²: PR #493, PR #518. Block Influence: ShortGPT (arXiv:2403.03853).