mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2026-01-29 22:57:15 +00:00
* Fixing Warning issue Fixing an issue causing a Warning message to pop because of conversion from python standard float64 to np.float32 * car_racing.py Warning Fix Fixed a bug generating a warning with conversion from standard `float 64` to `numpy float 32`. * Fixing Warning issue Fixed a bug generating a warning with conversion from standard `float 64` to `numpy float 32`. * Fixing Warning issue Fixed a bug generating a warning with conversion from standard `float 64` to `numpy float 32`. * bracket missing * Bracket misplaced
Envs
These are the core integrated environments. Note that we may later
restructure any of the files, but will keep the environments available
at the relevant package's top-level. So for example, you should access
AntEnv as follows:
# Will be supported in future releases
from gym.envs import mujoco
mujoco.AntEnv
Rather than:
# May break in future releases
from gym.envs.mujoco import ant
ant.AntEnv