Add ContextFuse-2048-BigramSmear submission#174
Open
Julz19 wants to merge 2 commits intoopenai:mainfrom
Open
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 0f75a5fae7
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
records/track_10min_16mb/2026-03-20_ContextFuse-2048-BigramSmear/train_gpt.py
Outdated
Show resolved
Hide resolved
Author
|
Resolved bug identified in comment by codex which cause our script to double-count tail tokens and bias the |
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 updates the
track_10min_16mbsubmission:records/track_10min_16mb/2026-03-20_ContextFuse-2048-BigramSmearThis remains a follow-up to PR #143 (
ContextFuse-2048) and stays focused onval_bpbas the primary challenge metric.Corrected canonical run (
seed=1337):val_loss = 1.94796677val_bpb = 1.15369565589978ms150215ms15331125Relative to PR #143, this improves the canonical
val_bpbfrom1.17792945to1.15369565.Scoring Correction
The prior revision of this submission used a sliding-window evaluator that could rescore the same final stride tokens more than once in truncated tail windows when
EVAL_STRIDE < TRAIN_SEQ_LEN.This PR fixes that evaluator in the standalone
train_gpt.pyand updates the submission metadata to use the corrected canonical metric from an exact reevaluation of the savedseed=1337raw checkpoint.Because of that fix:
train.log,train_seed42.log, andtrain_seed7.logare retained as original pre-fix training logs for transparencyMethod
Relative to PR #143, this submission keeps the same baseline-derived train@2048 path and adds the stronger compression-aware stack that transferred honestly:
Attribution
This submission builds on ideas previously explored in the repo, especially:
ContextFuse-2048baseValidation
Included in the submission folder:
train_gpt.pythat compiles and runs from inside the record foldertrain.logtrain_fixed_eval_seed1337.logtrain_seed42.logandtrain_seed7.logfor transparencyREADME.mdandsubmission.jsonThe standalone script in the submission folder is
1500lines and the canonical standalone artifact is15331125bytes.Prepared with assistance from OpenAI Codex.