[Question] I want my robot slow down. #2267
Unanswered
Holiclife-KTH
asked this question in
Q&A
Replies: 2 comments
-
Thank you for posting this. Will move the post into our Discussions section for the team to follow up. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi,
I also have the finger joint to be closed slighty at 0.2 to prevent itself from folding into itself in a weird way. If that doesn't work you may need to set the joint velocity values in the robot's .usd file as well. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'm training a UR5e equipped with a Robotiq 2F-85 gripper using RSL_RL.
However, I'm facing an issue where the manipulator moves too quickly.
I tried lowering the joint velocity limits, but doing so makes the robot's movement look unnatural.
What would be the best way to address this?
Should I modify the reward function?
I've included my current reward functions below.
"# action penalty
action_rate = RewTerm(func=mdp.action_rate_l2, weight=-1e-4)
joint_vel = RewTerm(
func=mdp.rewards_sweep_ur5e.joint_vel_l2,
weight=-1e-4,
params={"asset_cfg": SceneEntityCfg("robot")},
)
Beta Was this translation helpful? Give feedback.
All reactions