mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-05-20 21:50:20 +00:00
* Fix failing set_env test * Fix test failiing due to deprectation of env.seed * Adjust mean reward threshold in failing test * Fix her test failing due to rng * Change seed and revert reward threshold to 90 * Pin gym version * Make VecEnv compatible with gym seeding change * Revert change to VecEnv reset signature * Change subprocenv seed cmd to call reset instead * Fix type check * Add backward compat * Add `compat_gym_seed` helper * Add goal env checks in env_checker * Add docs on HER requirements for envs * Capture user warning in test with inverted box space * Update ale-py version * Fix randint * Allow noop_max to be zero * Update changelog * Update docker image * Update doc conda env and dockerfile * Custom envs should not have any warnings * Fix test for numpy >= 1.21 * Add check for vectorized compute reward * Bump to gym 0.24 * Fix gym default step docstring * Test downgrading gym * Revert "Test downgrading gym" This reverts commit 0072b77156c006ada8a1d6e26ce347ed85a83eeb. * Fix protobuf error * Fix in dependencies * Fix protobuf dep * Use newest version of cartpole * Update gym * Fix warning * Loosen required scipy version * Scipy no longer needed * Try gym 0.25 * Silence warnings from gym * Filter warnings during tests * Update doc * Update requirements * Add gym 26 compat in vec env * Fixes in envs and tests for gym 0.26+ * Enforce gym 0.26 api * format * Fix formatting * Fix dependencies * Fix syntax * Cleanup doc and warnings * Faster tests * Higher budget for HER perf test (revert prev change) * Fixes and update doc * Fix doc build * Fix breaking change * Fixes for rendering * Rename variables in monitor * update render method for gym 0.26 API backwards compatible (mode argument is allowed) while using the gym 0.26 API (render mode is determined at environment creation) * update tests and docs to new gym render API * undo removal of render modes metatadata check * set rgb_array as default render mode for gym.make * undo changes & raise warning if not 'rgb_array' * Fix type check * Remove recursion and fix type checking * Remove hacks for protobuf and gym 0.24 * Fix type annotations * reuse existing render_mode attribute * return tiled images for 'human' render mode * Allow to use opencv for human render, fix typos * Add warning when using non-zero start with Discrete (fixes #1197) * Fix type checking * Bug fixes and handle more cases * Throw proper warnings * Update test * Fix new metadata name * Ignore numpy warnings * Fixes in vec recorder * Global ignore * Filter local warning too * Monkey patch not needed for gym 26 * Add doc of VecEnv vs Gym API * Add render test * Fix return type * Update VecEnv vs Gym API doc * Fix for custom render mode * Fix return type * Fix type checking * check test env test_buffer * skip render check * check env test_dict_env * test_env test_gae * check envs in remaining tests * Update tests * Add warning for Discrete action space with non-zero (#1295) * Fix atari annotation * ignore get_action_meanings [attr-defined] * Fix mypy issues * Add patch for gym/gymnasium transition * Switch to gymnasium * Rely on signature instead of version * More patches * Type ignore because of https://github.com/Farama-Foundation/Gymnasium/pull/39 * Fix doc build * Fix pytype errors * Fix atari requirement * Update env checker due to change in dtype for Discrete * Fix type hint * Convert spaces for saved models * Ignore pytype * Remove gitlab CI * Disable pytype for convert space * Fix undefined info * Fix undefined info * Upgrade shimmy * Fix wrappers type annotation (need PR from Gymnasium) * Fix gymnasium dependency * Fix dependency declaration * Cap pygame version for python 3.7 * Point to master branch (v0.28.0) * Fix: use main not master branch * Rename done to terminated * Fix pygame dependency for python 3.7 * Rename gym to gymnasium * Update Gymnasium * Fix test * Fix tests * Forks don't have access to private variables * Fix linter warnings * Update read the doc env * Fix env checker for GoalEnv * Fix import * Update env checker (more info) and fix dtype * Use micromamab for Docker * Update dependencies * Clarify VecEnv doc * Fix Gymnasium version * Copy file only after mamba install * [ci skip] Update docker doc * Polish code * Reformat * Remove deprecated features * Ignore warning * Update doc * Update examples and changelog * Fix type annotation bundle (SAC, TD3, A2C, PPO, base class) (#1436) * Fix SAC type hints, improve DQN ones * Fix A2C and TD3 type hints * Fix PPO type hints * Fix on-policy type hints * Fix base class type annotation, do not use defaults * Update version * Disable mypy for python 3.7 * Rename Gym26StepReturn * Update continuous critic type annotation * Fix pytype complain --------- Co-authored-by: Carlos Luis <carlos.luisgonc@gmail.com> Co-authored-by: Quentin Gallouédec <45557362+qgallouedec@users.noreply.github.com> Co-authored-by: Thomas Lips <37955681+tlpss@users.noreply.github.com> Co-authored-by: tlips <thomas.lips@ugent.be> Co-authored-by: tlpss <thomas17.lips@gmail.com> Co-authored-by: Quentin GALLOUÉDEC <gallouedec.quentin@gmail.com>
240 lines
10 KiB
Python
240 lines
10 KiB
Python
import multiprocessing as mp
|
|
import warnings
|
|
from collections import OrderedDict
|
|
from typing import Any, Callable, List, Optional, Sequence, Tuple, Type, Union
|
|
|
|
import gymnasium as gym
|
|
import numpy as np
|
|
from gymnasium import spaces
|
|
|
|
from stable_baselines3.common.vec_env.base_vec_env import (
|
|
CloudpickleWrapper,
|
|
VecEnv,
|
|
VecEnvIndices,
|
|
VecEnvObs,
|
|
VecEnvStepReturn,
|
|
)
|
|
from stable_baselines3.common.vec_env.patch_gym import _patch_env
|
|
|
|
|
|
def _worker(
|
|
remote: mp.connection.Connection,
|
|
parent_remote: mp.connection.Connection,
|
|
env_fn_wrapper: CloudpickleWrapper,
|
|
) -> None:
|
|
# Import here to avoid a circular import
|
|
from stable_baselines3.common.env_util import is_wrapped
|
|
from stable_baselines3.common.utils import compat_gym_seed
|
|
|
|
parent_remote.close()
|
|
env = _patch_env(env_fn_wrapper.var())
|
|
reset_info = {}
|
|
while True:
|
|
try:
|
|
cmd, data = remote.recv()
|
|
if cmd == "step":
|
|
observation, reward, terminated, truncated, info = env.step(data)
|
|
# convert to SB3 VecEnv api
|
|
done = terminated or truncated
|
|
info["TimeLimit.truncated"] = truncated and not terminated
|
|
if done:
|
|
# save final observation where user can get it, then reset
|
|
info["terminal_observation"] = observation
|
|
observation, reset_info = env.reset()
|
|
remote.send((observation, reward, done, info, reset_info))
|
|
elif cmd == "seed":
|
|
remote.send(compat_gym_seed(env, seed=data))
|
|
elif cmd == "reset":
|
|
observation, reset_info = env.reset()
|
|
remote.send((observation, reset_info))
|
|
elif cmd == "render":
|
|
remote.send(env.render())
|
|
elif cmd == "close":
|
|
env.close()
|
|
remote.close()
|
|
break
|
|
elif cmd == "get_spaces":
|
|
remote.send((env.observation_space, env.action_space))
|
|
elif cmd == "env_method":
|
|
method = getattr(env, data[0])
|
|
remote.send(method(*data[1], **data[2]))
|
|
elif cmd == "get_attr":
|
|
remote.send(getattr(env, data))
|
|
elif cmd == "set_attr":
|
|
remote.send(setattr(env, data[0], data[1]))
|
|
elif cmd == "is_wrapped":
|
|
remote.send(is_wrapped(env, data))
|
|
else:
|
|
raise NotImplementedError(f"`{cmd}` is not implemented in the worker")
|
|
except EOFError:
|
|
break
|
|
|
|
|
|
class SubprocVecEnv(VecEnv):
|
|
"""
|
|
Creates a multiprocess vectorized wrapper for multiple environments, distributing each environment to its own
|
|
process, allowing significant speed up when the environment is computationally complex.
|
|
|
|
For performance reasons, if your environment is not IO bound, the number of environments should not exceed the
|
|
number of logical cores on your CPU.
|
|
|
|
.. warning::
|
|
|
|
Only 'forkserver' and 'spawn' start methods are thread-safe,
|
|
which is important when TensorFlow sessions or other non thread-safe
|
|
libraries are used in the parent (see issue #217). However, compared to
|
|
'fork' they incur a small start-up cost and have restrictions on
|
|
global variables. With those methods, users must wrap the code in an
|
|
``if __name__ == "__main__":`` block.
|
|
For more information, see the multiprocessing documentation.
|
|
|
|
:param env_fns: Environments to run in subprocesses
|
|
:param start_method: method used to start the subprocesses.
|
|
Must be one of the methods returned by multiprocessing.get_all_start_methods().
|
|
Defaults to 'forkserver' on available platforms, and 'spawn' otherwise.
|
|
"""
|
|
|
|
def __init__(self, env_fns: List[Callable[[], gym.Env]], start_method: Optional[str] = None):
|
|
self.waiting = False
|
|
self.closed = False
|
|
n_envs = len(env_fns)
|
|
|
|
if start_method is None:
|
|
# Fork is not a thread safe method (see issue #217)
|
|
# but is more user friendly (does not require to wrap the code in
|
|
# a `if __name__ == "__main__":`)
|
|
forkserver_available = "forkserver" in mp.get_all_start_methods()
|
|
start_method = "forkserver" if forkserver_available else "spawn"
|
|
ctx = mp.get_context(start_method)
|
|
|
|
self.remotes, self.work_remotes = zip(*[ctx.Pipe() for _ in range(n_envs)])
|
|
self.processes = []
|
|
for work_remote, remote, env_fn in zip(self.work_remotes, self.remotes, env_fns):
|
|
args = (work_remote, remote, CloudpickleWrapper(env_fn))
|
|
# daemon=True: if the main process crashes, we should not cause things to hang
|
|
process = ctx.Process(target=_worker, args=args, daemon=True) # pytype:disable=attribute-error
|
|
process.start()
|
|
self.processes.append(process)
|
|
work_remote.close()
|
|
|
|
self.remotes[0].send(("get_spaces", None))
|
|
observation_space, action_space = self.remotes[0].recv()
|
|
|
|
self.remotes[0].send(("get_attr", "render_mode"))
|
|
render_mode = self.remotes[0].recv()
|
|
VecEnv.__init__(self, len(env_fns), observation_space, action_space, render_mode)
|
|
|
|
def step_async(self, actions: np.ndarray) -> None:
|
|
for remote, action in zip(self.remotes, actions):
|
|
remote.send(("step", action))
|
|
self.waiting = True
|
|
|
|
def step_wait(self) -> VecEnvStepReturn:
|
|
results = [remote.recv() for remote in self.remotes]
|
|
self.waiting = False
|
|
obs, rews, dones, infos, self.reset_infos = zip(*results)
|
|
return _flatten_obs(obs, self.observation_space), np.stack(rews), np.stack(dones), infos
|
|
|
|
def seed(self, seed: Optional[int] = None) -> List[Union[None, int]]:
|
|
if seed is None:
|
|
seed = np.random.randint(0, 2**32 - 1)
|
|
for idx, remote in enumerate(self.remotes):
|
|
remote.send(("seed", seed + idx))
|
|
return [remote.recv() for remote in self.remotes]
|
|
|
|
def reset(self) -> VecEnvObs:
|
|
for remote in self.remotes:
|
|
remote.send(("reset", None))
|
|
results = [remote.recv() for remote in self.remotes]
|
|
obs, self.reset_infos = zip(*results)
|
|
return _flatten_obs(obs, self.observation_space)
|
|
|
|
def close(self) -> None:
|
|
if self.closed:
|
|
return
|
|
if self.waiting:
|
|
for remote in self.remotes:
|
|
remote.recv()
|
|
for remote in self.remotes:
|
|
remote.send(("close", None))
|
|
for process in self.processes:
|
|
process.join()
|
|
self.closed = True
|
|
|
|
def get_images(self) -> Sequence[Optional[np.ndarray]]:
|
|
if self.render_mode != "rgb_array":
|
|
warnings.warn(
|
|
f"The render mode is {self.render_mode}, but this method assumes it is `rgb_array` to obtain images."
|
|
)
|
|
return [None for _ in self.remotes]
|
|
for pipe in self.remotes:
|
|
# gather render return from subprocesses
|
|
pipe.send(("render", None))
|
|
outputs = [pipe.recv() for pipe in self.remotes]
|
|
return outputs
|
|
|
|
def get_attr(self, attr_name: str, indices: VecEnvIndices = None) -> List[Any]:
|
|
"""Return attribute from vectorized environment (see base class)."""
|
|
target_remotes = self._get_target_remotes(indices)
|
|
for remote in target_remotes:
|
|
remote.send(("get_attr", attr_name))
|
|
return [remote.recv() for remote in target_remotes]
|
|
|
|
def set_attr(self, attr_name: str, value: Any, indices: VecEnvIndices = None) -> None:
|
|
"""Set attribute inside vectorized environments (see base class)."""
|
|
target_remotes = self._get_target_remotes(indices)
|
|
for remote in target_remotes:
|
|
remote.send(("set_attr", (attr_name, value)))
|
|
for remote in target_remotes:
|
|
remote.recv()
|
|
|
|
def env_method(self, method_name: str, *method_args, indices: VecEnvIndices = None, **method_kwargs) -> List[Any]:
|
|
"""Call instance methods of vectorized environments."""
|
|
target_remotes = self._get_target_remotes(indices)
|
|
for remote in target_remotes:
|
|
remote.send(("env_method", (method_name, method_args, method_kwargs)))
|
|
return [remote.recv() for remote in target_remotes]
|
|
|
|
def env_is_wrapped(self, wrapper_class: Type[gym.Wrapper], indices: VecEnvIndices = None) -> List[bool]:
|
|
"""Check if worker environments are wrapped with a given wrapper"""
|
|
target_remotes = self._get_target_remotes(indices)
|
|
for remote in target_remotes:
|
|
remote.send(("is_wrapped", wrapper_class))
|
|
return [remote.recv() for remote in target_remotes]
|
|
|
|
def _get_target_remotes(self, indices: VecEnvIndices) -> List[Any]:
|
|
"""
|
|
Get the connection object needed to communicate with the wanted
|
|
envs that are in subprocesses.
|
|
|
|
:param indices: refers to indices of envs.
|
|
:return: Connection object to communicate between processes.
|
|
"""
|
|
indices = self._get_indices(indices)
|
|
return [self.remotes[i] for i in indices]
|
|
|
|
|
|
def _flatten_obs(obs: Union[List[VecEnvObs], Tuple[VecEnvObs]], space: spaces.Space) -> VecEnvObs:
|
|
"""
|
|
Flatten observations, depending on the observation space.
|
|
|
|
:param obs: observations.
|
|
A list or tuple of observations, one per environment.
|
|
Each environment observation may be a NumPy array, or a dict or tuple of NumPy arrays.
|
|
:return: flattened observations.
|
|
A flattened NumPy array or an OrderedDict or tuple of flattened numpy arrays.
|
|
Each NumPy array has the environment index as its first axis.
|
|
"""
|
|
assert isinstance(obs, (list, tuple)), "expected list or tuple of observations per environment"
|
|
assert len(obs) > 0, "need observations from at least one environment"
|
|
|
|
if isinstance(space, spaces.Dict):
|
|
assert isinstance(space.spaces, OrderedDict), "Dict space must have ordered subspaces"
|
|
assert isinstance(obs[0], dict), "non-dict observation for environment with Dict observation space"
|
|
return OrderedDict([(k, np.stack([o[k] for o in obs])) for k in space.spaces.keys()])
|
|
elif isinstance(space, spaces.Tuple):
|
|
assert isinstance(obs[0], tuple), "non-tuple observation for environment with Tuple observation space"
|
|
obs_len = len(space.spaces)
|
|
return tuple(np.stack([o[i] for o in obs]) for i in range(obs_len))
|
|
else:
|
|
return np.stack(obs)
|