You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# under the same group, the env config and env seed are ensured to be equal
137
+
group_size: 8
138
+
tags: [SokobanSandbox]
139
+
num_groups_partition: [2] # 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
140
+
141
+
val_env_manager:
142
+
max_env_num_per_worker: 1
143
+
num_env_groups: 2
144
+
group_size: 1# should be set to 1 because val temperature is set to 0 and same prompt leads to same output
145
+
tags: [SimpleSokoban, LargerSokoban]
146
+
num_groups_partition: [1, 1] # 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
147
+
148
+
# Here, you can override variables defined in the imported envs. max_tokens_per_step: 128 in custom_env.SimpleSokoban, here replaced by 64
149
+
max_tokens_per_step: 64
150
+
151
+
custom_envs:
152
+
SimpleSokoban:
153
+
${custom_env.SimpleSokoban}
154
+
LargerSokoban:
155
+
${custom_env.LargerSokoban}
156
+
SokobanDifferentGridVocab:
157
+
${custom_env.SokobanDifferentGridVocab}
158
+
FrozenLake:
159
+
${custom_env.FrozenLake}
160
+
FrozenLakeThink:
161
+
${custom_env.FrozenLakeThink}
162
+
SokobanSandbox:
163
+
env_type: sokoban_sandbox
164
+
env_config:
165
+
base_url: 'http://localhost:8080'# change to your own service address if needed
166
+
max_steps: ${max_actions_per_traj}
167
+
max_tokens_per_step: ${max_tokens_per_step}
168
+
env_manager_cls: ${env_manager_cls}
169
+
use_thread_lock: true
170
+
agent_system_template: "You are an expert Sokoban-playing agent. Your only task is to output the next action like <answer>Right</answer>. Do not output any other text, reasoning, or explanations."
0 commit comments