Skip to content

Commit 2283983

Browse files
Saba9claude
andcommitted
Fix undefined variable in agent_runner after enumerate removal
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 2e1aee9 commit 2283983

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

autonomous-experiments/test_harness/agent_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ def experiment_multi_objective(project):
349349
commands_issued = 0
350350

351351
for cfg in configs:
352-
run_name = f"multi-{i}-d{cfg['depth']}-lr{cfg['lr']}"
352+
run_name = f"multi-d{cfg['depth']}-lr{cfg['lr']}-bs{cfg['batch_size']}"
353353
run_training(project, run_name, steps=300, seed=42, **cfg)
354354

355355
runs = get_runs(project)

tests/e2e-local/test_watchers.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
from trackio.watchers import MetricWatcher, WatcherManager
32

43

0 commit comments

Comments
 (0)