Record: CLASE-Quant adaptive layer quantization (val_bpb=1.1914)#309
Open
NewyorkDev wants to merge 1 commit intoopenai:mainfrom
Open
Record: CLASE-Quant adaptive layer quantization (val_bpb=1.1914)#309NewyorkDev wants to merge 1 commit intoopenai:mainfrom
NewyorkDev wants to merge 1 commit intoopenai:mainfrom
Conversation
…al_bpb=1.1914) Novel techniques: - CLASE-inspired adaptive per-layer quantization (int8 boundary, int6 middle) - Ramping weight decay during warmdown (0.02->0.08) - 2048 training seq len + sliding window eval (stride=64) 3 seeds on 8xH100 SXM: 1.1926, 1.1896, 1.1921 (mean 1.1914) Artifact: ~11.5 MB (well under 16 MB limit) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
ChideraIbe123
pushed a commit
to ChideraIbe123/parameter-golf
that referenced
this pull request
Mar 21, 2026
Compresses weight distributions during warmdown for cleaner post-training quantization. From PR openai#309 (CLASE-Quant, 1.1914 BPB). QAT still enabled alongside. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
ChideraIbe123
pushed a commit
to ChideraIbe123/parameter-golf
that referenced
this pull request
Mar 21, 2026
12.5MB compressed with 9 layers → room for 10th layer. Top PRs (openai#287, openai#309) use 10-11 layers for better BPB. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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
CLASE-Quant: Adaptive Layer-Sensitive Quantization + Extended Context Training
Novel Techniques
1. CLASE-inspired Adaptive Per-Layer Quantization
Not all transformer layers are equal. Inspired by the CLASE Technique (HDXspeed, March 2026), we apply non-uniform quantization:
2. Ramping Weight Decay
Weight decay increases from 0.02 to 0.08 during warmdown (cosine schedule), progressively compressing weight distributions for cleaner post-training quantization.
3. Extended Context + Sliding Window
Train at 2048 seq len with tuned hyperparameters (LR 0.03, momentum 0.97, batch 393K), eval with stride-64 sliding window.
Results (8xH100 SXM, RunPod Secure Cloud)
Submission Checklist
Acknowledgments
Built with Claude (Anthropic) as AI pair programmer. Builds on techniques from notapplica, Matthew Li, samacqua, Spokane Way, Nan Liu, and Renier Velazco.