Non-record: Blueprint Stack + ProgSeq + Multi-scale RoPE + ByteEmbed — val_bpb 1.5568 (1xRTX 3080)#1411
Open
Blakethefn wants to merge 1 commit intoopenai:mainfrom
Open
Conversation
…(1xRTX 3080) val_bpb 1.5568 on single RTX 3080 (12 GB). 10L blueprint stack with progressive sequence length, grouped multi-scale RoPE, byte-level token embeddings, and mixed-bit export. 3647 steps in 10 min, loss still dropping. Includes ablation results: 12 techniques tested across 3 phases. Most 8xH100-proven techniques hurt on single GPU due to step-time overhead.
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 a combined technique stack on a single NVIDIA RTX 3080 (12 GB).
val_bpb: 1.5568 (quantized int8+zstd roundtrip, single seed, 10 minutes training)
Architecture
10L, 512d, 8H/4KV GQA, 3x MLP (relu²), tied embeddings, U-Net skip connections, Muon + Adam optimizers, SWA. Additions over baseline:
0:512, 0.35:1024, 0.7:2048[1K, 10K, 100K, 1M]3,647 steps at 164.5 ms/step, loss still dropping at wallclock cap. Artifact: 15.9 MB.
Ablation Results
Systematic ablation of 12 leaderboard techniques across 3 phases on single RTX 3080:
torch.compile(fullgraph=True)generates 6x memory / 26x slower kernels forF.leaky_relu.Key finding: Most 8xH100-proven techniques fail on single GPU because per-step overhead reduces total training steps at the 10-minute cap. On challenge hardware (~7,100 steps vs 3,647), techniques like XSA, EMA, and Partial RoPE should provide meaningful gains.
Hardware Note
Trained on 1x NVIDIA RTX 3080 (12 GB), not 8xH100. Score is not competitive with leaderboard but demonstrates a viable technique stack and systematic research methodology.