Non-record: Higher-Rank Output Heads — Standard Tied Head Wins on a Frontier 11L Baseline#908
Open
albertorkive wants to merge 2 commits intoopenai:mainfrom
Open
Non-record: Higher-Rank Output Heads — Standard Tied Head Wins on a Frontier 11L Baseline#908albertorkive wants to merge 2 commits intoopenai:mainfrom
albertorkive wants to merge 2 commits intoopenai:mainfrom
Conversation
Prepare a non-record study of higher-rank output heads on a frontier 11L baseline. - add the study folder under records/track_non_record_16mb - include the full 7-variant family sweep on the fast frontier-aligned stack - include raw JSONL, auto-generated summary, and exact per-run logs - include a self-contained study-local trainer and full-family reproduction runner - document the negative result: the standard tied head outperformed all tested higher-rank alternatives
- remove internal notes and unsupported throughput claims - align the README, summary, and reproduction notes with the files actually included - frame the study as a clean fast-path negative result on a frontier baseline
Community Review — Non-record: Higher-Rank Output Heads — Standard Tied Head Wins on a Frontier 11L BaselineCompliance: LOOKS CLEAN — pure-neural submission, no TTT/SLOT/n-gram-cache PR #908 — HigherRankHeads 11L Study (non-record track) Head SHA: c233e73 ### What This PR Is A non-record study in
|
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
This PR adds a non-record study of higher-rank output heads on a fixed frontier-aligned 11L baseline.
Tested family:
Main result:
This is a clean negative result on a strong baseline and should be useful for anyone considering output-head expressivity as the next frontier lever in this budget regime.
Results
Why These All Fail
The factorized and mixture heads are designed to break the softmax rank bottleneck (Yang et al. 2017) — the idea that a single
d_model → vocabprojection can't represent the full rank of natural language.At this scale (d=512, vocab=1024), the bottleneck doesn't bind. The vocabulary is small enough that the tied embedding matrix already has rank min(512, 1024) = 512, which is sufficient. The extra parameters in mixture/factorized heads add noise and artifact size without solving a real capacity problem.
The simplex head is a different failure mode: forcing a probability simplex before the output projection destroys the model's ability to produce sharp logit distributions.
Setup
Because this family sweep ran on the full fast path with quantization, there is no separate confirmatory matrix. The family sweep itself is the authoritative result set.
Reproduction