2021-08-19 09:30:54 +02:00
|
|
|
import unittest
|
|
|
|
|
|
|
|
import gym
|
|
|
|
import numpy as np
|
|
|
|
from dm_control import suite, manipulation
|
|
|
|
|
2022-07-13 15:10:43 +02:00
|
|
|
import fancy_gym
|
|
|
|
from fancy_gym import make
|
2021-08-19 09:30:54 +02:00
|
|
|
|
2022-07-12 15:17:02 +02:00
|
|
|
SUITE_IDS = [f'dmc:{env}-{task}' for env, task in suite.ALL_TASKS if env != "lqr"]
|
|
|
|
MANIPULATION_IDS = [f'dmc:manipulation-{task}' for task in manipulation.ALL if task.endswith('_features')]
|
2021-08-19 09:30:54 +02:00
|
|
|
SEED = 1
|
|
|
|
|
|
|
|
|
2022-07-12 15:17:02 +02:00
|
|
|
class TestDMCEnvironments(unittest.TestCase):
|
2021-08-19 09:30:54 +02:00
|
|
|
|
|
|
|
def _run_env(self, env_id, iterations=None, seed=SEED, render=False):
|
|
|
|
"""
|
|
|
|
Example for running a DMC based env in the step based setting.
|
2022-07-12 15:17:02 +02:00
|
|
|
The env_id has to be specified as `dmc:domain_name-task_name` or
|
2021-08-19 09:30:54 +02:00
|
|
|
for manipulation tasks as `manipulation-environment_name`
|
|
|
|
|
|
|
|
Args:
|
2022-07-12 15:17:02 +02:00
|
|
|
env_id: Either `dmc:domain_name-task_name` or `dmc:manipulation-environment_name`
|
2021-08-19 09:30:54 +02:00
|
|
|
iterations: Number of rollout steps to run
|
2022-07-12 15:17:02 +02:00
|
|
|
seed: random seeding
|
2021-08-19 09:30:54 +02:00
|
|
|
render: Render the episode
|
|
|
|
|
2022-07-12 15:17:02 +02:00
|
|
|
Returns: observations, rewards, dones, actions
|
2021-08-19 09:30:54 +02:00
|
|
|
|
|
|
|
"""
|
|
|
|
env: gym.Env = make(env_id, seed=seed)
|
|
|
|
rewards = []
|
|
|
|
observations = []
|
2022-07-11 16:18:18 +02:00
|
|
|
actions = []
|
2021-08-19 09:30:54 +02:00
|
|
|
dones = []
|
|
|
|
obs = env.reset()
|
|
|
|
self._verify_observations(obs, env.observation_space, "reset()")
|
|
|
|
|
2022-07-07 10:47:04 +02:00
|
|
|
iterations = iterations or (env.spec.max_episode_steps or 1)
|
2021-08-19 09:30:54 +02:00
|
|
|
|
|
|
|
# number of samples(multiple environment steps)
|
|
|
|
for i in range(iterations):
|
|
|
|
observations.append(obs)
|
|
|
|
|
|
|
|
ac = env.action_space.sample()
|
2022-07-11 16:18:18 +02:00
|
|
|
actions.append(ac)
|
2021-08-19 09:30:54 +02:00
|
|
|
# ac = np.random.uniform(env.action_space.low, env.action_space.high, env.action_space.shape)
|
|
|
|
obs, reward, done, info = env.step(ac)
|
|
|
|
|
|
|
|
self._verify_observations(obs, env.observation_space, "step()")
|
|
|
|
self._verify_reward(reward)
|
|
|
|
self._verify_done(done)
|
|
|
|
|
|
|
|
rewards.append(reward)
|
|
|
|
dones.append(done)
|
|
|
|
|
|
|
|
if render:
|
|
|
|
env.render("human")
|
|
|
|
|
|
|
|
if done:
|
2022-07-11 16:18:18 +02:00
|
|
|
break
|
2021-08-19 09:30:54 +02:00
|
|
|
|
2022-07-11 16:18:18 +02:00
|
|
|
assert done, "Done flag is not True after end of episode."
|
2021-08-19 09:30:54 +02:00
|
|
|
observations.append(obs)
|
|
|
|
env.close()
|
|
|
|
del env
|
2022-07-11 16:18:18 +02:00
|
|
|
return np.array(observations), np.array(rewards), np.array(dones), np.array(actions)
|
2021-08-19 09:30:54 +02:00
|
|
|
|
2022-07-12 15:17:02 +02:00
|
|
|
def _run_env_determinism(self, ids):
|
|
|
|
seed = 0
|
|
|
|
for env_id in ids:
|
|
|
|
with self.subTest(msg=env_id):
|
|
|
|
traj1 = self._run_env(env_id, seed=seed)
|
|
|
|
traj2 = self._run_env(env_id, seed=seed)
|
|
|
|
for i, time_step in enumerate(zip(*traj1, *traj2)):
|
|
|
|
obs1, rwd1, done1, ac1, obs2, rwd2, done2, ac2 = time_step
|
|
|
|
self.assertTrue(np.array_equal(obs1, obs2), f"Observations [{i}] delta {obs1 - obs2} is not zero.")
|
|
|
|
self.assertTrue(np.array_equal(ac1, ac2), f"Actions [{i}] delta {ac1 - ac2} is not zero.")
|
|
|
|
self.assertEqual(done1, done2, f"Dones [{i}] {done1} and {done2} do not match.")
|
|
|
|
self.assertEqual(rwd1, rwd2, f"Rewards [{i}] {rwd1} and {rwd2} do not match.")
|
|
|
|
|
2021-08-19 09:30:54 +02:00
|
|
|
def _verify_observations(self, obs, observation_space, obs_type="reset()"):
|
|
|
|
self.assertTrue(observation_space.contains(obs),
|
|
|
|
f"Observation {obs} received from {obs_type} "
|
|
|
|
f"not contained in observation space {observation_space}.")
|
|
|
|
|
|
|
|
def _verify_reward(self, reward):
|
2022-07-11 16:18:18 +02:00
|
|
|
self.assertIsInstance(reward, (float, int), f"Returned type {type(reward)} as reward, expected float or int.")
|
2021-08-19 09:30:54 +02:00
|
|
|
|
|
|
|
def _verify_done(self, done):
|
|
|
|
self.assertIsInstance(done, bool, f"Returned {done} as done flag, expected bool.")
|
|
|
|
|
2022-07-12 15:17:02 +02:00
|
|
|
def test_suite_functionality(self):
|
|
|
|
"""Tests that suite step environments run without errors using random actions."""
|
|
|
|
for env_id in SUITE_IDS:
|
2021-08-19 09:30:54 +02:00
|
|
|
with self.subTest(msg=env_id):
|
|
|
|
self._run_env(env_id)
|
|
|
|
|
2022-07-12 15:17:02 +02:00
|
|
|
def test_suite_determinism(self):
|
|
|
|
"""Tests that for step environments identical seeds produce identical trajectories."""
|
|
|
|
self._run_env_determinism(SUITE_IDS)
|
2021-08-19 09:30:54 +02:00
|
|
|
|
|
|
|
def test_manipulation_functionality(self):
|
2022-07-12 15:17:02 +02:00
|
|
|
"""Tests that manipulation step environments run without errors using random actions."""
|
|
|
|
for env_id in MANIPULATION_IDS:
|
2021-08-19 09:30:54 +02:00
|
|
|
with self.subTest(msg=env_id):
|
|
|
|
self._run_env(env_id)
|
|
|
|
|
|
|
|
def test_manipulation_determinism(self):
|
2022-07-12 15:17:02 +02:00
|
|
|
"""Tests that for step environments identical seeds produce identical trajectories."""
|
|
|
|
self._run_env_determinism(MANIPULATION_IDS)
|
|
|
|
|
|
|
|
def test_bb_functionality(self):
|
|
|
|
"""Tests that black box environments run without errors using random actions."""
|
2022-07-13 15:10:43 +02:00
|
|
|
for traj_gen, env_ids in fancy_gym.ALL_DMC_MOVEMENT_PRIMITIVE_ENVIRONMENTS.items():
|
2022-07-12 15:17:02 +02:00
|
|
|
with self.subTest(msg=traj_gen):
|
|
|
|
for id in env_ids:
|
|
|
|
with self.subTest(msg=id):
|
|
|
|
self._run_env(id)
|
|
|
|
|
|
|
|
def test_bb_determinism(self):
|
|
|
|
"""Tests that for black box environment identical seeds produce identical trajectories."""
|
2022-07-13 15:10:43 +02:00
|
|
|
for traj_gen, env_ids in fancy_gym.ALL_DMC_MOVEMENT_PRIMITIVE_ENVIRONMENTS.items():
|
2022-07-12 15:17:02 +02:00
|
|
|
with self.subTest(msg=traj_gen):
|
|
|
|
self._run_env_determinism(env_ids)
|
2021-08-19 09:30:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|