Open
Conversation
|
I have read the CLA Document and I hereby sign the CLA 0 out of 2 committers have signed the CLA. |
Co-Authored-By: Claude Sonnet 4.6 <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.
Hypothesis
The tandem curriculum fix (PR #1674) achieved val_loss=0.8332, only +0.0006 above baseline 0.8326. This is a third seed point to establish the distribution of outcomes for this fix. Between the original run and seed 42, we need at least one more data point to distinguish signal from noise.
If 2 out of 3 seeds beat baseline, we merge. If all 3 cluster near baseline, the fix is neutral-to-slightly-positive and we still merge for correctness. If all 3 regress, we close.
Instructions
Apply the tandem curriculum fix to
train.py:Lines 712-714 — Replace:
With:
Add seed at the top of the script (after imports, before any torch calls, around line 43):
Run with
--wandb_group noam-r23-tandem-curr-seed123.Baseline
Results
W&B run: 5nf58eb6 (runtime: 32.0 min, state: failed due to pre-existing vis crash)
mean3_p = (18.73+14.24+38.23)/3 = 23.73
vs baseline: val_loss +0.0257 (+3.1%), mean3_p +0.85 (+3.7%) — worse
What happened
Seed 123 gives a much worse result (0.8583 vs 0.8326 baseline) compared to the default-seed run (0.8332). This is a large variance between seeds for what should be the same fix. The seed 123 result is well outside the noise range.
Summary of tandem-curr-fix seed sweep:
The high variance between seeds suggests the fix interacts with initialization in unpredictable ways. Seed 123 leads to an initialization that somehow conflicts with the corrected curriculum — perhaps the tandem-only early training (epochs 0-10) with this seed creates a suboptimal basin that's hard to escape.
Suggested follow-ups