mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-31 18:12:53 +00:00
* Allows a new RNG to be generated with seed=-1 and updated env_checker to fix bug if environment doesn't use np_random in reset
* Revert "fixed `gym.vector.make` where the checker was being applied in the opposite case than was intended to (#2871)"
This reverts commit 519dfd9117
.
* Remove bad pushed commits
* Fixed spelling in core.py
* Pins pytest to the last py 3.6 version
* Allow Box automatic scalar shape
* Add test box and change default from () to (1,)
* update Box shape inference with more strict checking
* Update the box shape and add check on the custom Box shape
* Removed incorrect shape type and assert shape code
* Update the Box and associated tests
* Remove all folders and files from pyright exclude
* Revert issues
* Push RedTachyon code review
* Add Python Platform
* Remove play from pyright check
* Fixed CI issues
* remove mujoco env type hinting
* Fixed pixel observation test
* Added some new type hints
* Fixed CI errors
* Fixed CI errors
* Remove play.py from exlucde pyright
* Fixed pyright issues
60 lines
1.6 KiB
Python
60 lines
1.6 KiB
Python
import numpy as np
|
|
|
|
from gym import utils
|
|
from gym.envs.mujoco import mujoco_env
|
|
from gym.spaces import Box
|
|
|
|
|
|
class InvertedPendulumEnv(mujoco_env.MujocoEnv, utils.EzPickle):
|
|
metadata = {
|
|
"render_modes": [
|
|
"human",
|
|
"rgb_array",
|
|
"depth_array",
|
|
"single_rgb_array",
|
|
"single_depth_array",
|
|
],
|
|
"render_fps": 25,
|
|
}
|
|
|
|
def __init__(self, **kwargs):
|
|
utils.EzPickle.__init__(self)
|
|
observation_space = Box(low=-np.inf, high=np.inf, shape=(4,), dtype=np.float64)
|
|
mujoco_env.MujocoEnv.__init__(
|
|
self,
|
|
"inverted_pendulum.xml",
|
|
2,
|
|
mujoco_bindings="mujoco_py",
|
|
observation_space=observation_space,
|
|
**kwargs
|
|
)
|
|
|
|
def step(self, a):
|
|
reward = 1.0
|
|
self.do_simulation(a, self.frame_skip)
|
|
|
|
self.renderer.render_step()
|
|
|
|
ob = self._get_obs()
|
|
notdone = np.isfinite(ob).all() and (np.abs(ob[1]) <= 0.2)
|
|
done = not notdone
|
|
return ob, reward, done, {}
|
|
|
|
def reset_model(self):
|
|
qpos = self.init_qpos + self.np_random.uniform(
|
|
size=self.model.nq, low=-0.01, high=0.01
|
|
)
|
|
qvel = self.init_qvel + self.np_random.uniform(
|
|
size=self.model.nv, low=-0.01, high=0.01
|
|
)
|
|
self.set_state(qpos, qvel)
|
|
return self._get_obs()
|
|
|
|
def _get_obs(self):
|
|
return np.concatenate([self.sim.data.qpos, self.sim.data.qvel]).ravel()
|
|
|
|
def viewer_setup(self):
|
|
assert self.viewer is not None
|
|
self.viewer.cam.trackbodyid = 0
|
|
self.viewer.cam.distance = self.model.stat.extent
|