Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
51d0505
update
xiuhu17 Apr 2, 2026
a36744b
update
xiuhu17 Apr 4, 2026
decb22e
update
xiuhu17 Apr 5, 2026
a5b2563
update
xiuhu17 Apr 5, 2026
ce8a1c6
update
xiuhu17 Apr 6, 2026
2501526
update
xiuhu17 Apr 9, 2026
2383916
update
xiuhu17 Apr 9, 2026
0f1639d
update
xiuhu17 Apr 10, 2026
1653e72
update
xiuhu17 Apr 10, 2026
2da9c4b
update
xiuhu17 Apr 10, 2026
3489663
update
xiuhu17 Apr 10, 2026
cd4d625
update
xiuhu17 Apr 10, 2026
2568512
update
xiuhu17 Apr 10, 2026
4f94d6e
update
xiuhu17 Apr 10, 2026
a478c69
update
xiuhu17 Apr 10, 2026
a943224
update
xiuhu17 Apr 11, 2026
6f7c371
update
xiuhu17 Apr 11, 2026
92ee51a
update
xiuhu17 Apr 11, 2026
6433805
update
xiuhu17 Apr 11, 2026
646cca7
update
xiuhu17 Apr 12, 2026
2e55a36
update
xiuhu17 Apr 12, 2026
d461bf1
update
xiuhu17 Apr 12, 2026
752d2c6
update
xiuhu17 Apr 12, 2026
3c6c419
update
xiuhu17 Apr 12, 2026
1ab9dc4
update
xiuhu17 Apr 13, 2026
cb9a6b6
update
xiuhu17 Apr 14, 2026
1d90b3f
update
xiuhu17 Apr 14, 2026
4c6d66f
update
xiuhu17 Apr 14, 2026
012c487
update
xiuhu17 Apr 14, 2026
8528f8e
update
xiuhu17 Apr 14, 2026
67f2e16
update
xiuhu17 Apr 14, 2026
f31c49d
update
xiuhu17 Apr 14, 2026
c2ef4f2
update
xiuhu17 Apr 14, 2026
c114f45
update
xiuhu17 Apr 14, 2026
5b684eb
update
xiuhu17 Apr 16, 2026
db93f08
update
xiuhu17 Apr 16, 2026
58e5c14
update
xiuhu17 Apr 19, 2026
f9d0295
update
xiuhu17 Apr 20, 2026
419f0c1
update
xiuhu17 Apr 20, 2026
d3ce4dc
update
xiuhu17 Apr 20, 2026
f107e8b
update
xiuhu17 Apr 23, 2026
6875dcd
update
xiuhu17 Apr 23, 2026
d61afbb
update
xiuhu17 Apr 23, 2026
9499487
update
xiuhu17 Apr 25, 2026
47d0da6
update
xiuhu17 Apr 28, 2026
d665342
update
xiuhu17 May 2, 2026
fd9263d
update
xiuhu17 May 2, 2026
0281720
update
xiuhu17 May 3, 2026
926ef7b
update
xiuhu17 May 4, 2026
89c881f
update
xiuhu17 May 4, 2026
5cc97ae
update
xiuhu17 May 4, 2026
abe9d6a
update
xiuhu17 May 6, 2026
6c3d969
update
xiuhu17 May 6, 2026
4ed2026
update
xiuhu17 May 6, 2026
ae91b7e
update
xiuhu17 May 8, 2026
b7996fa
update
xiuhu17 May 8, 2026
e623493
update
xiuhu17 May 8, 2026
c2e413c
update
xiuhu17 May 8, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 0 additions & 28 deletions examples/configs/grpo_math_1B_sglang.yaml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
defaults: ../../grpo_math_1B.yaml

grpo:
max_num_steps: 450
val_batch_size: 128

checkpointing:
checkpoint_dir: results/grpo-qwen2.5-math-1.5b-instruct-1n2g-fsdp2tp1-sglang

policy:
model_name: Qwen/Qwen2.5-Math-1.5B-Instruct
tokenizer:
name: Qwen/Qwen2.5-Math-1.5B-Instruct
dynamic_batching:
enabled: true
sequence_packing:
enabled: false
make_sequence_length_divisible_by: 1
generation:
backend: "sglang"
max_new_tokens: 512
sglang_cfg:
model_path: ${policy.model_name}
dtype: ${policy.precision}
context_length: 512
allow_auto_truncate: true
dp_size: 1
pp_size: 1
ep_size: 1
random_seed: 42
max_running_requests: null
mem_fraction_static: 0.6
skip_server_warmup: true
# Piecewise CUDA graph currently crashes with "illegal memory access"
# (likely torch 2.10 + sglang incompatibility). Keep disabled until upstream fix.
disable_piecewise_cuda_graph: true
disable_cuda_graph: false
# Fault tolerance (RolloutHealthMonitor). Off by default; when enabled,
# a daemon thread health-checks each engine and kills hung actors.
use_fault_tolerance: false
rollout_health_check_interval: 60
rollout_health_check_timeout: 60
rollout_health_check_first_wait: 60
sglang_server:
needs_offload: true
cpu_weight_backup: true
sglang_server_concurrency: 1024
pause_generation_mode: retract
num_gpus: 2
num_gpus_per_engine: 2
sglang_router: {}

data:
max_input_seq_length: 512

logger:
log_dir: logs/grpo-qwen2.5-math-1.5b-instruct-1n2g-fsdp2tp1-sglang
wandb_enabled: true
tensorboard_enabled: true
wandb:
project: nemo-rl
name: grpo-qwen2.5-math-1.5b-instruct-1n2g-fsdp2tp1-sglang

cluster:
gpus_per_node: 2
num_nodes: 1
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
defaults: ../../grpo_math_1B.yaml

grpo:
max_num_steps: 450
val_batch_size: 128

checkpointing:
checkpoint_dir: results/grpo-qwen2.5-math-1.5b-instruct-1n2g-fsdp2tp1-vllm

policy:
model_name: Qwen/Qwen2.5-Math-1.5B-Instruct
tokenizer:
name: Qwen/Qwen2.5-Math-1.5B-Instruct
dynamic_batching:
enabled: true
sequence_packing:
enabled: false
make_sequence_length_divisible_by: 1
generation:
max_new_tokens: 512
vllm_cfg:
max_model_len: 512
tensor_parallel_size: 2

data:
max_input_seq_length: 512

logger:
log_dir: logs/grpo-qwen2.5-math-1.5b-instruct-1n2g-fsdp2tp1-vllm
wandb_enabled: true
tensorboard_enabled: true
wandb:
project: nemo-rl
name: grpo-qwen2.5-math-1.5b-instruct-1n2g-fsdp2tp1-vllm

cluster:
gpus_per_node: 2
num_nodes: 1

This file was deleted.

52 changes: 0 additions & 52 deletions examples/configs/recipes/llm/grpo-qwen3-0.6b-1n8g-sglang.yaml

This file was deleted.

Loading
Loading