Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions examples/qwen2.5-7B-agentic_megatron/agentic_val_webshop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,14 +143,14 @@ train_env_manager:
format_penalty: -0.05
num_env_groups: 8
group_size: 8
max_env_num_per_worker: 4
max_env_num_per_worker: 1 # The max_env_num_per_worker must be set to 1 to avoid conflicts with the webshop simple server.
tags: [WebShopEnv]
num_groups_partition: [8] # If not set, all env names divide nums equally. Under the same group, the env config and env seed (prompt) are equal in each generation

val_env_manager:
num_env_groups: 64
group_size: 1 # should be set to 1 because val temperature is set to 0 and same prompt leads to same output
max_env_num_per_worker: 4
max_env_num_per_worker: 1 # The max_env_num_per_worker must be set to 1 to avoid conflicts with the webshop simple server.
tags: [WebShopEnv]
num_groups_partition: [64] # TODO: If not set, all env names divide nums equally. Under the same group, the env config and env seed (prompt) are equal in each generation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,14 +144,14 @@ train_env_manager:
format_penalty: -0.05
num_env_groups: 8
group_size: 8
max_env_num_per_worker: 4
max_env_num_per_worker: 1 # The max_env_num_per_worker must be set to 1 to avoid conflicts with the webshop simple server.
tags: [WebShopEnv]
num_groups_partition: [8] # If not set, all env names divide nums equally. Under the same group, the env config and env seed (prompt) are equal in each generation

val_env_manager:
num_env_groups: 64
group_size: 1 # should be set to 1 because val temperature is set to 0 and same prompt leads to same output
max_env_num_per_worker: 4
max_env_num_per_worker: 1 # The max_env_num_per_worker must be set to 1 to avoid conflicts with the webshop simple server.
tags: [WebShopEnv]
num_groups_partition: [64] # TODO: If not set, all env names divide nums equally. Under the same group, the env config and env seed (prompt) are equal in each generation

Expand Down