mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-14 18:58:44 +00:00
`contains` really should not exist when it does exactly what the builtin magic method `__contains__` was meant for, but that would break backward compatibility.
20 lines
689 B
Python
20 lines
689 B
Python
import gym
|
|
import numpy as np
|
|
|
|
class MultiDiscrete(gym.Space):
|
|
def __init__(self, nvec):
|
|
"""
|
|
nvec: vector of counts of each categorical variable
|
|
"""
|
|
self.nvec = np.asarray(nvec, dtype=np.int32)
|
|
gym.Space.__init__(self, (self.nvec.shape,), np.int8)
|
|
def sample(self):
|
|
return (gym.spaces.np_random.random_sample(self.nvec.shape) * self.nvec).astype(self.dtype)
|
|
def contains(self, x):
|
|
return (0 <= x).all() and (x < self.nvec).all() and x.dtype.kind in 'ui'
|
|
|
|
def to_jsonable(self, sample_n):
|
|
return [sample.tolist() for sample in sample_n]
|
|
def from_jsonable(self, sample_n):
|
|
return np.array(sample_n)
|