| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| """A collection of MuJoCo-based Reinforcement Learning environments. |
| |
| The suite provides a similar API to the original dm_control suite. |
| Users can configure the distractions on top of the original tasks. The suite is |
| targeted for loading environments directly with similar configurations as those |
| used in the original paper. Each distraction wrapper can be used independently |
| though. |
| """ |
| try: |
| from dm_control import suite |
| from dm_control.suite.wrappers import pixels |
| except ImportError: |
| suite = None |
|
|
| from envs.distracting_control import background |
| from envs.distracting_control import camera |
| from envs.distracting_control import color |
| from envs.distracting_control import suite_utils |
|
|
|
|
| def is_available(): |
| return suite is not None |
|
|
|
|
| def load(domain_name, |
| task_name, |
| difficulty=None, |
| dynamic=False, |
| background_dataset_path=None, |
| background_dataset_videos="train", |
| background_kwargs=None, |
| camera_kwargs=None, |
| color_kwargs=None, |
| task_kwargs=None, |
| environment_kwargs=None, |
| visualize_reward=False, |
| render_kwargs=None, |
| pixels_only=True, |
| pixels_observation_key="pixels", |
| env_state_wrappers=None, |
| |
| fixed_distraction=False, |
| background_seed=None, |
| color_seed=None, |
| camera_seed=None, |
| ): |
| """Returns an environment from a domain name, task name and optional settings. |
| |
| ```python |
| env = suite.load('cartpole', 'balance') |
| ``` |
| |
| Adding a difficulty will configure distractions matching the reference paper |
| for easy, medium, hard. |
| |
| Users can also toggle dynamic properties for distractions. |
| |
| Args: |
| domain_name: A string containing the name of a domain. |
| task_name: A string containing the name of a task. |
| difficulty: Difficulty for the suite. One of 'easy', 'medium', 'hard'. |
| dynamic: Boolean controlling whether distractions are dynamic or static. |
| background_dataset_path: String to the davis directory that contains the |
| video directories. |
| background_dataset_videos: String ('train'/'val') or list of strings of the |
| DAVIS videos to be used for backgrounds. |
| background_kwargs: Dict, overwrites settings for background distractions. |
| camera_kwargs: Dict, overwrites settings for camera distractions. |
| color_kwargs: Dict, overwrites settings for color disdifficultytractions. |
| task_kwargs: Dict, dm control task kwargs. |
| environment_kwargs: Optional `dict` specifying keyword arguments for the |
| environment. |
| visualize_reward: Optional `bool`. If `True`, object colours in rendered |
| frames are set to indicate the reward at each step. Default `False`. |
| render_kwargs: Dict, render kwargs for pixel wrapper. |
| pixels_only: Boolean controlling the exclusion of states in the observation. |
| pixels_observation_key: Key in the observation used for the rendered image. |
| env_state_wrappers: Env state wrappers to be called before the PixelWrapper. |
| |
| Returns: |
| The requested environment. |
| """ |
| if not is_available(): |
| raise ImportError("dm_control module is not available. Make sure you " |
| "follow the installation instructions from the " |
| "dm_control package.") |
|
|
| if difficulty not in [None, "easy", "medium", "hard"]: |
| raise ValueError("Difficulty should be one of: 'easy', 'medium', 'hard'.") |
|
|
| render_kwargs = render_kwargs or {} |
| if "camera_id" not in render_kwargs: |
| render_kwargs["camera_id"] = 2 if domain_name == "quadruped" else 0 |
|
|
| env = suite.load( |
| domain_name, |
| task_name, |
| task_kwargs=task_kwargs, |
| environment_kwargs=environment_kwargs, |
| visualize_reward=visualize_reward) |
|
|
| env = distracting_wrapper( |
| env, |
| domain_name, |
| difficulty, |
| dynamic, |
| background_dataset_path, |
| background_dataset_videos, |
| background_kwargs, |
| camera_kwargs, |
| color_kwargs, |
| render_kwargs, |
| pixels_only, |
| pixels_observation_key, |
| env_state_wrappers, |
| |
| fixed_distraction, |
| background_seed, |
| color_seed, |
| camera_seed |
| ) |
|
|
| return env |
|
|
|
|
| def distracting_wrapper( |
| env, |
| domain_name, |
| difficulty=None, |
| dynamic=False, |
| background_dataset_path=None, |
| background_dataset_videos="train", |
| background_kwargs=None, |
| camera_kwargs=None, |
| color_kwargs=None, |
| render_kwargs=None, |
| pixels_only=True, |
| pixels_observation_key="pixels", |
| env_state_wrappers=None, |
| |
| fixed_distraction=False, |
| background_seed=None, |
| color_seed=None, |
| camera_seed=None): |
| |
| if difficulty or background_kwargs: |
| background_dataset_path = ( |
| background_dataset_path or suite_utils.DEFAULT_BACKGROUND_PATH) |
| final_background_kwargs = dict(fixed=fixed_distraction, seed=background_seed) |
| if difficulty: |
| |
| num_videos = suite_utils.DIFFICULTY_NUM_VIDEOS[difficulty] |
| final_background_kwargs.update( |
| suite_utils.get_background_kwargs(domain_name, num_videos, dynamic, |
| background_dataset_path, |
| background_dataset_videos)) |
| else: |
| |
| final_background_kwargs.update( |
| dict(dataset_path=background_dataset_path, |
| dataset_videos=background_dataset_videos)) |
| if background_kwargs: |
| |
| final_background_kwargs.update(background_kwargs) |
| env = background.DistractingBackgroundEnv(env, **final_background_kwargs) |
|
|
| |
| if difficulty or camera_kwargs: |
| final_camera_kwargs = dict(camera_id=render_kwargs["camera_id"], fixed=fixed_distraction, seed=camera_seed) |
| if difficulty: |
| |
| scale = suite_utils.DIFFICULTY_SCALE[difficulty] |
| final_camera_kwargs.update( |
| suite_utils.get_camera_kwargs(domain_name, scale, dynamic)) |
| if camera_kwargs: |
| |
| final_camera_kwargs.update(camera_kwargs) |
| env = camera.DistractingCameraEnv(env, **final_camera_kwargs) |
|
|
| |
| if difficulty or color_kwargs: |
| final_color_kwargs = dict(fixed=fixed_distraction, seed=color_seed) |
| if difficulty: |
| |
| scale = suite_utils.DIFFICULTY_SCALE[difficulty] |
| final_color_kwargs.update(suite_utils.get_color_kwargs(scale, dynamic)) |
| if color_kwargs: |
| |
| final_color_kwargs.update(color_kwargs) |
| env = color.DistractingColorEnv(env, **final_color_kwargs) |
|
|
| if env_state_wrappers is not None: |
| for wrapper in env_state_wrappers: |
| env = wrapper(env) |
| |
| |
| |
| env = pixels.Wrapper( |
| env, |
| pixels_only=pixels_only, |
| render_kwargs=render_kwargs, |
| observation_key=pixels_observation_key) |
|
|
| return env |
|
|