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
-`agent-llm-config`: the config name for the agent LLM. This should match the config name in config.toml. This is the LLM used by the agent (e.g. CodeActAgent).
36
41
-`env-llm-config`: the config name for the environment LLM. This should match the config name in config.toml. This is used by the chat bots (NPCs) and LLM-based evaluators.
37
42
-`outputs-path`: the path to save trajectories and evaluation results.
38
43
-`server-hostname`: the hostname of the server that hosts all the web services. It could be localhost if you are running the evaluation and services on the same machine. If the services are hosted on a remote machine, you must use the hostname of the remote machine rather than IP address.
39
44
-`version`: the version of the task images to use. Currently, the only supported version is 1.0.0.
45
+
-`start-percentile`: the start percentile of the task split, must be an integer between 0 to 99.
46
+
-`end-percentile`: the end percentile of the task split, must be an integer between 1 to 100 and larger than start-percentile.
40
47
41
-
The script is idempotent. If you run it again, it will resume from the last checkpoint. It would usually take a few days to finish evaluation.
48
+
The script is idempotent. If you run it again, it will resume from the last checkpoint. It would usually take 2 days to finish evaluation if you run the whole task set.
49
+
To speed up evaluation, you can use `start-percentile` and `end-percentile` to split the tasks for higher parallelism,
50
+
provided concurrent runs are **targeting different servers**.
42
51
43
52
Note: the script will automatically skip a task if it encounters an error. This usually happens when the OpenHands runtime dies due to some unexpected errors. This means even if the script finishes, it might not have evaluated all tasks. You can manually resume the evaluation by running the script again.
0 commit comments