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
When I comment out this line of code "# torso_position[:, 2].view(-1, 1)," I find that the running effect is very different. How can I solve this problem?
Screencast.from.07-25-2024.02.08.14.PM.webm
The text was updated successfully, but these errors were encountered:
obs = torch.cat(
(
# torso_position[:, 2].view(-1, 1),
vel_loc,
angvel_loc * angular_velocity_scale,
normalize_angle(yaw).unsqueeze(-1),
normalize_angle(roll).unsqueeze(-1),
normalize_angle(angle_to_target).unsqueeze(-1),
up_proj.unsqueeze(-1),
heading_proj.unsqueeze(-1),
dof_pos_scaled,
dof_vel * dof_vel_scale,
sensor_force_torques.reshape(num_envs, -1) * contact_force_scale,
actions,
),
dim=-1,
)
When I comment out this line of code "# torso_position[:, 2].view(-1, 1)," I find that the running effect is very different. How can I solve this problem?
Screencast.from.07-25-2024.02.08.14.PM.webm
The text was updated successfully, but these errors were encountered: