fix dtype for wrapper observation spaces
This commit is contained in:
@@ -174,7 +174,7 @@ class FrameStack(gym.Wrapper):
|
|||||||
class ScaledFloatFrame(gym.ObservationWrapper):
|
class ScaledFloatFrame(gym.ObservationWrapper):
|
||||||
def __init__(self, env):
|
def __init__(self, env):
|
||||||
gym.ObservationWrapper.__init__(self, env)
|
gym.ObservationWrapper.__init__(self, env)
|
||||||
self.observation_space.dtype = np.float32
|
self.observation_space = gym.spaces.Box(low=0, high=1, shape=env.observation_space.shape, dtype=np.float32)
|
||||||
|
|
||||||
def observation(self, observation):
|
def observation(self, observation):
|
||||||
# careful! This undoes the memory optimization, use
|
# careful! This undoes the memory optimization, use
|
||||||
|
Reference in New Issue
Block a user