Before the arm moves
Keep the hardware stop within reach for every run on this page, and clear the space around both arms.Preflight without motion
Reconnect to the deployment and let Servo observe and infer for ten seconds without sending anything to the arms:robot computer
deploy returns the deployment you kept, or starts it again if you stopped it. start returns the open session for this robot and instruction, or opens one. check runs the whole path except the last step and reports the guard it would use. The guard limits how far the first row of a new chunk may sit from the arm’s current, freshest observed pose, and a chunk beyond it ends the run instead of lunging.
guard is armed when the model and arm pair has a measured bracket, not armed when nobody has measured one, and supplied when you pass your own. When it is not armed, run check for a minute, read first_step_jump_max, and pass a bracket a little above it to run as max_jump. The bracket is in the action space’s own units, and a healthy run stays inside it.
The guard only checks the first row of each new chunk; every row sent is also held under max_relative_target, a continuous per-second clamp on how far one command may move from the arm’s last observed state. Each robot type ships a default; pass your own to run when you need it tighter.
Run a bounded episode
Run one episode, bounded by wall-clock time:robot computer
report.steps.
Bound by chunk count instead for a step count that stays fixed across robots or code changes:
robot computer
on_chunk to see each chunk’s round trip and server time as it arrives.
Every run is recorded to the path in report.episode: the exact frames and state the model saw, the chunks it returned, and per-chunk timing. On the robot computer, servo episode show --last summarizes the newest recording, and record=False skips recording a run.
Stop the deployment
Stop it from your computer, which also ends the session:your computer
You now have
- A
RunReportwithsteps,aborted,round_trip_ms, andboundary_gap_ms(each a percentile map). - A recorded episode at the printed path:
servo episode listshows it. - No deployment left running:
servo deployment listis empty.
Next
Keep your own loop
The two calls under
run, and a session that keeps its connection.Choose a model
Private buckets, revisions, and what the checkpoint expects.