Fix PR #4636 regression: conditionally update rollout params before pre-RL evaluation - #4718
Open
igorts-git wants to merge 1 commit into
Open
Fix PR #4636 regression: conditionally update rollout params before pre-RL evaluation#4718igorts-git wants to merge 1 commit into
igorts-git wants to merge 1 commit into
Conversation
…re-RL evaluation
igorts-git
requested review from
RissyRan,
abhinavclemson,
bvandermoon,
gobbleturk,
khatwanimohit and
vipannalla
as code owners
August 3, 2026 21:23
|
Caution The consumer version of Gemini Code Assist on GitHub has been sunset. All code review activity has officially ceased. |
igorts-git
requested review from
A9isha,
NuojCheng,
SurbhiJainUSC,
aireenmei,
darisoy,
dipannita08,
gagika,
hengtaoguo,
huytransformer,
jiangjy1982,
richjames0,
shralex and
xibinliu
as code owners
August 3, 2026 21:23
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
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.
Description
This PR fixes a regression introduced in PR #4636 where
rl_cluster.rollout.update_paramswas removed prior to Pre-RL evaluation (step 0).When running an RL training or evaluation job that resumes from a previously saved RL checkpoint (step > 0), omitting update_params causes Pre-RL evaluation to evaluate using the base HuggingFace/SFT checkpoint weights rather than the restored RL checkpoint weights. Conversely, running update_params unconditionally at step 0 causes redundant weight transfers and unnecessary resharding.
This change adds a conditional check so
rl_cluster.rollout.update_paramsis skipped at step 0 and executed whenever resuming from a checkpoint (step > 0).Tests
Added a few extra log statements (removed in this PR) to validate that :
is_restored_run=False,update_paramswas skipped, and saved an RL checkpoint at step 1.is_restored_run=True,rl_cluster.rollout.update_paramswas called prior to Pre-RL evaluation, and verified that training completed successfully.Checklist
Before submitting this PR, please make sure (put X in square brackets):
gemini-reviewlabel.