Replies: 1 comment
-
Thank you for posting this. I'll move your question to our Discussions section for follow up. Here is a summary of ideas to consider. When adapting the Isaac-Lift-Cube-Franka-V0 task for a UR5 with a Robotique gripper and replacing the cube with a cylinder, the issue of the manipulator hovering over the cylinder and never lifting it—despite extended training—suggests there are underlying simulation or RL pipeline considerations specific to the geometry and physical properties of the cylinder. Key Troubleshooting Steps1. Grasping & Contact Surface
2. Reward Structure Adaptations
Example Reward (pseudo Python): # Add reward for stable upright orientation
upright_bonus = float(abs(object_orientation.z) > 0.95)
reward += upright_bonus * 0.2 3. Terminal Conditions
Example: # Terminal if orientation from Z axis drops below threshold
terminal = abs(object_orientation.z) < 0.5 4. Observation & Action Space Check
5. Curriculum Learning for Complex Geometries
6. Testing with Manual Actions
Recommended Steps
|
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.
-
Question
I modified Isaac-Lift-Cube-Franka-V0 task and replaced Franka with a UR5 with Robotique gripper. The results were good and the manipulator was able to lift the cube without any problems after training for 1500 epochs.
Next, I wanted to replace the cube with a cylinder. Despite training for 3000 epochs, the manipulator never lifts the cylinder and just keeps hovering over it. During the entire duration of training, of training, the cylinder is never lifted up.
Here is the code:
The only thing I changed from the cube task is that, the minimum heigh is increased (to compensate for the height of the cylinder)
And I have added a terminal condition in case the cylinder is knocked over:
I checked the collision mesh and everything seemed fine.
Here is the video of the trained model:
2025-08-15.14-31-05.mp4
Beta Was this translation helpful? Give feedback.
All reactions