We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39c13e8 commit 5f0f8f5Copy full SHA for 5f0f8f5
06_gpu_and_ml/reinforcement-learning/grpo_verl.py
@@ -32,10 +32,10 @@
32
33
VERL_REPO_PATH: Path = Path("/root/verl")
34
image = (
35
- modal.Image.from_registry("verlai/verl:app-verl0.4-vllm0.8.5-mcore0.12.1")
+ modal.Image.from_registry("verlai/verl:app-verl0.5-vllm0.10.0-mcore0.13.0-te2.2")
36
.apt_install("git")
37
- .run_commands(f"git clone https://github.com/volcengine/verl {VERL_REPO_PATH}")
38
- .pip_install("verl[vllm]==0.4.1")
+ .run_commands(f"git clone https://github.com/volcengine/verl --branch v0.5.0 {VERL_REPO_PATH}")
+ .pip_install(f"{VERL_REPO_PATH}[vllm]", extra_options="--no-deps")
39
)
40
41
# ## Defining the dataset
0 commit comments