Replies: 9 comments 2 replies
|
The network architecture is simple. |
|
我也遇到这个问题,可能是什么原因? |
This Project observations:["commands,"ang_vel","gravity_vec","dof_pos","dof_vel","actions"], I use this observations to train in isaacgym.When i using the train data sim2sim, there is a error,mat1 and mat2 shapes connot be multiplied(1x270 and 45x512).I guess isthe observations_history:[5,4,3,2,1,0], when i delete observations_history, there is no error, but the robot cannot work.So, what does observations_history meaning? How can i solve this problem? |
|
Same. I trained in Himloco and checked everything. The standup state works, but failed when switch to rl state. The policy is robust enough to be deployed in the real robot, but failed in gazebo, which is really confusing. |
|
Try changing the ovservations order.observations:["commands","ang_vel","gravity_vec","dof_pos","dof_vel","actions"] to ["ang_vel","gravity_vec","commands","dof_pos","dof_vel","actions"]. |
|
My training obs order is ["commands","ang_vel","gravity_vec","dof_pos","dof_vel","actions"], as well as rechecked the observations_history order. In fact, I use the same robot.py code in Isaac Gym to train a policy on Go2 and successfully deployed on Go2 in rl_sar, but when it comes to Lite3, it failed. |
can you show me the env.py code. from legged_gym.envs.base.legged_robot import LeggedRobot from isaacgym.torch_utils import * class Go2Robot(LeggedRobot): |
|
My problem ends up to the mismatch in Joint mapping sequence. This bug have been fixed in the newly published V3.1.0, so you can update the code and check whether problems still exist. |
I don't know how to train go2 with observations_history in UNITREE_RL_GYM .There are no observations_historys. So I need the env.py to learn how to improve my model. |
Uh oh!
There was an error while loading. Please reload this page.
Question
Hi all,
I'm encountering a sim2sim transfer issue. I've trained multiple policies in a custom lab simulation environment where all of them perform well. However, when transferring to Gazebo, the robot fails to even stand up.
I’ve already checked:
The scaling factors
The controller execution order
The observation list
The torque computation logic
And so on
Everything seems correct, but the issue still persists.
Does anyone know what else I could try or check to resolve this problem?
Thanks in advance!
All reactions