Non-record: Negative findings on codebook quantization, magnitude pruning, multi-token prediction, embedding factorization#212
Closed
mrdavtan wants to merge 3 commits intoopenai:mainfrom
Closed
Conversation
4 tasks
Author
Update: 5-seed statistical validation added
Gap vs baseline: 0.036 nats (threshold: 0.005) | t-stat: 44.2 | p < 0.01 All 5 runs on 8×H100 SXM (RunPod Parameter Golf template), PyTorch 2.9.1+cu128, same config, only seed varied. README and submission.json updated with full results. |
mrdavtan
added a commit
to mrdavtan/parameter-golf
that referenced
this pull request
Mar 21, 2026
4 tasks
6 tasks
2bc195b to
3b0b437
Compare
3-seed validation (mean 1.1329, std 0.0006). Added findings on codebook quantization vs zstd, magnitude pruning non-monotonicity, and embedding SVD analysis. Language cleanup throughout.
Author
|
Closing: reproduction command includes non-causal TTT (TTT_MAX_STEPS=500), which is invalid per #402. Negative findings documented in FINDINGS.md remain in the repo. |
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.
Non-record submission. val_bpb=1.1329 (3-seed mean, std=0.0006). 11L 512d int6+zstd-22, 15.3 MB, 8xH100 SXM. 25 experiments in FINDINGS.md.
Findings not tested elsewhere
Codebook quantization (#24): K-means K=256 gives 87% lower reconstruction MSE than int6 per-row, but 25% larger artifact under zstd-22. Higher byte entropy in codebook indices compresses less efficiently than clamped int6 values. Other K values and codecs not tested.
Magnitude pruning (#23): Zeroing smallest 3% of weights increased our artifact by 728KB under zstd-22. 1% and 5% were neutral. Non-monotonic on our checkpoint; other weight distributions may differ.
Multi-token prediction (#14): Auxiliary t+2 head at 0.5× loss weight: +0.0018 BPP, 3% slower. Other weightings and scales not tested.
Embedding SVD (#25): Rank-64 explains 41.9% of variance on tok_emb (1024×512). Linear low-rank factorization not viable at this vocabulary size. Nonlinear methods not tested.
Also documented: Depth recurrence failure (#13), QAT under torch.compile (#2b, credit @152334H), int5 gap (#15), curriculum learning (#11), optimizer coverage (#16), and 14 others.
Reproduction
Builds on PRs #162, #77, #180 and modded-nanogpt.