-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add o1-mini + o3-mini configs * Add o1-mini + o1-mini to repro journal * remove duplicate o3-mini
- Loading branch information
1 parent
68fd4fd
commit 4ccbf41
Showing
5 changed files
with
47 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import os | ||
from pathlib import Path | ||
from agentlab.experiments.study import Study | ||
|
||
|
||
base_dir = "/home/toolkit/ui_copilot_results" | ||
|
||
exp_paths = [ | ||
"2025-01-31_22-08-34_genericagent-o3-mini-2025-01-31-on-workarena-l1", | ||
# '2025-02-02_01-53-45_genericagent-openai-o1-mini-2024-09-12-on-workarena-l1', | ||
"2025-02-02_01-55-04_genericagent-openai-o1-mini-2024-09-12-on-workarena-l1", | ||
] | ||
full_paths = [os.path.join(base_dir, exp_path) for exp_path in exp_paths] | ||
|
||
for full_path in full_paths: | ||
study = Study.load(Path(full_path)) | ||
|
||
study.append_to_journal(strict_reproducibility=False) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters