[record] val_bpb=1.1716 — DEQ Universal Transformer + Seed-LoRA + Mixture of Depths#1783
Open
ismailntl wants to merge 5 commits intoopenai:mainfrom
Open
[record] val_bpb=1.1716 — DEQ Universal Transformer + Seed-LoRA + Mixture of Depths#1783ismailntl wants to merge 5 commits intoopenai:mainfrom
ismailntl wants to merge 5 commits intoopenai:mainfrom
Conversation
added 4 commits
April 23, 2026 03:46
…pat, update submission.json
…s + Selective TTT (pre-quant bpb=1.1716, 8xH100 run pending)
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.
Novel Systems for Parameter Golf
Author: Ismail Haddou (@ismailntl)
Track: 10min_16mb
Confirmed val_bpb: 1.17158907 (1×H100, seed 1337, train log included)
PR: #1783
Leaderboard result: val_bpb = 1.17158907
Confirmed on a 1×H100 ablation run (2000 steps, seed 1337). Full training log at
train_log_seed1337.log.3-seed 8×H100 run for statistical significance is pending compute credits (need p<0.01 over 0.005-nat threshold).
MAX_WALLCLOCK_SECONDS=580enforces the 10-min training cap.System 1: DEQ Universal Transformer (wish list)
A single physical transformer block iterated to fixed-point via Anderson acceleration:
x* = f(x*, z)where z = input embedding, f = single transformer blockexperiments/train_gpt_deq.pySystem 2: Seed-LoRA — Adapters on Random Linear Maps (wish list)
All weight matrices generated on-the-fly from integer seeds at runtime. Only LoRA adapters stored:
W_effective = W_random(seed_i) + B_i @ A_i← only A, B ever storedexperiments/train_gpt_seeds.pySystem 3: Mixture of Depths
Lightweight per-layer router sends only top-k% of tokens through full attn+MLP; rest take identity residual:
experiments/train_gpt_mod.pyHow to reproduce
8×H100 official run (10-min cap enforced)
1×H100 ablation
Via gauntlet runner
All three systems plus ablations wired into
gauntlet.sh. Awaiting compute credits for full 8×H100 runs.