Skip to content

Commit abfded9

Browse files
committed
displaying exp names in ray dashboard
1 parent 4cacae3 commit abfded9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/agentlab/experiments/graph_execution_ray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def get_task(exp_arg: bgym.ExpArgs):
2828
dependency_tasks = [get_task(exp_args_map[dep_key]) for dep_key in exp_arg.depends_on]
2929

3030
# Create new task that depends on the dependency results
31-
task_map[exp_arg.exp_id] = run_exp.remote(
31+
task_map[exp_arg.exp_id] = run_exp.options(name=f"{exp_arg.exp_name}").remote(
3232
exp_arg, *dependency_tasks, avg_step_timeout=avg_step_timeout
3333
)
3434
return task_map[exp_arg.exp_id]

0 commit comments

Comments
 (0)