- add VectorEnvWrapper and VectorEnvNormObs - obs_rms store in policy save/load - align mujoco scripts with atari: obs_norm, envpool, wandb and README
121 lines
3.7 KiB
Python
121 lines
3.7 KiB
Python
from typing import Any, List, Optional, Tuple, Union
|
|
|
|
import numpy as np
|
|
|
|
from tianshou.env.venvs import GYM_RESERVED_KEYS, BaseVectorEnv
|
|
from tianshou.utils import RunningMeanStd
|
|
|
|
|
|
class VectorEnvWrapper(BaseVectorEnv):
|
|
"""Base class for vectorized environments wrapper."""
|
|
|
|
def __init__(self, venv: BaseVectorEnv) -> None:
|
|
self.venv = venv
|
|
self.is_async = venv.is_async
|
|
|
|
def __len__(self) -> int:
|
|
return len(self.venv)
|
|
|
|
def __getattribute__(self, key: str) -> Any:
|
|
if key in GYM_RESERVED_KEYS: # reserved keys in gym.Env
|
|
return getattr(self.venv, key)
|
|
else:
|
|
return super().__getattribute__(key)
|
|
|
|
def get_env_attr(
|
|
self,
|
|
key: str,
|
|
id: Optional[Union[int, List[int], np.ndarray]] = None,
|
|
) -> List[Any]:
|
|
return self.venv.get_env_attr(key, id)
|
|
|
|
def set_env_attr(
|
|
self,
|
|
key: str,
|
|
value: Any,
|
|
id: Optional[Union[int, List[int], np.ndarray]] = None,
|
|
) -> None:
|
|
return self.venv.set_env_attr(key, value, id)
|
|
|
|
# TODO: compatible issue with reset -> (obs, info)
|
|
def reset(
|
|
self, id: Optional[Union[int, List[int], np.ndarray]] = None
|
|
) -> np.ndarray:
|
|
return self.venv.reset(id)
|
|
|
|
def step(
|
|
self,
|
|
action: np.ndarray,
|
|
id: Optional[Union[int, List[int], np.ndarray]] = None,
|
|
) -> Tuple[np.ndarray, np.ndarray, np.ndarray, np.ndarray]:
|
|
return self.venv.step(action, id)
|
|
|
|
def seed(
|
|
self,
|
|
seed: Optional[Union[int, List[int]]] = None,
|
|
) -> List[Optional[List[int]]]:
|
|
return self.venv.seed(seed)
|
|
|
|
def render(self, **kwargs: Any) -> List[Any]:
|
|
return self.venv.render(**kwargs)
|
|
|
|
def close(self) -> None:
|
|
self.venv.close()
|
|
|
|
|
|
class VectorEnvNormObs(VectorEnvWrapper):
|
|
"""An observation normalization wrapper for vectorized environments.
|
|
|
|
:param bool update_obs_rms: whether to update obs_rms. Default to True.
|
|
:param float clip_obs: the maximum absolute value for observation. Default to
|
|
10.0.
|
|
:param float epsilon: To avoid division by zero.
|
|
"""
|
|
|
|
def __init__(
|
|
self,
|
|
venv: BaseVectorEnv,
|
|
update_obs_rms: bool = True,
|
|
clip_obs: float = 10.0,
|
|
epsilon: float = np.finfo(np.float32).eps.item(),
|
|
) -> None:
|
|
super().__init__(venv)
|
|
# initialize observation running mean/std
|
|
self.update_obs_rms = update_obs_rms
|
|
self.obs_rms = RunningMeanStd()
|
|
self.clip_max = clip_obs
|
|
self.eps = epsilon
|
|
|
|
# TODO: compatible issue with reset -> (obs, info)
|
|
def reset(
|
|
self, id: Optional[Union[int, List[int], np.ndarray]] = None
|
|
) -> np.ndarray:
|
|
obs = self.venv.reset(id)
|
|
if self.obs_rms and self.update_obs_rms:
|
|
self.obs_rms.update(obs)
|
|
return self._norm_obs(obs)
|
|
|
|
def step(
|
|
self,
|
|
action: np.ndarray,
|
|
id: Optional[Union[int, List[int], np.ndarray]] = None,
|
|
) -> Tuple[np.ndarray, np.ndarray, np.ndarray, np.ndarray]:
|
|
obs, rew, done, info = self.venv.step(action, id)
|
|
if self.obs_rms and self.update_obs_rms:
|
|
self.obs_rms.update(obs)
|
|
return self._norm_obs(obs), rew, done, info
|
|
|
|
def _norm_obs(self, obs: np.ndarray) -> np.ndarray:
|
|
if self.obs_rms:
|
|
obs = (obs - self.obs_rms.mean) / np.sqrt(self.obs_rms.var + self.eps)
|
|
obs = np.clip(obs, -self.clip_max, self.clip_max)
|
|
return obs
|
|
|
|
def set_obs_rms(self, obs_rms: RunningMeanStd) -> None:
|
|
"""Set with given observation running mean/std."""
|
|
self.obs_rms = obs_rms
|
|
|
|
def get_obs_rms(self) -> RunningMeanStd:
|
|
"""Return observation running mean/std."""
|
|
return self.obs_rms
|