Files
Gymnasium/gym/envs
Vasco CC 8f6eb1ebd0 BUG FIX: Bipedal Walker; Car Racing; Guessing Game; Hotter Colder - Showing Warning (#2126)
* 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
2021-07-26 15:39:04 -04:00
..
2019-03-22 15:03:21 -07:00

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