openai / gym

A toolkit for developing and comparing reinforcement learning algorithms.
https://www.gymlibrary.dev
Other
34.2k stars 8.58k forks source link

[Question] MUJOCO environment info ERROR in the gym documentation website #3270

Open ZhaoRunyi opened 2 months ago

ZhaoRunyi commented 2 months ago

Hi, I found several environment errors on the gym official website, take hale_cheetah https://www.gymlibrary.dev/environments/mujoco/half_cheetah/ as an example:

screenshot-2024-04-30 15-15-57

The correspondence between entries in the table is totally wrong. For instance, the Num=4 line claims that the corresponding observation means Observation=velocity of the tip along the x-axis, while its corresponding Name(in corresponding XML file)=bfoot other than rootx, and the Unit=angle(rad) other than velocity(m/s)

I found such error also appears in the new gymnasium website https://gymnasium.farama.org/environments/mujoco/half_cheetah/, and I want to know whats the real meaning of Num=(env.data.qpos.size)-1 in all kinds of MUJOCO environment. I'd really appreciate it if you fix this and answer my question fast.

pseudo-rnd-thoughts commented 2 months ago

This is fixed in the updated version of the website - https://gymnasium.farama.org/main/environments/mujoco/half_cheetah/

ZhaoRunyi commented 2 months ago

Roger that, thanks.