Record: L_ParallelResiduals_UNetSkips_DepthRecur_Muon_ 1.0901#1893
Open
Hieuabssy wants to merge 5 commits into
Open
Record: L_ParallelResiduals_UNetSkips_DepthRecur_Muon_ 1.0901#1893Hieuabssy wants to merge 5 commits into
Hieuabssy wants to merge 5 commits into
Conversation
leakyRelu0.5^2 + GPTQ + EMA + BigramHash(1.3069)
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.
Record candidate: 11L Parallel Residuals + U-Net Skip Fix + Depth Recurrence + Muon + GPTQ int6
val_bpb: 1.09012178 (3-seed mean, std 0.00139) | val_loss: 2.50840009 nats (std 0.00319) | 15.99 MB max | 8xH100 80GB HBM3 | 590s effective train cap / ~209s sliding eval
This submission targets the
track_10min_16mbchallenge with an 11-layer, 512d GPT-style model. The headline score is the final int6+brotli sliding-window evaluation averaged over seeds{42, 1337, 1024}. All three artifacts are under the 16,000,000-byte cap; the maximum observed submission size is 15,991,908 bytes, leaving 8,092 bytes of headroom.The contribution is not a test-time-training or validation-cache trick. It is a compact architecture/training stack built around parallel late residual lanes, U-Net-style skip injection, delayed depth recurrence, Muon optimization, EMA, GPTQ int6 quantization, and a compiled sliding-window evaluator.
Results
3-seed sample std: 0.00139 BPB / 0.00319 nats.
The run reserves 10 seconds for GPTQ and trains against an effective 590,000 ms cap. Logs show wallclock early stopping at 590.052-590.094s, followed by EMA application, GPTQ calibration, int6+brotli serialization, and final sliding-window scoring.
Statistical profile
The best seed is 1024 at 1.08918743 BPB. The worst seed is 1337 at 1.09171602 BPB. The 3-seed spread is 0.00252859 BPB, with the submitted mean matching
submission.jsonexactly:val_lossval_bpbbytes_totalbytes_codeNo paired PR baseline is included in this record folder, so this note does not claim a significance test versus another PR. It reports the 3-seed aggregate and per-seed logs directly.
What is new in this submission
The folder metadata names the submission as Parallel Residuals + U-Net Skip Fix. The two reviewer-facing changes are:
eval_val_slidinguses the optimized compiled model path when available.The broader stack also includes delayed recurrence over layers
3,4,5, value embeddings on layers9,10, Muon for matrix weights, EMA withEMA_DECAY=0.9965, and GPTQ over 64 calibration batches.Architecture and training stack
fineweb10B_sp4096shardsTRAIN_SEQ_LEN=2048,TRAIN_BATCH_TOKENS=786432, 8-way distributedEVAL_SEQ_LEN=2048,EVAL_STRIDE=64, sliding-window scoringskip_weightsand sigmoidskip_gatesPARALLEL_START_LAYER=7; attention and MLP lanes merged by learnedlane_mergeRECUR_LAYERS=3,4,5, activated atRECUR_START_STEP=3000; virtual layer order becomes[0,1,2,3,4,5,3,4,5,6,7,8,9,10]VE_ENABLED=1,VE_LAYERS=9,10,VE_DIM=128MATRIX_LR=0.022, momentum 0.99, warmup from 0.92 over 1500 steps), AdamW on embeddings/scalarsEMA_DECAY=0.9965applied before quantization+/-1pruning to fit 16MBTTT_ENABLED=False)Quantization and compression
Each seed collects 66 GPTQ Hessians in about 10.5s and uses full GPTQ for all 66 quantized layers with no clip-search fallback. After quantization, the serializer applies selective pruning only if the unpruned package exceeds the cap:
This is a storage-fitting step on the already-quantized representation. The logs show every final artifact under the 16,000,000-byte submission limit.
Compliance
eval_val_sliding, which feeds only left context into each window and scores tokens after their available prefix.EVAL_STRIDE=64and scores the suffix of each window after the context prefix (s = 0for the first window, otherwises = seq_len - stride), so validation tokens are accounted once in the aggregate.TTT_ENABLED=Falsein the logged hyperparameters. The submitted BPB is the int6 sliding-window eval, not a score-first TTT pass.effective=590000ms). All seeds stop by the wallclock cap before serialization and quantization.No n-gram cache, validation-derived logit table, persistent retrieval state, or PPM-style mixture is present in this record. GPTQ calibration is collected from the training loader during the post-training quantization phase.
Lineage and credits
Parallel Residuals + U-Net Skip Fix, authortrung.Related PR and issue links
EMA_DECAY=0.9965) credited by PR [Record] 3-Layer Depth Recurrence + EMA 0.9965 + WD 0.095 — val_bpb 1.0889 #1445.3-layer recurrence + WD/LR tuning: PR Record: MuonEq-R + 3-Layer Recurrence + WD=0.095 + MLR=0.022 + All-Int6 — val_bpb 1.0900 (3-seed mean) #1331
EMA decay tuning (0.9965): PR [Record] 11L Depth Recurrence + EMA Tuning (0.9965) — val_bpb 1.0925 #1421 by @X-Abhishek-X (this author)
The new contribution captured by this record folder is the corrected interaction between U-Net skips and parallel residual lanes, plus the compiled-model path for final sliding-window evaluation, validated over three seeds under the 10-minute / 16MB constraints.
Credit:
University of Science, VNU-HCM. HCMUS-Quan