Open
Conversation
|
I have read the CLA Document and I hereby sign the CLA 0 out of 2 committers have signed the CLA. |
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 within normal seed-to-seed variance. The fix achieved the BEST EVER in_dist surf_p=17.14 (-0.80 from baseline), which is a signal worth disambiguating from noise.
This rerun uses a different seed (42) to determine whether the near-miss was a high-variance artifact or a genuine near-improvement that could cross the threshold with a luckier initialization.
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-seed42.Baseline
Results
W&B run: gpvp4w56
Best epoch: 61
Full surface MAE (Ux / Uy / p):
Volume MAE (Ux / Uy / p):
Peak memory: not explicitly logged; no OOM observed.
What happened
Seed 42 is substantially worse than both baseline (Δ=+0.0124) and the default seed run (Δ=+0.0118). The hypothesis was not confirmed — a luckier seed did not push the tandem curriculum fix across the baseline threshold. Instead, the seed 42 initialization produced meaningfully worse results across all splits.
The large gap between seed 42 (0.8450) and the default seed (0.8332) reveals high seed variance for this change — a range of ~0.012 units of val/loss from initialization alone. This is larger than the ~0.003 difference between many of our previous incremental improvements. It means single-run comparisons at this performance level are unreliable, and the PR #1674 result (val_loss=0.8332, Δ=+0.0006) cannot be confidently declared as positive or negative without multiple seeds.
The fact that seed 42 is far worse suggests the tandem curriculum change shifts which local minimum the optimizer finds, and seed 42 landed in a worse basin. The in_dist surf_p of 17.60 is better than baseline (17.94) across both seeds, suggesting the fix may genuinely help single-foil performance — but hurts tandem enough to increase overall val/loss.
Suggested follow-ups