2018-02-02 23:01:45 -08:00
|
|
|
import gym
|
2017-02-04 23:36:32 -08:00
|
|
|
import numpy as np
|
|
|
|
|
2018-02-02 23:01:45 -08:00
|
|
|
class MultiBinary(gym.Space):
|
2017-02-04 23:36:32 -08:00
|
|
|
def __init__(self, n):
|
|
|
|
self.n = n
|
2018-02-02 23:01:45 -08:00
|
|
|
gym.Space.__init__(self, (self.n,), np.int8)
|
2017-02-04 23:36:32 -08:00
|
|
|
def sample(self):
|
2018-02-02 23:01:45 -08:00
|
|
|
return gym.spaces.np_random.randint(low=0, high=2, size=self.n).astype(self.dtype)
|
2017-02-04 23:36:32 -08:00
|
|
|
def contains(self, x):
|
|
|
|
return ((x==0) | (x==1)).all()
|
2018-08-27 15:30:47 -07:00
|
|
|
|
2017-02-04 23:36:32 -08:00
|
|
|
def to_jsonable(self, sample_n):
|
2017-11-05 21:16:46 +03:00
|
|
|
return np.array(sample_n).tolist()
|
2017-02-04 23:36:32 -08:00
|
|
|
def from_jsonable(self, sample_n):
|
2018-08-27 15:30:47 -07:00
|
|
|
return [np.asarray(sample) for sample in sample_n]
|