2019-05-25 00:57:29 +02:00
|
|
|
from gym.utils import seeding
|
|
|
|
|
|
|
|
|
2019-01-30 22:39:55 +01:00
|
|
|
class Space(object):
|
|
|
|
"""Defines the observation and action spaces, so you can write generic
|
|
|
|
code that applies to any Env. For example, you can choose a random
|
|
|
|
action.
|
|
|
|
"""
|
|
|
|
def __init__(self, shape=None, dtype=None):
|
2019-03-25 00:46:14 +01:00
|
|
|
import numpy as np # takes about 300-400ms to import, so we load lazily
|
2019-01-30 22:39:55 +01:00
|
|
|
self.shape = None if shape is None else tuple(shape)
|
|
|
|
self.dtype = None if dtype is None else np.dtype(dtype)
|
2019-05-25 00:57:29 +02:00
|
|
|
self.np_random = None
|
|
|
|
self.seed()
|
2019-01-30 22:39:55 +01:00
|
|
|
|
|
|
|
def sample(self):
|
2019-03-25 00:46:14 +01:00
|
|
|
"""Uniformly randomly sample a random element of this space. """
|
2019-01-30 22:39:55 +01:00
|
|
|
raise NotImplementedError
|
|
|
|
|
2019-05-25 00:57:29 +02:00
|
|
|
def seed(self, seed=None):
|
2019-03-25 00:46:14 +01:00
|
|
|
"""Seed the PRNG of this space. """
|
2019-05-25 00:57:29 +02:00
|
|
|
self.np_random, seed = seeding.np_random(seed)
|
|
|
|
return [seed]
|
2019-01-30 22:39:55 +01:00
|
|
|
|
|
|
|
def contains(self, x):
|
|
|
|
"""
|
|
|
|
Return boolean specifying if x is a valid
|
|
|
|
member of this space
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def __contains__(self, x):
|
|
|
|
return self.contains(x)
|
|
|
|
|
|
|
|
def to_jsonable(self, sample_n):
|
|
|
|
"""Convert a batch of samples from this space to a JSONable data type."""
|
|
|
|
# By default, assume identity is JSONable
|
|
|
|
return sample_n
|
|
|
|
|
|
|
|
def from_jsonable(self, sample_n):
|
|
|
|
"""Convert a JSONable data type to a batch of samples from this space."""
|
|
|
|
# By default, assume identity is JSONable
|
|
|
|
return sample_n
|