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
Copy file name to clipboardExpand all lines: README.md
+19-19Lines changed: 19 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
-
# Agents
2
-
Agents is a python library that allows to separate next action prediction from policy networks from action execution in simulated or real environments.
1
+
# VLAgents
2
+
VLAgents is a python library that allows to separate next action prediction from policy networks from action execution in simulated or real environments.
3
3
It defines an interface for policies and for environments.
4
4
The policies run independent in their own virtual environment, potentially on a different computer, and can be queried for an action (in principle similar to the chatgpt api).
5
5
@@ -15,18 +15,18 @@ The work also includes a section on related engineering challenges regarding jax
To start an agents server use the `start-server` command where `kwargs` is a dictionary of the constructor arguments of the policy you want to start e.g.
138
+
To start an vlagents server use the `start-server` command where `kwargs` is a dictionary of the constructor arguments of the policy you want to start e.g.
python -m agents start-server openpi --port=8080 --host=localhost --kwargs='{"checkpoint_path": "<path to checkpoint>/{checkpoint_step}", "model_name": "pi0_rcs", "checkpoint_step": <checkpoint_step>}'# leave "{checkpoint_step}" it will be replaced, "model_name" is the key for the training config
147
+
python -m vlagents start-server openpi --port=8080 --host=localhost --kwargs='{"checkpoint_path": "<path to checkpoint>/{checkpoint_step}", "model_name": "pi0_rcs", "checkpoint_step": <checkpoint_step>}'# leave "{checkpoint_step}" it will be replaced, "model_name" is the key for the training config
0 commit comments