We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ec4eba commit 2306defCopy full SHA for 2306def
README.md
@@ -183,7 +183,14 @@ The class [`ExpResult`](https://github.com/ServiceNow/BrowserGym/blob/da26a5849d
183
184
```python
185
from agentlab.analyze import inspect_results
186
+
187
+# load the summary of all experiments of the study in a dataframe
188
result_df = inspect_results.load_result_df("path/to/your/study")
189
190
+# load the detailed results of the 1st experiment
191
+exp_result = bgym.ExpResult(result_df["exp_dir"][0])
192
+step_0_screenshot = exp_result.screenshots[0]
193
+step_0_action = exp_result.steps_info[0].action
194
```
195
196
0 commit comments