mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-05-18 21:30:19 +00:00
* refactor stacking obs * Improve docstring * remove all StackedDictObservations * Update tests and make stacked obs clearer * Fix type check * fix stacked_observation_space * undo init change, deprecate StackedDictObservations * deprecate stack_observation_space * type hints * ignore pytype errors * undo vecenv doc change * Deprecation warning in StackedDictObs doctstring * Fix vec_env.rst * Fix __all__ sorting * fix pytype ignore statement * Update docstring * stack * Remove n_stack * Update changelog * Simplify code * Rename test file * Re-use variable for shift * Fix doc build * Remove pytype comment * Disable pytype error --------- Co-authored-by: Antonin RAFFIN <antonin.raffin@ensta.org>
314 lines
14 KiB
Python
314 lines
14 KiB
Python
import numpy as np
|
|
from gym import spaces
|
|
|
|
from stable_baselines3.common.vec_env.stacked_observations import StackedObservations
|
|
|
|
compute_stacking = StackedObservations.compute_stacking
|
|
NUM_ENVS = 2
|
|
N_STACK = 4
|
|
H, W, C = 16, 24, 3
|
|
|
|
|
|
def test_compute_stacking_box():
|
|
space = spaces.Box(-1, 1, (4,))
|
|
channels_first, stack_dimension, stacked_shape, repeat_axis = compute_stacking(N_STACK, observation_space=space)
|
|
assert not channels_first # default is channel last
|
|
assert stack_dimension == -1
|
|
assert stacked_shape == (N_STACK * 4,)
|
|
assert repeat_axis == -1
|
|
|
|
|
|
def test_compute_stacking_multidim_box():
|
|
space = spaces.Box(-1, 1, (4, 5))
|
|
channels_first, stack_dimension, stacked_shape, repeat_axis = compute_stacking(N_STACK, observation_space=space)
|
|
assert not channels_first # default is channel last
|
|
assert stack_dimension == -1
|
|
assert stacked_shape == (4, N_STACK * 5)
|
|
assert repeat_axis == -1
|
|
|
|
|
|
def test_compute_stacking_multidim_box_channel_first():
|
|
space = spaces.Box(-1, 1, (4, 5))
|
|
channels_first, stack_dimension, stacked_shape, repeat_axis = compute_stacking(
|
|
N_STACK, observation_space=space, channels_order="first"
|
|
)
|
|
assert channels_first # default is channel last
|
|
assert stack_dimension == 1
|
|
assert stacked_shape == (N_STACK * 4, 5)
|
|
assert repeat_axis == 0
|
|
|
|
|
|
def test_compute_stacking_image_channel_first():
|
|
"""Detect that image is channel first and stack in that dimension."""
|
|
space = spaces.Box(0, 255, (C, H, W), dtype=np.uint8)
|
|
channels_first, stack_dimension, stacked_shape, repeat_axis = compute_stacking(N_STACK, observation_space=space)
|
|
assert channels_first # default is channel last
|
|
assert stack_dimension == 1
|
|
assert stacked_shape == (N_STACK * C, H, W)
|
|
assert repeat_axis == 0
|
|
|
|
|
|
def test_compute_stacking_image_channel_last():
|
|
"""Detect that image is channel last and stack in that dimension."""
|
|
space = spaces.Box(0, 255, (H, W, C), dtype=np.uint8)
|
|
channels_first, stack_dimension, stacked_shape, repeat_axis = compute_stacking(N_STACK, observation_space=space)
|
|
assert not channels_first # default is channel last
|
|
assert stack_dimension == -1
|
|
assert stacked_shape == (H, W, N_STACK * C)
|
|
assert repeat_axis == -1
|
|
|
|
|
|
def test_compute_stacking_image_channel_first_stack_last():
|
|
"""Detect that image is channel first and stack in that dimension."""
|
|
space = spaces.Box(0, 255, (C, H, W), dtype=np.uint8)
|
|
channels_first, stack_dimension, stacked_shape, repeat_axis = compute_stacking(
|
|
N_STACK, observation_space=space, channels_order="last"
|
|
)
|
|
assert not channels_first # default is channel last
|
|
assert stack_dimension == -1
|
|
assert stacked_shape == (C, H, N_STACK * W)
|
|
assert repeat_axis == -1
|
|
|
|
|
|
def test_compute_stacking_image_channel_last_stack_first():
|
|
"""Detect that image is channel last and stack in that dimension."""
|
|
space = spaces.Box(0, 255, (H, W, C), dtype=np.uint8)
|
|
channels_first, stack_dimension, stacked_shape, repeat_axis = compute_stacking(
|
|
N_STACK, observation_space=space, channels_order="first"
|
|
)
|
|
assert channels_first # default is channel last
|
|
assert stack_dimension == 1
|
|
assert stacked_shape == (N_STACK * H, W, C)
|
|
assert repeat_axis == 0
|
|
|
|
|
|
def test_reset_update_box():
|
|
space = spaces.Box(-1, 1, (4,))
|
|
stacked_observations = StackedObservations(NUM_ENVS, N_STACK, space)
|
|
observations_1 = np.stack([space.sample() for _ in range(NUM_ENVS)])
|
|
stacked_obs = stacked_observations.reset(observations_1)
|
|
assert stacked_obs.shape == (NUM_ENVS, N_STACK * 4)
|
|
assert stacked_obs.dtype == space.dtype
|
|
observations_2 = np.stack([space.sample() for _ in range(NUM_ENVS)])
|
|
dones = np.zeros((NUM_ENVS,), dtype=bool)
|
|
infos = [{} for _ in range(NUM_ENVS)]
|
|
stacked_obs, infos = stacked_observations.update(observations_2, dones, infos)
|
|
assert stacked_obs.shape == (NUM_ENVS, N_STACK * 4)
|
|
assert stacked_obs.dtype == space.dtype
|
|
assert np.array_equal(
|
|
stacked_obs,
|
|
np.concatenate(
|
|
(np.zeros_like(observations_1), np.zeros_like(observations_1), observations_1, observations_2), axis=-1
|
|
),
|
|
)
|
|
|
|
|
|
def test_reset_update_multidim_box():
|
|
space = spaces.Box(-1, 1, (4, 5))
|
|
stacked_observations = StackedObservations(NUM_ENVS, N_STACK, space)
|
|
observations_1 = np.stack([space.sample() for _ in range(NUM_ENVS)])
|
|
stacked_obs = stacked_observations.reset(observations_1)
|
|
assert stacked_obs.shape == (NUM_ENVS, 4, N_STACK * 5)
|
|
assert stacked_obs.dtype == space.dtype
|
|
observations_2 = np.stack([space.sample() for _ in range(NUM_ENVS)])
|
|
dones = np.zeros((NUM_ENVS,), dtype=bool)
|
|
infos = [{} for _ in range(NUM_ENVS)]
|
|
stacked_obs, infos = stacked_observations.update(observations_2, dones, infos)
|
|
assert stacked_obs.shape == (NUM_ENVS, 4, N_STACK * 5)
|
|
assert stacked_obs.dtype == space.dtype
|
|
assert np.array_equal(
|
|
stacked_obs,
|
|
np.concatenate(
|
|
(np.zeros_like(observations_1), np.zeros_like(observations_1), observations_1, observations_2), axis=-1
|
|
),
|
|
)
|
|
|
|
|
|
def test_reset_update_multidim_box_channel_first():
|
|
space = spaces.Box(-1, 1, (4, 5))
|
|
stacked_observations = StackedObservations(NUM_ENVS, N_STACK, space, channels_order="first")
|
|
observations_1 = np.stack([space.sample() for _ in range(NUM_ENVS)])
|
|
stacked_obs = stacked_observations.reset(observations_1)
|
|
assert stacked_obs.shape == (NUM_ENVS, N_STACK * 4, 5)
|
|
assert stacked_obs.dtype == space.dtype
|
|
observations_2 = np.stack([space.sample() for _ in range(NUM_ENVS)])
|
|
dones = np.zeros((NUM_ENVS,), dtype=bool)
|
|
infos = [{} for _ in range(NUM_ENVS)]
|
|
stacked_obs, infos = stacked_observations.update(observations_2, dones, infos)
|
|
assert stacked_obs.shape == (NUM_ENVS, N_STACK * 4, 5)
|
|
assert stacked_obs.dtype == space.dtype
|
|
assert np.array_equal(
|
|
stacked_obs,
|
|
np.concatenate((np.zeros_like(observations_1), np.zeros_like(observations_1), observations_1, observations_2), axis=1),
|
|
)
|
|
|
|
|
|
def test_reset_update_image_channel_first():
|
|
space = spaces.Box(0, 255, (C, H, W), dtype=np.uint8)
|
|
stacked_observations = StackedObservations(NUM_ENVS, N_STACK, space)
|
|
observations_1 = np.stack([space.sample() for _ in range(NUM_ENVS)])
|
|
stacked_obs = stacked_observations.reset(observations_1)
|
|
assert stacked_obs.shape == (NUM_ENVS, N_STACK * C, H, W)
|
|
assert stacked_obs.dtype == space.dtype
|
|
observations_2 = np.stack([space.sample() for _ in range(NUM_ENVS)])
|
|
dones = np.zeros((NUM_ENVS,), dtype=bool)
|
|
infos = [{} for _ in range(NUM_ENVS)]
|
|
stacked_obs, infos = stacked_observations.update(observations_2, dones, infos)
|
|
assert stacked_obs.shape == (NUM_ENVS, N_STACK * C, H, W)
|
|
assert stacked_obs.dtype == space.dtype
|
|
assert np.array_equal(
|
|
stacked_obs,
|
|
np.concatenate((np.zeros_like(observations_1), np.zeros_like(observations_1), observations_1, observations_2), axis=1),
|
|
)
|
|
|
|
|
|
def test_reset_update_image_channel_last():
|
|
space = spaces.Box(0, 255, (H, W, C), dtype=np.uint8)
|
|
stacked_observations = StackedObservations(NUM_ENVS, N_STACK, space)
|
|
observations_1 = np.stack([space.sample() for _ in range(NUM_ENVS)])
|
|
stacked_obs = stacked_observations.reset(observations_1)
|
|
assert stacked_obs.shape == (NUM_ENVS, H, W, N_STACK * C)
|
|
assert stacked_obs.dtype == space.dtype
|
|
observations_2 = np.stack([space.sample() for _ in range(NUM_ENVS)])
|
|
dones = np.zeros((NUM_ENVS,), dtype=bool)
|
|
infos = [{} for _ in range(NUM_ENVS)]
|
|
stacked_obs, infos = stacked_observations.update(observations_2, dones, infos)
|
|
assert stacked_obs.shape == (NUM_ENVS, H, W, N_STACK * C)
|
|
assert stacked_obs.dtype == space.dtype
|
|
assert np.array_equal(
|
|
stacked_obs,
|
|
np.concatenate(
|
|
(np.zeros_like(observations_1), np.zeros_like(observations_1), observations_1, observations_2), axis=-1
|
|
),
|
|
)
|
|
|
|
|
|
def test_reset_update_image_channel_first_stack_last():
|
|
space = spaces.Box(0, 255, (C, H, W), dtype=np.uint8)
|
|
stacked_observations = StackedObservations(NUM_ENVS, N_STACK, space, channels_order="last")
|
|
observations_1 = np.stack([space.sample() for _ in range(NUM_ENVS)])
|
|
stacked_obs = stacked_observations.reset(observations_1)
|
|
assert stacked_obs.shape == (NUM_ENVS, C, H, N_STACK * W)
|
|
assert stacked_obs.dtype == space.dtype
|
|
observations_2 = np.stack([space.sample() for _ in range(NUM_ENVS)])
|
|
dones = np.zeros((NUM_ENVS,), dtype=bool)
|
|
infos = [{} for _ in range(NUM_ENVS)]
|
|
stacked_obs, infos = stacked_observations.update(observations_2, dones, infos)
|
|
assert stacked_obs.shape == (NUM_ENVS, C, H, N_STACK * W)
|
|
assert stacked_obs.dtype == space.dtype
|
|
assert np.array_equal(
|
|
stacked_obs,
|
|
np.concatenate(
|
|
(np.zeros_like(observations_1), np.zeros_like(observations_1), observations_1, observations_2), axis=-1
|
|
),
|
|
)
|
|
|
|
|
|
def test_reset_update_image_channel_last_stack_first():
|
|
space = spaces.Box(0, 255, (H, W, C), dtype=np.uint8)
|
|
stacked_observations = StackedObservations(NUM_ENVS, N_STACK, space, channels_order="first")
|
|
observations_1 = np.stack([space.sample() for _ in range(NUM_ENVS)])
|
|
stacked_obs = stacked_observations.reset(observations_1)
|
|
assert stacked_obs.shape == (NUM_ENVS, N_STACK * H, W, C)
|
|
assert stacked_obs.dtype == space.dtype
|
|
observations_2 = np.stack([space.sample() for _ in range(NUM_ENVS)])
|
|
dones = np.zeros((NUM_ENVS,), dtype=bool)
|
|
infos = [{} for _ in range(NUM_ENVS)]
|
|
stacked_obs, infos = stacked_observations.update(observations_2, dones, infos)
|
|
assert stacked_obs.shape == (NUM_ENVS, N_STACK * H, W, C)
|
|
assert stacked_obs.dtype == space.dtype
|
|
assert np.array_equal(
|
|
stacked_obs,
|
|
np.concatenate((np.zeros_like(observations_1), np.zeros_like(observations_1), observations_1, observations_2), axis=1),
|
|
)
|
|
|
|
|
|
def test_reset_update_dict():
|
|
space = spaces.Dict({"key1": spaces.Box(0, 255, (H, W, C), dtype=np.uint8), "key2": spaces.Box(-1, 1, (4, 5))})
|
|
stacked_observations = StackedObservations(NUM_ENVS, N_STACK, space, channels_order={"key1": "first", "key2": "last"})
|
|
observations_1 = {key: np.stack([subspace.sample() for _ in range(NUM_ENVS)]) for key, subspace in space.spaces.items()}
|
|
stacked_obs = stacked_observations.reset(observations_1)
|
|
assert isinstance(stacked_obs, dict)
|
|
assert stacked_obs["key1"].shape == (NUM_ENVS, N_STACK * H, W, C)
|
|
assert stacked_obs["key2"].shape == (NUM_ENVS, 4, N_STACK * 5)
|
|
assert stacked_obs["key1"].dtype == space["key1"].dtype
|
|
assert stacked_obs["key2"].dtype == space["key2"].dtype
|
|
observations_2 = {key: np.stack([subspace.sample() for _ in range(NUM_ENVS)]) for key, subspace in space.spaces.items()}
|
|
dones = np.zeros((NUM_ENVS,), dtype=bool)
|
|
infos = [{} for _ in range(NUM_ENVS)]
|
|
stacked_obs, infos = stacked_observations.update(observations_2, dones, infos)
|
|
assert stacked_obs["key1"].shape == (NUM_ENVS, N_STACK * H, W, C)
|
|
assert stacked_obs["key2"].shape == (NUM_ENVS, 4, N_STACK * 5)
|
|
assert stacked_obs["key1"].dtype == space["key1"].dtype
|
|
assert stacked_obs["key2"].dtype == space["key2"].dtype
|
|
|
|
assert np.array_equal(
|
|
stacked_obs["key1"],
|
|
np.concatenate(
|
|
(
|
|
np.zeros_like(observations_1["key1"]),
|
|
np.zeros_like(observations_1["key1"]),
|
|
observations_1["key1"],
|
|
observations_2["key1"],
|
|
),
|
|
axis=1,
|
|
),
|
|
)
|
|
assert np.array_equal(
|
|
stacked_obs["key2"],
|
|
np.concatenate(
|
|
(
|
|
np.zeros_like(observations_1["key2"]),
|
|
np.zeros_like(observations_1["key2"]),
|
|
observations_1["key2"],
|
|
observations_2["key2"],
|
|
),
|
|
axis=-1,
|
|
),
|
|
)
|
|
|
|
|
|
def test_episode_termination_box():
|
|
space = spaces.Box(-1, 1, (4,))
|
|
stacked_observations = StackedObservations(NUM_ENVS, N_STACK, space)
|
|
observations_1 = np.stack([space.sample() for _ in range(NUM_ENVS)])
|
|
stacked_observations.reset(observations_1)
|
|
observations_2 = np.stack([space.sample() for _ in range(NUM_ENVS)])
|
|
dones = np.zeros((NUM_ENVS,), dtype=bool)
|
|
infos = [{} for _ in range(NUM_ENVS)]
|
|
stacked_observations.update(observations_2, dones, infos)
|
|
terminal_observation = space.sample()
|
|
infos[1]["terminal_observation"] = terminal_observation # episode termination in env1
|
|
dones[1] = True
|
|
observations_3 = np.stack([space.sample() for _ in range(NUM_ENVS)])
|
|
stacked_obs, infos = stacked_observations.update(observations_3, dones, infos)
|
|
zeros = np.zeros_like(observations_1[0])
|
|
true_stacked_obs_env1 = np.concatenate((zeros, observations_1[0], observations_2[0], observations_3[0]), axis=-1)
|
|
true_stacked_obs_env2 = np.concatenate((zeros, zeros, zeros, observations_3[1]), axis=-1)
|
|
true_stacked_obs = np.stack((true_stacked_obs_env1, true_stacked_obs_env2))
|
|
assert np.array_equal(true_stacked_obs, stacked_obs)
|
|
|
|
|
|
def test_episode_termination_dict():
|
|
space = spaces.Dict({"key1": spaces.Box(0, 255, (H, W, 3), dtype=np.uint8), "key2": spaces.Box(-1, 1, (4, 5))})
|
|
stacked_observations = StackedObservations(NUM_ENVS, N_STACK, space, channels_order={"key1": "first", "key2": "last"})
|
|
observations_1 = {key: np.stack([subspace.sample() for _ in range(NUM_ENVS)]) for key, subspace in space.spaces.items()}
|
|
stacked_observations.reset(observations_1)
|
|
observations_2 = {key: np.stack([subspace.sample() for _ in range(NUM_ENVS)]) for key, subspace in space.spaces.items()}
|
|
dones = np.zeros((NUM_ENVS,), dtype=bool)
|
|
infos = [{} for _ in range(NUM_ENVS)]
|
|
stacked_observations.update(observations_2, dones, infos)
|
|
terminal_observation = space.sample()
|
|
infos[1]["terminal_observation"] = terminal_observation # episode termination in env1
|
|
dones[1] = True
|
|
observations_3 = {key: np.stack([subspace.sample() for _ in range(NUM_ENVS)]) for key, subspace in space.spaces.items()}
|
|
stacked_obs, infos = stacked_observations.update(observations_3, dones, infos)
|
|
|
|
for key, axis in zip(observations_1.keys(), [0, -1]):
|
|
zeros = np.zeros_like(observations_1[key][0])
|
|
true_stacked_obs_env1 = np.concatenate(
|
|
(zeros, observations_1[key][0], observations_2[key][0], observations_3[key][0]), axis
|
|
)
|
|
true_stacked_obs_env2 = np.concatenate((zeros, zeros, zeros, observations_3[key][1]), axis)
|
|
true_stacked_obs = np.stack((true_stacked_obs_env1, true_stacked_obs_env2))
|
|
assert np.array_equal(true_stacked_obs, stacked_obs[key])
|