You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please provide the below information in addition to your issue:
cuRobo installation mode (choose from [python, isaac sim, docker python, docker isaac sim]):python
python version:3.10
Isaac Sim version (if using): None
Issue Details
Hi,I have encountered a very confusing problem when I import MotionGen,here is the description:
After I import MotionGen, I found that the encoding type has changed from utf-8 to ANSI-X3.4-1968,which means ASCII.then I found the func plan_grasp has three parameters grasp_approach_offset: Pose = Pose.from_list([0, 0, -0.15, 1, 0, 0, 0]), grasp_approach_path_constraint: Union[None, List[float]] = [0.1, 0.1, 0.1, 0.1, 0.1, 0.0], retract_offset: Pose = Pose.from_list([0, 0, -0.15, 1, 0, 0, 0]),
when these parameters exist, after importing this func, the encoding method will be changed.
that means once I call Pose.from_list() twice, the encoding type will change from default "utf-8" to “ascii", this is a very interesting and confusing phenomenon, and I am not sure if it is due to the setting of my personal environment or if it is a common phenomenon.If you could provide some help, I would be extremely grateful.
Best Wishs!
The text was updated successfully, but these errors were encountered:
If it’s not a bug, please use discussions: https://github.com/NVlabs/curobo/discussions
Please provide the below information in addition to your issue:
Issue Details
Hi,I have encountered a very confusing problem when I import MotionGen,here is the description:
After I import MotionGen, I found that the encoding type has changed from utf-8 to ANSI-X3.4-1968,which means ASCII.then I found the func plan_grasp has three parameters
grasp_approach_offset: Pose = Pose.from_list([0, 0, -0.15, 1, 0, 0, 0]), grasp_approach_path_constraint: Union[None, List[float]] = [0.1, 0.1, 0.1, 0.1, 0.1, 0.0], retract_offset: Pose = Pose.from_list([0, 0, -0.15, 1, 0, 0, 0]),
when these parameters exist, after importing this func, the encoding method will be changed.
Testing process:
and the output is
that means once I call Pose.from_list() twice, the encoding type will change from default "utf-8" to “ascii", this is a very interesting and confusing phenomenon, and I am not sure if it is due to the setting of my personal environment or if it is a common phenomenon.If you could provide some help, I would be extremely grateful.
Best Wishs!
The text was updated successfully, but these errors were encountered: