pendulum-v0环境
>>> from gym import envs
>>> print(envs.registry.all())
state: theta, thetadot thetadot 是啥?
observation : np.cos(theta), np.sin(theta), thetadot
theta是角度。
thetadot 是角速度。
>>> from gym import envs
>>> print(envs.registry.all())
state: theta, thetadot thetadot 是啥?
observation : np.cos(theta), np.sin(theta), thetadot
theta是角度。
thetadot 是角速度。