Open
Conversation
xyao-nv
reviewed
Apr 1, 2026
xyao-nv
approved these changes
Apr 1, 2026
xyao-nv
reviewed
Apr 1, 2026
| # Uses FRANKA_PANDA_CFG (gravity on, stiffness=80, damping=4) instead of HIGH_PD. | ||
| _FRANKA_JOINT_POS_CFG = FRANKA_PANDA_CFG.copy() | ||
| _FRANKA_JOINT_POS_CFG.spawn.usd_path = ( | ||
| f"{ISAACLAB_STAGING_NUCLEUS_DIR}/Arena/assets/robot_library/franka_panda_hand_on_stand.usd" |
Collaborator
There was a problem hiding this comment.
Can it share the same path as above _FRANKA_CFG.spawn.usd_path
Collaborator
Author
There was a problem hiding this comment.
yes they share the same. updated to use _FRANKA_CFG.spawn.usd_path directly
xyao-nv
reviewed
Apr 1, 2026
xyao-nv
reviewed
Apr 1, 2026
xyao-nv
reviewed
Apr 1, 2026
| class FrankaEmbodiment(EmbodimentBase): | ||
| """Embodiment for the Franka robot.""" | ||
|
|
||
| name = "franka" |
Collaborator
There was a problem hiding this comment.
Not now. But can you add a TODO?
Rename it to franka_ik, add a base class where action_cfg is missing, and refactor child classes for both franka_joint_pos and franka_ik.
Collaborator
Author
There was a problem hiding this comment.
thanks, great suggestion! Added the todo comment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Update the lift object RL example to have a high success rate model
Detailed description
Existing lift object RL training model success rate is low (~30%), and the arm motion is unnatural.
Add a franka joint control embodiment for RL training to avoid the weird arm motion from IK version
Update the observation to include joint and target poses only
Fix a bug in the base rls policy so the target pose (task_obs in addition to policy) is passed to the actor/critic model
Fix a bug resulting ~0 success rate for parallel eval due to incorrect object/target frame in the success term
Update RL docs with latest models and commands
The RL model now gets 70~80% success rate within 1.5h