Skip to content

Commit ecf2bb7

Browse files
authored
fixing typo from 'teloperation' to 'teleoperation' (huggingface#566)
1 parent ff7e2c2 commit ecf2bb7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/9_use_aloha.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ python lerobot/scripts/control_robot.py teleoperate \
5656
--robot-overrides max_relative_target=5
5757
```
5858

59-
By adding `--robot-overrides max_relative_target=5`, we override the default value for `max_relative_target` defined in `lerobot/configs/robot/aloha.yaml`. It is expected to be `5` to limit the magnitude of the movement for more safety, but the teloperation won't be smooth. When you feel confident, you can disable this limit by adding `--robot-overrides max_relative_target=null` to the command line:
59+
By adding `--robot-overrides max_relative_target=5`, we override the default value for `max_relative_target` defined in `lerobot/configs/robot/aloha.yaml`. It is expected to be `5` to limit the magnitude of the movement for more safety, but the teleoperation won't be smooth. When you feel confident, you can disable this limit by adding `--robot-overrides max_relative_target=null` to the command line:
6060
```bash
6161
python lerobot/scripts/control_robot.py teleoperate \
6262
--robot-path lerobot/configs/robot/aloha.yaml \

lerobot/common/robot_devices/control_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def init_policy(pretrained_policy_name_or_path, policy_overrides):
184184
def warmup_record(
185185
robot,
186186
events,
187-
enable_teloperation,
187+
enable_teleoperation,
188188
warmup_time_s,
189189
display_cameras,
190190
fps,
@@ -195,7 +195,7 @@ def warmup_record(
195195
display_cameras=display_cameras,
196196
events=events,
197197
fps=fps,
198-
teleoperate=enable_teloperation,
198+
teleoperate=enable_teleoperation,
199199
)
200200

201201

0 commit comments

Comments
 (0)