# Goals of the PR The PR introduces **no changes to functionality**, apart from improved input validation here and there. The main goals are to reduce some complexity of the code, to improve types and IDE completions, and to extend documentation and block comments where appropriate. Because of the change to the trainer interfaces, many files are affected (more details below), but still the overall changes are "small" in a certain sense. ## Major Change 1 - BatchProtocol **TL;DR:** One can now annotate which fields the batch is expected to have on input params and which fields a returned batch has. Should be useful for reading the code. getting meaningful IDE support, and catching bugs with mypy. This annotation strategy will continue to work if Batch is replaced by TensorDict or by something else. **In more detail:** Batch itself has no fields and using it for annotations is of limited informational power. Batches with fields are not separate classes but instead instances of Batch directly, so there is no type that could be used for annotation. Fortunately, python `Protocol` is here for the rescue. With these changes we can now do things like ```python class ActionBatchProtocol(BatchProtocol): logits: Sequence[Union[tuple, torch.Tensor]] dist: torch.distributions.Distribution act: torch.Tensor state: Optional[torch.Tensor] class RolloutBatchProtocol(BatchProtocol): obs: torch.Tensor obs_next: torch.Tensor info: Dict[str, Any] rew: torch.Tensor terminated: torch.Tensor truncated: torch.Tensor class PGPolicy(BasePolicy): ... def forward( self, batch: RolloutBatchProtocol, state: Optional[Union[dict, Batch, np.ndarray]] = None, **kwargs: Any, ) -> ActionBatchProtocol: ``` The IDE and mypy are now very helpful in finding errors and in auto-completion, whereas before the tools couldn't assist in that at all. ## Major Change 2 - remove duplication in trainer package **TL;DR:** There was a lot of duplication between `BaseTrainer` and its subclasses. Even worse, it was almost-duplication. There was also interface fragmentation through things like `onpolicy_trainer`. Now this duplication is gone and all downstream code was adjusted. **In more detail:** Since this change affects a lot of code, I would like to explain why I thought it to be necessary. 1. The subclasses of `BaseTrainer` just duplicated docstrings and constructors. What's worse, they changed the order of args there, even turning some kwargs of BaseTrainer into args. They also had the arg `learning_type` which was passed as kwarg to the base class and was unused there. This made things difficult to maintain, and in fact some errors were already present in the duplicated docstrings. 2. The "functions" a la `onpolicy_trainer`, which just called the `OnpolicyTrainer.run`, not only introduced interface fragmentation but also completely obfuscated the docstring and interfaces. They themselves had no dosctring and the interface was just `*args, **kwargs`, which makes it impossible to understand what they do and which things can be passed without reading their implementation, then reading the docstring of the associated class, etc. Needless to say, mypy and IDEs provide no support with such functions. Nevertheless, they were used everywhere in the code-base. I didn't find the sacrifices in clarity and complexity justified just for the sake of not having to write `.run()` after instantiating a trainer. 3. The trainers are all very similar to each other. As for my application I needed a new trainer, I wanted to understand their structure. The similarity, however, was hard to discover since they were all in separate modules and there was so much duplication. I kept staring at the constructors for a while until I figured out that essentially no changes to the superclass were introduced. Now they are all in the same module and the similarities/differences between them are much easier to grasp (in my opinion) 4. Because of (1), I had to manually change and check a lot of code, which was very tedious and boring. This kind of work won't be necessary in the future, since now IDEs can be used for changing signatures, renaming args and kwargs, changing class names and so on. I have some more reasons, but maybe the above ones are convincing enough. ## Minor changes: improved input validation and types I added input validation for things like `state` and `action_scaling` (which only makes sense for continuous envs). After adding this, some tests failed to pass this validation. There I added `action_scaling=isinstance(env.action_space, Box)`, after which tests were green. I don't know why the tests were green before, since action scaling doesn't make sense for discrete actions. I guess some aspect was not tested and didn't crash. I also added Literal in some places, in particular for `action_bound_method`. Now it is no longer allowed to pass an empty string, instead one should pass `None`. Also here there is input validation with clear error messages. @Trinkle23897 The functional tests are green. I didn't want to fix the formatting, since it will change in the next PR that will solve #914 anyway. I also found a whole bunch of code in `docs/_static`, which I just deleted (shouldn't it be copied from the sources during docs build instead of committed?). I also haven't adjusted the documentation yet, which atm still mentions the trainers of the type `onpolicy_trainer(...)` instead of `OnpolicyTrainer(...).run()` ## Breaking Changes The adjustments to the trainer package introduce breaking changes as duplicated interfaces are deleted. However, it should be very easy for users to adjust to them --------- Co-authored-by: Michael Panchenko <m.panchenko@appliedai.de>
498 lines
18 KiB
Python
498 lines
18 KiB
Python
import warnings
|
||
from typing import Any, Callable, List, Optional, Tuple, Union
|
||
|
||
import gymnasium as gym
|
||
import numpy as np
|
||
import packaging
|
||
|
||
from tianshou.env.pettingzoo_env import PettingZooEnv
|
||
from tianshou.env.utils import ENV_TYPE, gym_new_venv_step_type
|
||
from tianshou.env.worker import (
|
||
DummyEnvWorker,
|
||
EnvWorker,
|
||
RayEnvWorker,
|
||
SubprocEnvWorker,
|
||
)
|
||
|
||
try:
|
||
import gym as old_gym
|
||
|
||
has_old_gym = True
|
||
except ImportError:
|
||
has_old_gym = False
|
||
|
||
GYM_RESERVED_KEYS = [
|
||
"metadata",
|
||
"reward_range",
|
||
"spec",
|
||
"action_space",
|
||
"observation_space",
|
||
]
|
||
|
||
|
||
def _patch_env_generator(fn: Callable[[], ENV_TYPE]) -> Callable[[], gym.Env]:
|
||
"""Takes an environment generator and patches it to return Gymnasium envs.
|
||
|
||
This function takes the environment generator `fn` and returns a patched
|
||
generator, without invoking `fn`. The original generator may return
|
||
Gymnasium or OpenAI Gym environments, but the patched generator wraps
|
||
the result of `fn` in a shimmy wrapper to convert it to Gymnasium,
|
||
if necessary.
|
||
"""
|
||
|
||
def patched() -> gym.Env:
|
||
assert callable(
|
||
fn
|
||
), "Env generators that are provided to vector environments must be callable."
|
||
|
||
env = fn()
|
||
if isinstance(env, (gym.Env, PettingZooEnv)):
|
||
return env
|
||
|
||
if not has_old_gym or not isinstance(env, old_gym.Env):
|
||
raise ValueError(
|
||
f"Environment generator returned a {type(env)}, not a Gymnasium "
|
||
f"environment. In this case, we expect OpenAI Gym to be "
|
||
f"installed and the environment to be an OpenAI Gym environment."
|
||
)
|
||
|
||
try:
|
||
import shimmy
|
||
except ImportError as e:
|
||
raise ImportError(
|
||
"Missing shimmy installation. You provided an environment generator "
|
||
"that returned an OpenAI Gym environment. "
|
||
"Tianshou has transitioned to using Gymnasium internally. "
|
||
"In order to use OpenAI Gym environments with tianshou, you need to "
|
||
"install shimmy (`pip install shimmy`)."
|
||
) from e
|
||
|
||
warnings.warn(
|
||
"You provided an environment generator that returned an OpenAI Gym "
|
||
"environment. We strongly recommend transitioning to Gymnasium "
|
||
"environments. "
|
||
"Tianshou is automatically wrapping your environments in a compatibility "
|
||
"layer, which could potentially cause issues."
|
||
)
|
||
|
||
gym_version = packaging.version.parse(old_gym.__version__)
|
||
if gym_version >= packaging.version.parse("0.26.0"):
|
||
return shimmy.GymV26CompatibilityV0(env=env)
|
||
elif gym_version >= packaging.version.parse("0.22.0"):
|
||
return shimmy.GymV22CompatibilityV0(env=env)
|
||
else:
|
||
raise Exception(
|
||
f"Found OpenAI Gym version {gym.__version__}. "
|
||
f"Tianshou only supports OpenAI Gym environments of version>=0.22.0"
|
||
)
|
||
|
||
return patched
|
||
|
||
|
||
class BaseVectorEnv:
|
||
"""Base class for vectorized environments.
|
||
|
||
Usage:
|
||
::
|
||
|
||
env_num = 8
|
||
envs = DummyVectorEnv([lambda: gym.make(task) for _ in range(env_num)])
|
||
assert len(envs) == env_num
|
||
|
||
It accepts a list of environment generators. In other words, an environment
|
||
generator ``efn`` of a specific task means that ``efn()`` returns the
|
||
environment of the given task, for example, ``gym.make(task)``.
|
||
|
||
All of the VectorEnv must inherit :class:`~tianshou.env.BaseVectorEnv`.
|
||
Here are some other usages:
|
||
::
|
||
|
||
envs.seed(2) # which is equal to the next line
|
||
envs.seed([2, 3, 4, 5, 6, 7, 8, 9]) # set specific seed for each env
|
||
obs = envs.reset() # reset all environments
|
||
obs = envs.reset([0, 5, 7]) # reset 3 specific environments
|
||
obs, rew, done, info = envs.step([1] * 8) # step synchronously
|
||
envs.render() # render all environments
|
||
envs.close() # close all environments
|
||
|
||
.. warning::
|
||
|
||
If you use your own environment, please make sure the ``seed`` method
|
||
is set up properly, e.g.,
|
||
::
|
||
|
||
def seed(self, seed):
|
||
np.random.seed(seed)
|
||
|
||
Otherwise, the outputs of these envs may be the same with each other.
|
||
|
||
:param env_fns: a list of callable envs, ``env_fns[i]()`` generates the i-th env.
|
||
:param worker_fn: a callable worker, ``worker_fn(env_fns[i])`` generates a
|
||
worker which contains the i-th env.
|
||
:param int wait_num: use in asynchronous simulation if the time cost of
|
||
``env.step`` varies with time and synchronously waiting for all
|
||
environments to finish a step is time-wasting. In that case, we can
|
||
return when ``wait_num`` environments finish a step and keep on
|
||
simulation in these environments. If ``None``, asynchronous simulation
|
||
is disabled; else, ``1 <= wait_num <= env_num``.
|
||
:param float timeout: use in asynchronous simulation same as above, in each
|
||
vectorized step it only deal with those environments spending time
|
||
within ``timeout`` seconds.
|
||
"""
|
||
|
||
def __init__(
|
||
self,
|
||
env_fns: List[Callable[[], ENV_TYPE]],
|
||
worker_fn: Callable[[Callable[[], gym.Env]], EnvWorker],
|
||
wait_num: Optional[int] = None,
|
||
timeout: Optional[float] = None,
|
||
) -> None:
|
||
self._env_fns = env_fns
|
||
# A VectorEnv contains a pool of EnvWorkers, which corresponds to
|
||
# interact with the given envs (one worker <-> one env).
|
||
self.workers = [worker_fn(_patch_env_generator(fn)) for fn in env_fns]
|
||
self.worker_class = type(self.workers[0])
|
||
assert issubclass(self.worker_class, EnvWorker)
|
||
assert all([isinstance(w, self.worker_class) for w in self.workers])
|
||
|
||
self.env_num = len(env_fns)
|
||
self.wait_num = wait_num or len(env_fns)
|
||
assert (
|
||
1 <= self.wait_num <= len(env_fns)
|
||
), f"wait_num should be in [1, {len(env_fns)}], but got {wait_num}"
|
||
self.timeout = timeout
|
||
assert (
|
||
self.timeout is None or self.timeout > 0
|
||
), f"timeout is {timeout}, it should be positive if provided!"
|
||
self.is_async = self.wait_num != len(env_fns) or timeout is not None
|
||
self.waiting_conn: List[EnvWorker] = []
|
||
# environments in self.ready_id is actually ready
|
||
# but environments in self.waiting_id are just waiting when checked,
|
||
# and they may be ready now, but this is not known until we check it
|
||
# in the step() function
|
||
self.waiting_id: List[int] = []
|
||
# all environments are ready in the beginning
|
||
self.ready_id = list(range(self.env_num))
|
||
self.is_closed = False
|
||
|
||
def _assert_is_not_closed(self) -> None:
|
||
assert (
|
||
not self.is_closed
|
||
), f"Methods of {self.__class__.__name__} cannot be called after close."
|
||
|
||
def __len__(self) -> int:
|
||
"""Return len(self), which is the number of environments."""
|
||
return self.env_num
|
||
|
||
def __getattribute__(self, key: str) -> Any:
|
||
"""Switch the attribute getter depending on the key.
|
||
|
||
Any class who inherits ``gym.Env`` will inherit some attributes, like
|
||
``action_space``. However, we would like the attribute lookup to go straight
|
||
into the worker (in fact, this vector env's action_space is always None).
|
||
"""
|
||
if key in GYM_RESERVED_KEYS: # reserved keys in gym.Env
|
||
return self.get_env_attr(key)
|
||
else:
|
||
return super().__getattribute__(key)
|
||
|
||
def get_env_attr(
|
||
self,
|
||
key: str,
|
||
id: Optional[Union[int, List[int], np.ndarray]] = None
|
||
) -> List[Any]:
|
||
"""Get an attribute from the underlying environments.
|
||
|
||
If id is an int, retrieve the attribute denoted by key from the environment
|
||
underlying the worker at index id. The result is returned as a list with one
|
||
element. Otherwise, retrieve the attribute for all workers at indices id and
|
||
return a list that is ordered correspondingly to id.
|
||
|
||
:param str key: The key of the desired attribute.
|
||
:param id: Indice(s) of the desired worker(s). Default to None for all env_id.
|
||
|
||
:return list: The list of environment attributes.
|
||
"""
|
||
self._assert_is_not_closed()
|
||
id = self._wrap_id(id)
|
||
if self.is_async:
|
||
self._assert_id(id)
|
||
|
||
return [self.workers[j].get_env_attr(key) for j in id]
|
||
|
||
def set_env_attr(
|
||
self,
|
||
key: str,
|
||
value: Any,
|
||
id: Optional[Union[int, List[int], np.ndarray]] = None,
|
||
) -> None:
|
||
"""Set an attribute in the underlying environments.
|
||
|
||
If id is an int, set the attribute denoted by key from the environment
|
||
underlying the worker at index id to value.
|
||
Otherwise, set the attribute for all workers at indices id.
|
||
|
||
:param str key: The key of the desired attribute.
|
||
:param Any value: The new value of the attribute.
|
||
:param id: Indice(s) of the desired worker(s). Default to None for all env_id.
|
||
"""
|
||
self._assert_is_not_closed()
|
||
id = self._wrap_id(id)
|
||
if self.is_async:
|
||
self._assert_id(id)
|
||
for j in id:
|
||
self.workers[j].set_env_attr(key, value)
|
||
|
||
def _wrap_id(
|
||
self,
|
||
id: Optional[Union[int, List[int], np.ndarray]] = None
|
||
) -> Union[List[int], np.ndarray]:
|
||
if id is None:
|
||
return list(range(self.env_num))
|
||
return [id] if np.isscalar(id) else id # type: ignore
|
||
|
||
def _assert_id(self, id: Union[List[int], np.ndarray]) -> None:
|
||
for i in id:
|
||
assert (
|
||
i not in self.waiting_id
|
||
), f"Cannot interact with environment {i} which is stepping now."
|
||
assert (
|
||
i in self.ready_id
|
||
), f"Can only interact with ready environments {self.ready_id}."
|
||
|
||
def reset(
|
||
self,
|
||
id: Optional[Union[int, List[int], np.ndarray]] = None,
|
||
**kwargs: Any
|
||
) -> Tuple[np.ndarray, Union[dict, List[dict]]]:
|
||
"""Reset the state of some envs and return initial observations.
|
||
|
||
If id is None, reset the state of all the environments and return
|
||
initial observations, otherwise reset the specific environments with
|
||
the given id, either an int or a list.
|
||
"""
|
||
self._assert_is_not_closed()
|
||
id = self._wrap_id(id)
|
||
if self.is_async:
|
||
self._assert_id(id)
|
||
|
||
# send(None) == reset() in worker
|
||
for i in id:
|
||
self.workers[i].send(None, **kwargs)
|
||
ret_list = [self.workers[i].recv() for i in id]
|
||
|
||
assert (
|
||
isinstance(ret_list[0], (tuple, list)) and len(ret_list[0]) == 2
|
||
and isinstance(ret_list[0][1], dict)
|
||
), "The environment does not adhere to the Gymnasium's API."
|
||
|
||
obs_list = [r[0] for r in ret_list]
|
||
|
||
if isinstance(obs_list[0], tuple): # type: ignore
|
||
raise TypeError(
|
||
"Tuple observation space is not supported. ",
|
||
"Please change it to array or dict space",
|
||
)
|
||
try:
|
||
obs = np.stack(obs_list)
|
||
except ValueError: # different len(obs)
|
||
obs = np.array(obs_list, dtype=object)
|
||
|
||
infos = [r[1] for r in ret_list]
|
||
return obs, infos # type: ignore
|
||
|
||
def step(
|
||
self,
|
||
action: np.ndarray,
|
||
id: Optional[Union[int, List[int], np.ndarray]] = None
|
||
) -> gym_new_venv_step_type:
|
||
"""Run one timestep of some environments' dynamics.
|
||
|
||
If id is None, run one timestep of all the environments’ dynamics;
|
||
otherwise run one timestep for some environments with given id, either
|
||
an int or a list. When the end of episode is reached, you are
|
||
responsible for calling reset(id) to reset this environment’s state.
|
||
|
||
Accept a batch of action and return a tuple (batch_obs, batch_rew,
|
||
batch_done, batch_info) in numpy format.
|
||
|
||
:param numpy.ndarray action: a batch of action provided by the agent.
|
||
|
||
:return: A tuple consisting of either:
|
||
|
||
* ``obs`` a numpy.ndarray, the agent's observation of current environments
|
||
* ``rew`` a numpy.ndarray, the amount of rewards returned after \
|
||
previous actions
|
||
* ``terminated`` a numpy.ndarray, whether these episodes have been \
|
||
terminated
|
||
* ``truncated`` a numpy.ndarray, whether these episodes have been truncated
|
||
* ``info`` a numpy.ndarray, contains auxiliary diagnostic \
|
||
information (helpful for debugging, and sometimes learning)
|
||
|
||
For the async simulation:
|
||
|
||
Provide the given action to the environments. The action sequence
|
||
should correspond to the ``id`` argument, and the ``id`` argument
|
||
should be a subset of the ``env_id`` in the last returned ``info``
|
||
(initially they are env_ids of all the environments). If action is
|
||
None, fetch unfinished step() calls instead.
|
||
"""
|
||
self._assert_is_not_closed()
|
||
id = self._wrap_id(id)
|
||
if not self.is_async:
|
||
assert len(action) == len(id)
|
||
for i, j in enumerate(id):
|
||
self.workers[j].send(action[i])
|
||
result = []
|
||
for j in id:
|
||
env_return = self.workers[j].recv()
|
||
env_return[-1]["env_id"] = j
|
||
result.append(env_return)
|
||
else:
|
||
if action is not None:
|
||
self._assert_id(id)
|
||
assert len(action) == len(id)
|
||
for act, env_id in zip(action, id):
|
||
self.workers[env_id].send(act)
|
||
self.waiting_conn.append(self.workers[env_id])
|
||
self.waiting_id.append(env_id)
|
||
self.ready_id = [x for x in self.ready_id if x not in id]
|
||
ready_conns: List[EnvWorker] = []
|
||
while not ready_conns:
|
||
ready_conns = self.worker_class.wait(
|
||
self.waiting_conn, self.wait_num, self.timeout
|
||
)
|
||
result = []
|
||
for conn in ready_conns:
|
||
waiting_index = self.waiting_conn.index(conn)
|
||
self.waiting_conn.pop(waiting_index)
|
||
env_id = self.waiting_id.pop(waiting_index)
|
||
# env_return can be (obs, reward, done, info) or
|
||
# (obs, reward, terminated, truncated, info)
|
||
env_return = conn.recv()
|
||
env_return[-1]["env_id"] = env_id # Add `env_id` to info
|
||
result.append(env_return)
|
||
self.ready_id.append(env_id)
|
||
obs_list, rew_list, term_list, trunc_list, info_list = tuple(zip(*result))
|
||
try:
|
||
obs_stack = np.stack(obs_list)
|
||
except ValueError: # different len(obs)
|
||
obs_stack = np.array(obs_list, dtype=object)
|
||
return (
|
||
obs_stack,
|
||
np.stack(rew_list),
|
||
np.stack(term_list),
|
||
np.stack(trunc_list),
|
||
np.stack(info_list),
|
||
)
|
||
|
||
def seed(self,
|
||
seed: Optional[Union[int, List[int]]] = None) -> List[Optional[List[int]]]:
|
||
"""Set the seed for all environments.
|
||
|
||
Accept ``None``, an int (which will extend ``i`` to
|
||
``[i, i + 1, i + 2, ...]``) or a list.
|
||
|
||
:return: The list of seeds used in this env's random number generators.
|
||
The first value in the list should be the "main" seed, or the value
|
||
which a reproducer pass to "seed".
|
||
"""
|
||
self._assert_is_not_closed()
|
||
seed_list: Union[List[None], List[int]]
|
||
if seed is None:
|
||
seed_list = [seed] * self.env_num
|
||
elif isinstance(seed, int):
|
||
seed_list = [seed + i for i in range(self.env_num)]
|
||
else:
|
||
seed_list = seed
|
||
return [w.seed(s) for w, s in zip(self.workers, seed_list)]
|
||
|
||
def render(self, **kwargs: Any) -> List[Any]:
|
||
"""Render all of the environments."""
|
||
self._assert_is_not_closed()
|
||
if self.is_async and len(self.waiting_id) > 0:
|
||
raise RuntimeError(
|
||
f"Environments {self.waiting_id} are still stepping, cannot "
|
||
"render them now."
|
||
)
|
||
return [w.render(**kwargs) for w in self.workers]
|
||
|
||
def close(self) -> None:
|
||
"""Close all of the environments.
|
||
|
||
This function will be called only once (if not, it will be called during
|
||
garbage collected). This way, ``close`` of all workers can be assured.
|
||
"""
|
||
self._assert_is_not_closed()
|
||
for w in self.workers:
|
||
w.close()
|
||
self.is_closed = True
|
||
|
||
|
||
class DummyVectorEnv(BaseVectorEnv):
|
||
"""Dummy vectorized environment wrapper, implemented in for-loop.
|
||
|
||
.. seealso::
|
||
|
||
Please refer to :class:`~tianshou.env.BaseVectorEnv` for other APIs' usage.
|
||
"""
|
||
|
||
def __init__(self, env_fns: List[Callable[[], ENV_TYPE]], **kwargs: Any) -> None:
|
||
super().__init__(env_fns, DummyEnvWorker, **kwargs)
|
||
|
||
|
||
class SubprocVectorEnv(BaseVectorEnv):
|
||
"""Vectorized environment wrapper based on subprocess.
|
||
|
||
.. seealso::
|
||
|
||
Please refer to :class:`~tianshou.env.BaseVectorEnv` for other APIs' usage.
|
||
"""
|
||
|
||
def __init__(self, env_fns: List[Callable[[], ENV_TYPE]], **kwargs: Any) -> None:
|
||
|
||
def worker_fn(fn: Callable[[], gym.Env]) -> SubprocEnvWorker:
|
||
return SubprocEnvWorker(fn, share_memory=False)
|
||
|
||
super().__init__(env_fns, worker_fn, **kwargs)
|
||
|
||
|
||
class ShmemVectorEnv(BaseVectorEnv):
|
||
"""Optimized SubprocVectorEnv with shared buffers to exchange observations.
|
||
|
||
ShmemVectorEnv has exactly the same API as SubprocVectorEnv.
|
||
|
||
.. seealso::
|
||
|
||
Please refer to :class:`~tianshou.env.BaseVectorEnv` for other APIs' usage.
|
||
"""
|
||
|
||
def __init__(self, env_fns: List[Callable[[], ENV_TYPE]], **kwargs: Any) -> None:
|
||
|
||
def worker_fn(fn: Callable[[], gym.Env]) -> SubprocEnvWorker:
|
||
return SubprocEnvWorker(fn, share_memory=True)
|
||
|
||
super().__init__(env_fns, worker_fn, **kwargs)
|
||
|
||
|
||
class RayVectorEnv(BaseVectorEnv):
|
||
"""Vectorized environment wrapper based on ray.
|
||
|
||
This is a choice to run distributed environments in a cluster.
|
||
|
||
.. seealso::
|
||
|
||
Please refer to :class:`~tianshou.env.BaseVectorEnv` for other APIs' usage.
|
||
"""
|
||
|
||
def __init__(self, env_fns: List[Callable[[], ENV_TYPE]], **kwargs: Any) -> None:
|
||
try:
|
||
import ray
|
||
except ImportError as exception:
|
||
raise ImportError(
|
||
"Please install ray to support RayVectorEnv: pip install ray"
|
||
) from exception
|
||
if not ray.is_initialized():
|
||
ray.init()
|
||
super().__init__(env_fns, RayEnvWorker, **kwargs)
|