-
Notifications
You must be signed in to change notification settings - Fork 256
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/add remax support #234
Merged
vermouth1992
merged 8 commits into
volcengine:main
from
liziniu:feature/add-remax-support
Feb 10, 2025
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
57e3814
feat: add ReMax support
liziniu cf6402f
update README for remax
liziniu 81b22d7
reformat remax's code
liziniu 3b5586c
remove unused file
liziniu 560e840
fix: restore accidentally removed reinforce++ implementation
liziniu 123da4a
fix: update the info for 'compute_remax_outcome_advantage'
liziniu 804ef97
update ReMax training result for Qwen2.5-7B
liziniu 90b0c3d
add CI to run remax with Qwen 0.5b
liziniu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
set -x | ||
|
||
export HF_DATASETS_OFFLINE=1 | ||
export TRANSFORMERS_OFFLINE=1 | ||
|
||
export VLLM_ATTENTION_BACKEND=XFORMERS | ||
|
||
python3 -m verl.trainer.main_ppo \ | ||
algorithm.adv_estimator=remax \ | ||
data.train_files=$HOME/data/gsm8k/train.parquet \ | ||
data.val_files=$HOME/data/gsm8k/train.parquet \ | ||
data.train_batch_size=512 \ | ||
data.val_batch_size=1312 \ | ||
data.max_prompt_length=512 \ | ||
data.max_response_length=1024 \ | ||
actor_rollout_ref.model.path=Qwen/Qwen2.5-3B-Instruct \ | ||
actor_rollout_ref.actor.optim.lr=1e-6 \ | ||
actor_rollout_ref.model.use_remove_padding=True \ | ||
actor_rollout_ref.actor.ppo_mini_batch_size=128 \ | ||
actor_rollout_ref.actor.use_dynamic_bsz=True \ | ||
actor_rollout_ref.actor.ppo_max_token_len_per_gpu=30000 \ | ||
actor_rollout_ref.actor.use_kl_loss=True \ | ||
actor_rollout_ref.actor.kl_loss_coef=0.001 \ | ||
actor_rollout_ref.actor.kl_loss_type=low_var_kl \ | ||
actor_rollout_ref.model.enable_gradient_checkpointing=True \ | ||
actor_rollout_ref.actor.fsdp_config.param_offload=False \ | ||
actor_rollout_ref.actor.fsdp_config.grad_offload=False \ | ||
actor_rollout_ref.actor.fsdp_config.optimizer_offload=False \ | ||
actor_rollout_ref.rollout.tensor_model_parallel_size=2 \ | ||
actor_rollout_ref.rollout.name=vllm \ | ||
actor_rollout_ref.rollout.gpu_memory_utilization=0.8 \ | ||
actor_rollout_ref.rollout.n=4 \ | ||
actor_rollout_ref.ref.fsdp_config.param_offload=True \ | ||
algorithm.kl_ctrl.kl_coef=0.001 \ | ||
trainer.critic_warmup=0 \ | ||
trainer.logger=['console','wandb'] \ | ||
trainer.project_name='verl_remax_example_gsm8k' \ | ||
trainer.experiment_name='qwen2.5_3b_function_rm_kl1e-3' \ | ||
+trainer.val_before_train=False \ | ||
trainer.n_gpus_per_node=8 \ | ||
trainer.nnodes=1 \ | ||
trainer.save_freq=-1 \ | ||
trainer.test_freq=5 \ | ||
trainer.total_epochs=5 $@ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
set -x | ||
|
||
export HF_DATASETS_OFFLINE=1 | ||
export TRANSFORMERS_OFFLINE=1 | ||
|
||
export VLLM_ATTENTION_BACKEND=XFORMERS | ||
|
||
python3 -m verl.trainer.main_ppo \ | ||
algorithm.adv_estimator=remax \ | ||
data.train_files=$HOME/data/gsm8k/train.parquet \ | ||
data.val_files=$HOME/data/gsm8k/train.parquet \ | ||
data.train_batch_size=1024 \ | ||
data.val_batch_size=1312 \ | ||
data.max_prompt_length=512 \ | ||
data.max_response_length=1024 \ | ||
actor_rollout_ref.model.path=Qwen/Qwen2.5-7B-Instruct \ | ||
actor_rollout_ref.actor.optim.lr=1e-6 \ | ||
actor_rollout_ref.model.use_remove_padding=True \ | ||
actor_rollout_ref.actor.ppo_mini_batch_size=256 \ | ||
actor_rollout_ref.actor.use_dynamic_bsz=True \ | ||
actor_rollout_ref.actor.ppo_max_token_len_per_gpu=24000 \ | ||
actor_rollout_ref.actor.use_kl_loss=True \ | ||
actor_rollout_ref.actor.kl_loss_coef=0.001 \ | ||
actor_rollout_ref.actor.kl_loss_type=low_var_kl \ | ||
actor_rollout_ref.model.enable_gradient_checkpointing=True \ | ||
actor_rollout_ref.actor.fsdp_config.param_offload=False \ | ||
actor_rollout_ref.actor.fsdp_config.grad_offload=False \ | ||
actor_rollout_ref.actor.fsdp_config.optimizer_offload=False \ | ||
actor_rollout_ref.rollout.tensor_model_parallel_size=2 \ | ||
actor_rollout_ref.rollout.name=vllm \ | ||
actor_rollout_ref.rollout.gpu_memory_utilization=0.8 \ | ||
actor_rollout_ref.rollout.n=4 \ | ||
actor_rollout_ref.ref.fsdp_config.param_offload=True \ | ||
algorithm.kl_ctrl.kl_coef=0.001 \ | ||
trainer.critic_warmup=0 \ | ||
trainer.logger=['console','wandb'] \ | ||
trainer.project_name='verl_remax_example_gsm8k' \ | ||
trainer.experiment_name='qwen2.5_7b_function_rm_kl1e-3' \ | ||
+trainer.val_before_train=False \ | ||
trainer.n_gpus_per_node=8 \ | ||
trainer.nnodes=1 \ | ||
trainer.save_freq=-1 \ | ||
trainer.test_freq=5 \ | ||
trainer.total_epochs=10 $@ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
set -x | ||
|
||
export VLLM_ATTENTION_BACKEND=XFORMERS | ||
|
||
python3 -m verl.trainer.main_ppo \ | ||
data.train_files=$HOME/data/gsm8k/train.parquet \ | ||
data.val_files=$HOME/data/gsm8k/test.parquet \ | ||
data.train_batch_size=1024 \ | ||
data.val_batch_size=1312 \ | ||
data.max_prompt_length=512 \ | ||
data.max_response_length=512 \ | ||
actor_rollout_ref.model.path=Qwen/Qwen2.5-0.5B \ | ||
actor_rollout_ref.actor.optim.lr=1e-6 \ | ||
actor_rollout_ref.model.use_remove_padding=True \ | ||
actor_rollout_ref.actor.ppo_mini_batch_size=256 \ | ||
actor_rollout_ref.actor.ppo_micro_batch_size_per_gpu=4 \ | ||
actor_rollout_ref.actor.fsdp_config.param_offload=False \ | ||
actor_rollout_ref.actor.fsdp_config.grad_offload=False \ | ||
actor_rollout_ref.actor.fsdp_config.optimizer_offload=False \ | ||
actor_rollout_ref.rollout.log_prob_micro_batch_size_per_gpu=16 \ | ||
actor_rollout_ref.rollout.tensor_model_parallel_size=2 \ | ||
actor_rollout_ref.rollout.name=vllm \ | ||
actor_rollout_ref.rollout.gpu_memory_utilization=0.4 \ | ||
actor_rollout_ref.ref.log_prob_micro_batch_size_per_gpu=16 \ | ||
actor_rollout_ref.ref.fsdp_config.param_offload=True \ | ||
algorithm.kl_ctrl.kl_coef=0.001 \ | ||
algorithm.adv_estimator=remax \ | ||
trainer.critic_warmup=0 \ | ||
trainer.logger=['console'] \ | ||
trainer.project_name='verl_example_gsm8k' \ | ||
trainer.experiment_name='qwen_e2e_ci_function_rm' \ | ||
trainer.n_gpus_per_node=8 \ | ||
trainer.nnodes=1 \ | ||
trainer.save_freq=-1 \ | ||
trainer.total_training_steps=1 $@ |
This file contains 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
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if you have the training log and wandb already, would you mind adding one more record to
docs/experiment/ppo.rst
to include remax? it would help the community to track if experiment can be reproduced in future version.We can do that in the next PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. A preliminary result on Qwen2.5-3B is added and more results will come later.