mirror of
https://github.com/volcengine/verl.git
synced 2025-10-20 05:33:49 +08:00
### What does this PR do?
This PR tries to fix #3491
### Checklist Before Starting
- [x] Search for similar PRs. Paste at least one query link here: ...
- [x] Format the PR title as `[{modules}] {type}: {description}` (This
will be checked by the CI)
- `{modules}` include `fsdp`, `megatron`, `sglang`, `vllm`, `rollout`,
`trainer`, `ci`, `training_utils`, `recipe`, `hardware`, `deployment`,
`ray`, `worker`, `single_controller`, `misc`, `perf`, `model`, `algo`,
`env`, `tool`, `ckpt`, `doc`, `data`
- If this PR involves multiple modules, separate them with `,` like
`[megatron, fsdp, doc]`
- `{type}` is in `feat`, `fix`, `refactor`, `chore`, `test`
- If this PR breaks any API (CLI arguments, config, function signature,
etc.), add `[BREAKING]` to the beginning of the title.
- Example: `[BREAKING][fsdp, megatron] feat: dynamic batching`
### Test
Tested with [latest
transformers](6e50a8afb2
)
<img width="2448" height="540" alt="image"
src="https://github.com/user-attachments/assets/06d40f40-572c-4454-8e08-115857f61f21"
/>
<img width="2796" height="1394" alt="image"
src="https://github.com/user-attachments/assets/17489b9c-e376-46e3-80d8-71106d304077"
/>
<img width="2098" height="744" alt="image"
src="https://github.com/user-attachments/assets/8c7f736d-bf09-4ba9-9cf4-0d56e367c526"
/>
### API and Usage Example
> Demonstrate how the API changes if any, and provide usage example(s)
if possible.
```python
# Add code snippet or script demonstrating how to use this
```
### Design & Code Changes
#### ⚠️ Breaking
We adopt a new format for Qwen2VL's position ids: (4, batch size, seq
len)
Assuming a vision position ids (mrope) has a shape of (3, batch size,
seq len) and a text position ids (normal rope) has a shape of (1, batch
size, seq len), we concatenate both to obtain the final position ids.
This aligns with the implementation in the Transformers >= 4.54.0 🤗
https://github.com/huggingface/transformers/blob/v4.54.0/src/transformers/models/qwen2_vl/modeling_qwen2_vl.py#L1469
#### 🎤 New
We have refactored the Qwen2VL and Qwen2.5VL patches, supporting
no-image input for FSDP by introducing fake ViT inputs. We have also
removed some redundant code for better maintainability.
#### 🚨 Changes
We move the ulysses logic into the attention function. So the position
ids will be scattered before the language model part.
### Checklist Before Submitting
> [!IMPORTANT]
> Please check all the following items before requesting a review,
otherwise the reviewer might deprioritize this PR for review.
- [x] Read the [Contribute
Guide](https://github.com/volcengine/verl/blob/main/CONTRIBUTING.md).
- [x] Apply [pre-commit
checks](https://github.com/volcengine/verl/blob/main/CONTRIBUTING.md#code-linting-and-formatting):
`pre-commit install && pre-commit run --all-files --show-diff-on-failure
--color=always`
- [ ] Add / Update [the
documentation](https://github.com/volcengine/verl/tree/main/docs).
- [x] Add unit or end-to-end test(s) to [the CI
workflow](https://github.com/volcengine/verl/tree/main/.github/workflows)
to cover all the code. If not feasible, explain why: ...
- [x] Once your PR is ready for CI, send a message in [the `ci-request`
channel](https://verl-project.slack.com/archives/C091TCESWB1) in [the
`verl` Slack
workspace](https://join.slack.com/t/verl-project/shared_invite/zt-3855yhg8g-CTkqXu~hKojPCmo7k_yXTQ).
(If not accessible, please try [the Feishu group
(飞书群)](https://applink.larkoffice.com/client/chat/chatter/add_by_link?link_token=772jd4f1-cd91-441e-a820-498c6614126a).)
48 lines
2.1 KiB
Bash
48 lines
2.1 KiB
Bash
set -x
|
|
ENGINE=${1:-vllm}
|
|
|
|
python3 -m verl.trainer.main_ppo \
|
|
algorithm.adv_estimator=grpo \
|
|
data.train_files=$HOME/data/geo3k/train.parquet \
|
|
data.val_files=$HOME/data/geo3k/test.parquet \
|
|
data.train_batch_size=512 \
|
|
data.max_prompt_length=1024 \
|
|
data.max_response_length=2048 \
|
|
data.filter_overlong_prompts=True \
|
|
data.truncation='error' \
|
|
data.image_key=images \
|
|
actor_rollout_ref.model.path=Qwen/Qwen2.5-VL-7B-Instruct \
|
|
actor_rollout_ref.actor.optim.lr=1e-6 \
|
|
actor_rollout_ref.model.use_remove_padding=True \
|
|
actor_rollout_ref.model.use_fused_kernels=True \
|
|
actor_rollout_ref.actor.ppo_mini_batch_size=128 \
|
|
actor_rollout_ref.actor.ppo_micro_batch_size_per_gpu=10 \
|
|
actor_rollout_ref.actor.use_kl_loss=True \
|
|
actor_rollout_ref.actor.kl_loss_coef=0.01 \
|
|
actor_rollout_ref.actor.kl_loss_type=low_var_kl \
|
|
actor_rollout_ref.actor.entropy_coeff=0 \
|
|
actor_rollout_ref.model.enable_gradient_checkpointing=True \
|
|
actor_rollout_ref.actor.fsdp_config.param_offload=False \
|
|
actor_rollout_ref.actor.fsdp_config.optimizer_offload=False \
|
|
actor_rollout_ref.rollout.log_prob_micro_batch_size_per_gpu=20 \
|
|
actor_rollout_ref.rollout.tensor_model_parallel_size=2 \
|
|
actor_rollout_ref.rollout.name=$ENGINE \
|
|
+actor_rollout_ref.rollout.engine_kwargs.vllm.disable_mm_preprocessor_cache=True \
|
|
actor_rollout_ref.rollout.gpu_memory_utilization=0.6 \
|
|
actor_rollout_ref.rollout.enable_chunked_prefill=False \
|
|
actor_rollout_ref.rollout.enforce_eager=False \
|
|
actor_rollout_ref.rollout.free_cache_engine=True \
|
|
actor_rollout_ref.rollout.n=5 \
|
|
actor_rollout_ref.ref.log_prob_micro_batch_size_per_gpu=20 \
|
|
actor_rollout_ref.ref.fsdp_config.param_offload=True \
|
|
algorithm.use_kl_in_reward=False \
|
|
trainer.critic_warmup=0 \
|
|
trainer.logger='["console","wandb"]' \
|
|
trainer.project_name='verl_grpo_example_geo3k' \
|
|
trainer.experiment_name='qwen2_5_vl_7b_function_rm' \
|
|
trainer.n_gpus_per_node=8 \
|
|
trainer.nnodes=1 \
|
|
trainer.save_freq=20 \
|
|
trainer.test_freq=5 \
|
|
trainer.total_epochs=15 $@
|