From e925ef3f18ec297314380dde934a844e0fc768d4 Mon Sep 17 00:00:00 2001 From: Pepijn Date: Fri, 11 Jul 2025 13:39:54 +0200 Subject: [PATCH] tune --- .../so101_follower_torque/so101_follower_t.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/lerobot/robots/so101_follower_torque/so101_follower_t.py b/src/lerobot/robots/so101_follower_torque/so101_follower_t.py index 7c8882ab9..c8454b0df 100644 --- a/src/lerobot/robots/so101_follower_torque/so101_follower_t.py +++ b/src/lerobot/robots/so101_follower_torque/so101_follower_t.py @@ -52,12 +52,12 @@ class SO101FollowerT(Robot): # Control gains for bilateral teleoperation _KP_GAINS = { # Position gains [Nm/rad] - reduced for bilateral stability - "shoulder_pan": 5.0, + "shoulder_pan": 6.0, "shoulder_lift": 7.0, "elbow_flex": 7.0, - "wrist_flex": 4.0, - "wrist_roll": 3.0, - "gripper": 3.0, + "wrist_flex": 5.0, + "wrist_roll": 4.0, + "gripper": 4.0, } _KD_GAINS = { # Velocity gains [Nm⋅s/rad] - matched to position gains @@ -80,12 +80,12 @@ class SO101FollowerT(Robot): } _FRICTION_COULOMB = { # Coulomb friction [Nm] per joint - "shoulder_pan": 0.05, + "shoulder_pan": 0.15, "shoulder_lift": 0.25, "elbow_flex": 0.20, - "wrist_flex": 0.15, - "wrist_roll": 0.06, - "gripper": 0.04, + "wrist_flex": 0.20, + "wrist_roll": 0.15, + "gripper": 0.15, } def __init__(self, config: SO101FollowerTConfig):