Source code for garage.experiment.task_sampler

"""Efficient and general interfaces for sampling tasks for Meta-RL."""
import abc
import copy
import math

import numpy as np

from garage.sampler.env_update import (ExistingEnvUpdate, NewEnvUpdate,
                                       SetTaskUpdate)


def _sample_indices(n_to_sample, n_available_tasks, with_replacement):
    """Select indices of tasks to sample.

    Args:
        n_to_sample (int): Number of environments to sample. May be greater
            than n_available_tasks.
        n_available_tasks (int): Number of available tasks. Task indices will
            be selected in the range [0, n_available_tasks).
        with_replacement (bool): Whether tasks can repeat when sampled.
            Note that if more tasks are sampled than exist, then tasks may
            repeat, but only after every environment has been included at
            least once in this batch. Ignored for continuous task spaces.

    Returns:
        np.ndarray[int]: Array of task indices.

    """
    if with_replacement:
        return np.random.randint(n_available_tasks, size=n_to_sample)
    else:
        blocks = []
        for _ in range(math.ceil(n_to_sample / n_available_tasks)):
            s = np.arange(n_available_tasks)
            np.random.shuffle(s)
            blocks.append(s)
        return np.concatenate(blocks)[:n_to_sample]


[docs]class TaskSampler(abc.ABC): """Class for sampling batches of tasks, represented as `~EnvUpdate`s. Attributes: n_tasks (int or None): Number of tasks, if known and finite. """
[docs] @abc.abstractmethod def sample(self, n_tasks, with_replacement=False): """Sample a list of environment updates. Args: n_tasks (int): Number of updates to sample. with_replacement (bool): Whether tasks can repeat when sampled. Note that if more tasks are sampled than exist, then tasks may repeat, but only after every environment has been included at least once in this batch. Ignored for continuous task spaces. Returns: list[EnvUpdate]: Batch of sampled environment updates, which, when invoked on environments, will configure them with new tasks. See :py:class:`~EnvUpdate` for more information. """
@property def n_tasks(self): """int or None: The number of tasks if known and finite.""" return None
[docs]class ConstructEnvsSampler(TaskSampler): """TaskSampler where each task has its own constructor. Generally, this is used when the different tasks are completely different environments. Args: env_constructors (list[Callable[gym.Env]]): Callables that produce environments (for example, environment types). """ def __init__(self, env_constructors): self._env_constructors = env_constructors @property def n_tasks(self): """int: the number of tasks.""" return len(self._env_constructors)
[docs] def sample(self, n_tasks, with_replacement=False): """Sample a list of environment updates. Args: n_tasks (int): Number of updates to sample. with_replacement (bool): Whether tasks can repeat when sampled. Note that if more tasks are sampled than exist, then tasks may repeat, but only after every environment has been included at least once in this batch. Ignored for continuous task spaces. Returns: list[EnvUpdate]: Batch of sampled environment updates, which, when invoked on environments, will configure them with new tasks. See :py:class:`~EnvUpdate` for more information. """ return [ NewEnvUpdate(self._env_constructors[i]) for i in _sample_indices( n_tasks, len(self._env_constructors), with_replacement) ]
[docs]class SetTaskSampler(TaskSampler): """TaskSampler where the environment can sample "task objects". This is used for environments that implement `sample_tasks` and `set_task`. For example, :py:class:`~HalfCheetahVelEnv`, as implemented in Garage. Args: env_constructor (Callable[gym.Env]): Callable that produces an environment (for example, an environment type). """ def __init__(self, env_constructor): self._env_constructor = env_constructor self._env = env_constructor() @property def n_tasks(self): """int or None: The number of tasks if known and finite.""" return getattr(self._env, 'num_tasks', None)
[docs] def sample(self, n_tasks, with_replacement=False): """Sample a list of environment updates. Args: n_tasks (int): Number of updates to sample. with_replacement (bool): Whether tasks can repeat when sampled. Note that if more tasks are sampled than exist, then tasks may repeat, but only after every environment has been included at least once in this batch. Ignored for continuous task spaces. Returns: list[EnvUpdate]: Batch of sampled environment updates, which, when invoked on environments, will configure them with new tasks. See :py:class:`~EnvUpdate` for more information. """ return [ SetTaskUpdate(self._env_constructor, task) for task in self._env.sample_tasks(n_tasks) ]
[docs]class EnvPoolSampler(TaskSampler): """TaskSampler that samples from a finite pool of environments. This can be used with any environments, but is generally best when using in-process samplers with environments that are expensive to construct. Args: envs (list[gym.Env]): List of environments to use as a pool. """ def __init__(self, envs): self._envs = envs @property def n_tasks(self): """int: the number of tasks.""" return len(self._envs)
[docs] def sample(self, n_tasks, with_replacement=False): """Sample a list of environment updates. Args: n_tasks (int): Number of updates to sample. with_replacement (bool): Whether tasks can repeat when sampled. Since this cannot be easily implemented for an object pool, setting this to True results in ValueError. Raises: ValueError: If the number of requested tasks is larger than the pool, or with_replacement is set. Returns: list[EnvUpdate]: Batch of sampled environment updates, which, when invoked on environments, will configure them with new tasks. See :py:class:`~EnvUpdate` for more information. """ if n_tasks > len(self._envs): raise ValueError('Cannot sample more environments than are ' 'present in the pool. If more tasks are needed, ' 'call grow_pool to copy random existing tasks.') if with_replacement: raise ValueError('EnvPoolSampler cannot meaningfully sample with ' 'replacement.') envs = list(self._envs) np.random.shuffle(envs) return [ExistingEnvUpdate(env) for env in envs[:n_tasks]]
[docs] def grow_pool(self, new_size): """Increase the size of the pool by copying random tasks in it. Note that this only copies the tasks already in the pool, and cannot create new original tasks in any way. Args: new_size (int): Size the pool should be after growning. """ if new_size <= len(self._envs): return to_copy = _sample_indices(new_size - len(self._envs), len(self._envs), with_replacement=False) for idx in to_copy: self._envs.append(copy.deepcopy(self._envs[idx]))