mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-05-22 22:10:16 +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>
347 lines
12 KiB
Python
347 lines
12 KiB
Python
from typing import Dict, Optional
|
|
|
|
import gymnasium as gym
|
|
import numpy as np
|
|
import pytest
|
|
from gymnasium import spaces
|
|
|
|
from stable_baselines3 import A2C, DDPG, DQN, PPO, SAC, TD3
|
|
from stable_baselines3.common.env_checker import check_env
|
|
from stable_baselines3.common.env_util import make_vec_env
|
|
from stable_baselines3.common.envs import BitFlippingEnv, SimpleMultiObsEnv
|
|
from stable_baselines3.common.evaluation import evaluate_policy
|
|
from stable_baselines3.common.vec_env import DummyVecEnv, SubprocVecEnv, VecFrameStack, VecNormalize
|
|
|
|
|
|
class DummyDictEnv(gym.Env):
|
|
"""Custom Environment for testing purposes only"""
|
|
|
|
metadata = {"render_modes": ["human"]}
|
|
|
|
def __init__(
|
|
self,
|
|
use_discrete_actions=False,
|
|
channel_last=False,
|
|
nested_dict_obs=False,
|
|
vec_only=False,
|
|
):
|
|
super().__init__()
|
|
if use_discrete_actions:
|
|
self.action_space = spaces.Discrete(3)
|
|
else:
|
|
self.action_space = spaces.Box(low=-1, high=1, shape=(2,), dtype=np.float32)
|
|
N_CHANNELS = 1
|
|
HEIGHT = 36
|
|
WIDTH = 36
|
|
|
|
if channel_last:
|
|
obs_shape = (HEIGHT, WIDTH, N_CHANNELS)
|
|
else:
|
|
obs_shape = (N_CHANNELS, HEIGHT, WIDTH)
|
|
|
|
self.observation_space = spaces.Dict(
|
|
{
|
|
# Image obs
|
|
"img": spaces.Box(low=0, high=255, shape=obs_shape, dtype=np.uint8),
|
|
# Vector obs
|
|
"vec": spaces.Box(low=-1, high=1, shape=(2,), dtype=np.float32),
|
|
# Discrete obs
|
|
"discrete": spaces.Discrete(4),
|
|
}
|
|
)
|
|
|
|
# For checking consistency with normal MlpPolicy
|
|
if vec_only:
|
|
self.observation_space = spaces.Dict(
|
|
{
|
|
# Vector obs
|
|
"vec": spaces.Box(low=-1, high=1, shape=(2,), dtype=np.float32),
|
|
}
|
|
)
|
|
|
|
if nested_dict_obs:
|
|
# Add dictionary observation inside observation space
|
|
self.observation_space.spaces["nested-dict"] = spaces.Dict({"nested-dict-discrete": spaces.Discrete(4)})
|
|
|
|
def seed(self, seed=None):
|
|
if seed is not None:
|
|
self.observation_space.seed(seed)
|
|
|
|
def step(self, action):
|
|
reward = 0.0
|
|
terminated = truncated = False
|
|
return self.observation_space.sample(), reward, terminated, truncated, {}
|
|
|
|
def reset(self, *, seed: Optional[int] = None, options: Optional[Dict] = None):
|
|
if seed is not None:
|
|
self.observation_space.seed(seed)
|
|
return self.observation_space.sample(), {}
|
|
|
|
def render(self):
|
|
pass
|
|
|
|
|
|
@pytest.mark.parametrize("use_discrete_actions", [True, False])
|
|
@pytest.mark.parametrize("channel_last", [True, False])
|
|
@pytest.mark.parametrize("nested_dict_obs", [True, False])
|
|
@pytest.mark.parametrize("vec_only", [True, False])
|
|
def test_env(use_discrete_actions, channel_last, nested_dict_obs, vec_only):
|
|
# Check the env used for testing
|
|
if nested_dict_obs:
|
|
with pytest.warns(UserWarning, match="Nested observation spaces are not supported"):
|
|
check_env(DummyDictEnv(use_discrete_actions, channel_last, nested_dict_obs, vec_only))
|
|
else:
|
|
check_env(DummyDictEnv(use_discrete_actions, channel_last, nested_dict_obs, vec_only))
|
|
|
|
|
|
@pytest.mark.parametrize("policy", ["MlpPolicy", "CnnPolicy"])
|
|
def test_policy_hint(policy):
|
|
# Common mistake: using the wrong policy
|
|
with pytest.raises(ValueError):
|
|
PPO(policy, BitFlippingEnv(n_bits=4))
|
|
|
|
|
|
@pytest.mark.parametrize("model_class", [PPO, A2C])
|
|
def test_goal_env(model_class):
|
|
env = BitFlippingEnv(n_bits=4)
|
|
# check that goal env works for PPO/A2C that cannot use HER replay buffer
|
|
model = model_class("MultiInputPolicy", env, n_steps=64).learn(250)
|
|
evaluate_policy(model, model.get_env())
|
|
|
|
|
|
@pytest.mark.parametrize("model_class", [PPO, A2C, DQN, DDPG, SAC, TD3])
|
|
def test_consistency(model_class):
|
|
"""
|
|
Make sure that dict obs with vector only vs using flatten obs is equivalent.
|
|
This ensures notable that the network architectures are the same.
|
|
"""
|
|
use_discrete_actions = model_class == DQN
|
|
dict_env = DummyDictEnv(use_discrete_actions=use_discrete_actions, vec_only=True)
|
|
dict_env = gym.wrappers.TimeLimit(dict_env, 100)
|
|
env = gym.wrappers.FlattenObservation(dict_env)
|
|
dict_env.seed(10)
|
|
obs, _ = dict_env.reset()
|
|
|
|
kwargs = {}
|
|
n_steps = 256
|
|
|
|
if model_class in {A2C, PPO}:
|
|
kwargs = dict(
|
|
n_steps=128,
|
|
)
|
|
else:
|
|
# Avoid memory error when using replay buffer
|
|
# Reduce the size of the features and make learning faster
|
|
kwargs = dict(
|
|
buffer_size=250,
|
|
train_freq=8,
|
|
gradient_steps=1,
|
|
)
|
|
if model_class == DQN:
|
|
kwargs["learning_starts"] = 0
|
|
|
|
dict_model = model_class("MultiInputPolicy", dict_env, gamma=0.5, seed=1, **kwargs)
|
|
action_before_learning_1, _ = dict_model.predict(obs, deterministic=True)
|
|
dict_model.learn(total_timesteps=n_steps)
|
|
|
|
normal_model = model_class("MlpPolicy", env, gamma=0.5, seed=1, **kwargs)
|
|
action_before_learning_2, _ = normal_model.predict(obs["vec"], deterministic=True)
|
|
normal_model.learn(total_timesteps=n_steps)
|
|
|
|
action_1, _ = dict_model.predict(obs, deterministic=True)
|
|
action_2, _ = normal_model.predict(obs["vec"], deterministic=True)
|
|
|
|
assert np.allclose(action_before_learning_1, action_before_learning_2)
|
|
assert np.allclose(action_1, action_2)
|
|
|
|
|
|
@pytest.mark.parametrize("model_class", [PPO, A2C, DQN, DDPG, SAC, TD3])
|
|
@pytest.mark.parametrize("channel_last", [False, True])
|
|
def test_dict_spaces(model_class, channel_last):
|
|
"""
|
|
Additional tests for PPO/A2C/SAC/DDPG/TD3/DQN to check observation space support
|
|
with mixed observation.
|
|
"""
|
|
use_discrete_actions = model_class not in [SAC, TD3, DDPG]
|
|
env = DummyDictEnv(use_discrete_actions=use_discrete_actions, channel_last=channel_last)
|
|
env = gym.wrappers.TimeLimit(env, 100)
|
|
|
|
kwargs = {}
|
|
n_steps = 256
|
|
|
|
if model_class in {A2C, PPO}:
|
|
kwargs = dict(
|
|
n_steps=128,
|
|
policy_kwargs=dict(
|
|
net_arch=[32],
|
|
features_extractor_kwargs=dict(cnn_output_dim=32),
|
|
),
|
|
)
|
|
else:
|
|
# Avoid memory error when using replay buffer
|
|
# Reduce the size of the features and make learning faster
|
|
kwargs = dict(
|
|
buffer_size=250,
|
|
policy_kwargs=dict(
|
|
net_arch=[32],
|
|
features_extractor_kwargs=dict(cnn_output_dim=32),
|
|
),
|
|
train_freq=8,
|
|
gradient_steps=1,
|
|
)
|
|
if model_class == DQN:
|
|
kwargs["learning_starts"] = 0
|
|
|
|
model = model_class("MultiInputPolicy", env, gamma=0.5, seed=1, **kwargs)
|
|
|
|
model.learn(total_timesteps=n_steps)
|
|
|
|
evaluate_policy(model, env, n_eval_episodes=5, warn=False)
|
|
|
|
|
|
@pytest.mark.parametrize("model_class", [PPO, A2C, SAC, DQN])
|
|
def test_multiprocessing(model_class):
|
|
use_discrete_actions = model_class not in [SAC, TD3, DDPG]
|
|
|
|
def make_env():
|
|
env = DummyDictEnv(use_discrete_actions=use_discrete_actions, channel_last=False)
|
|
env = gym.wrappers.TimeLimit(env, 50)
|
|
return env
|
|
|
|
env = make_vec_env(make_env, n_envs=2, vec_env_cls=SubprocVecEnv)
|
|
|
|
kwargs = {}
|
|
n_steps = 128
|
|
|
|
if model_class in {A2C, PPO}:
|
|
kwargs = dict(
|
|
n_steps=128,
|
|
policy_kwargs=dict(
|
|
net_arch=[32],
|
|
features_extractor_kwargs=dict(cnn_output_dim=32),
|
|
),
|
|
)
|
|
elif model_class in {SAC, TD3, DQN}:
|
|
kwargs = dict(
|
|
buffer_size=1000,
|
|
policy_kwargs=dict(
|
|
net_arch=[32],
|
|
features_extractor_kwargs=dict(cnn_output_dim=16),
|
|
),
|
|
train_freq=5,
|
|
)
|
|
|
|
model = model_class("MultiInputPolicy", env, gamma=0.5, seed=1, **kwargs)
|
|
|
|
model.learn(total_timesteps=n_steps)
|
|
|
|
|
|
@pytest.mark.parametrize("model_class", [PPO, A2C, DQN, DDPG, SAC, TD3])
|
|
@pytest.mark.parametrize("channel_last", [False, True])
|
|
def test_dict_vec_framestack(model_class, channel_last):
|
|
"""
|
|
Additional tests for PPO/A2C/SAC/DDPG/TD3/DQN to check observation space support
|
|
for Dictionary spaces and VecEnvWrapper using MultiInputPolicy.
|
|
"""
|
|
use_discrete_actions = model_class not in [SAC, TD3, DDPG]
|
|
channels_order = {"vec": None, "img": "last" if channel_last else "first"}
|
|
env = DummyVecEnv(
|
|
[lambda: SimpleMultiObsEnv(random_start=True, discrete_actions=use_discrete_actions, channel_last=channel_last)]
|
|
)
|
|
|
|
env = VecFrameStack(env, n_stack=3, channels_order=channels_order)
|
|
|
|
kwargs = {}
|
|
n_steps = 256
|
|
|
|
if model_class in {A2C, PPO}:
|
|
kwargs = dict(
|
|
n_steps=128,
|
|
policy_kwargs=dict(
|
|
net_arch=[32],
|
|
features_extractor_kwargs=dict(cnn_output_dim=32),
|
|
),
|
|
)
|
|
else:
|
|
# Avoid memory error when using replay buffer
|
|
# Reduce the size of the features and make learning faster
|
|
kwargs = dict(
|
|
buffer_size=250,
|
|
policy_kwargs=dict(
|
|
net_arch=[32],
|
|
features_extractor_kwargs=dict(cnn_output_dim=32),
|
|
),
|
|
train_freq=8,
|
|
gradient_steps=1,
|
|
)
|
|
if model_class == DQN:
|
|
kwargs["learning_starts"] = 0
|
|
|
|
model = model_class("MultiInputPolicy", env, gamma=0.5, seed=1, **kwargs)
|
|
|
|
model.learn(total_timesteps=n_steps)
|
|
|
|
evaluate_policy(model, env, n_eval_episodes=5, warn=False)
|
|
|
|
|
|
@pytest.mark.parametrize("model_class", [PPO, A2C, DQN, DDPG, SAC, TD3])
|
|
def test_vec_normalize(model_class):
|
|
"""
|
|
Additional tests for PPO/A2C/SAC/DDPG/TD3/DQN to check observation space support
|
|
for GoalEnv and VecNormalize using MultiInputPolicy.
|
|
"""
|
|
env = DummyVecEnv([lambda: gym.wrappers.TimeLimit(DummyDictEnv(use_discrete_actions=model_class == DQN), 100)])
|
|
env = VecNormalize(env, norm_obs_keys=["vec"])
|
|
|
|
kwargs = {}
|
|
n_steps = 256
|
|
|
|
if model_class in {A2C, PPO}:
|
|
kwargs = dict(
|
|
n_steps=128,
|
|
policy_kwargs=dict(
|
|
net_arch=[32],
|
|
),
|
|
)
|
|
else:
|
|
# Avoid memory error when using replay buffer
|
|
# Reduce the size of the features and make learning faster
|
|
kwargs = dict(
|
|
buffer_size=250,
|
|
policy_kwargs=dict(
|
|
net_arch=[32],
|
|
),
|
|
train_freq=8,
|
|
gradient_steps=1,
|
|
)
|
|
if model_class == DQN:
|
|
kwargs["learning_starts"] = 0
|
|
|
|
model = model_class("MultiInputPolicy", env, gamma=0.5, seed=1, **kwargs)
|
|
|
|
model.learn(total_timesteps=n_steps)
|
|
|
|
evaluate_policy(model, env, n_eval_episodes=5, warn=False)
|
|
|
|
|
|
def test_dict_nested():
|
|
"""
|
|
Make sure we throw an appropiate error with nested Dict observation spaces
|
|
"""
|
|
# Test without manual wrapping to vec-env
|
|
env = DummyDictEnv(nested_dict_obs=True)
|
|
|
|
with pytest.raises(NotImplementedError):
|
|
_ = PPO("MultiInputPolicy", env, seed=1)
|
|
|
|
# Test with manual vec-env wrapping
|
|
|
|
with pytest.raises(NotImplementedError):
|
|
env = DummyVecEnv([lambda: DummyDictEnv(nested_dict_obs=True)])
|
|
|
|
|
|
def test_vec_normalize_image():
|
|
env = VecNormalize(DummyVecEnv([lambda: DummyDictEnv()]), norm_obs_keys=["img"])
|
|
assert env.observation_space.spaces["img"].dtype == np.float32
|
|
assert (env.observation_space.spaces["img"].low == -env.clip_obs).all()
|
|
assert (env.observation_space.spaces["img"].high == env.clip_obs).all()
|