Skip to content

Commit 4829115

Browse files
committed
Fix incorrect statement about default behavior
1 parent 43b2ad6 commit 4829115

1 file changed

Lines changed: 28 additions & 6 deletions

File tree

examples/SO100/README.md

Lines changed: 28 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ cp examples/SO100/modality.json examples/SO100/finish_sandwich_lerobot/izuluaga/
3131

3232
## Finetuning the Model
3333

34-
1. Run the shared finetune launcher directly, using absolute joint positions (feel free to experiment with relative positions):
34+
1. Run the shared finetune launcher directly, this will use relative actions by default for all axes except the gripper.
3535
```bash
3636
CUDA_VISIBLE_DEVICES=0 NUM_GPUS=1 uv run bash examples/finetune.sh \
3737
--base-model-path nvidia/GR00T-N1.7-3B \
@@ -74,7 +74,7 @@ uv sync
7474
uv pip install --no-deps -e ../../../../
7575
```
7676

77-
2. Start policy server from the repository root in a separate terminal:
77+
2. Start the policy server from a separate terminal.
7878
```bash
7979
cd ~/Isaac-GR00T
8080
uv run python gr00t/eval/run_gr00t_server.py \
@@ -86,11 +86,33 @@ uv run python gr00t/eval/run_gr00t_server.py \
8686
```bash
8787
# Update these to match the address and indicies assigned by your OS
8888
ROBOT_PORT=/dev/ttyACM2
89+
ROBOT_ID=orange_follower
8990
WRIST_CAM_IDX=2
9091
FRONT_CAM_IDX=6
92+
# Task specific prompt
93+
PROMPT="finish the ham cheese olives sandwich"
94+
9195
uv run --no-sync python eval_so100.py \
92-
--robot.type=so101_follower --robot.port=$ROBOT_PORT \
93-
--robot.id=orange_follower \
94-
--robot.cameras="{ wrist: {type: opencv, index_or_path: $WRIST_CAM_IDX, width: 640, height: 480, fps: 30}, front: {type: opencv, index_or_path: $FRONT_CAM_IDX, width: 640, height: 480, fps: 30}}" \
95-
--policy-host=localhost --policy-port=5555 --lang-instruction="finish the ham cheese olives sandwich"
96+
--robot.type=so101_follower \
97+
--robot.port=$ROBOT_PORT \
98+
--robot.id=$ROBOT_ID \
99+
--robot.cameras="{
100+
wrist: {
101+
type: opencv,
102+
index_or_path: $WRIST_CAM_IDX,
103+
width: 640,
104+
height: 480,
105+
fps: 30
106+
},
107+
front: {
108+
type: opencv,
109+
index_or_path: $FRONT_CAM_IDX,
110+
width: 640,
111+
height: 480,
112+
fps: 30
113+
}
114+
}" \
115+
--policy-host=localhost \
116+
--policy-port=5555 \
117+
--lang-instruction=$PROMPT
96118
```

0 commit comments

Comments
 (0)