我们从Python开源项目中,提取了以下8个代码示例,用于说明如何使用gym.ObservationWrapper()。
def __init__(self, env): """Warp frames to 84x84 as done in the Nature paper and later work.""" gym.ObservationWrapper.__init__(self, env) self.width = 84 self.height = 84 self.observation_space = spaces.Box(low=0, high=255, shape=(self.height, self.width, 1))
def __init__(self, env): gym.ObservationWrapper.__init__(self, env) self.res = 84 self.observation_space = spaces.Box(low=0, high=255, shape=(self.res, self.res, 1))
def __init__(self, env): gym.ObservationWrapper.__init__(self, env)
def get_preprocessor_as_wrapper(cls, env, options=dict()): """Returns a preprocessor as a gym observation wrapper. Args: env (gym.Env): The gym environment to wrap. options (dict): Options to pass to the preprocessor. Returns: wrapper (gym.ObservationWrapper): Preprocessor in wrapper form. """ preprocessor = cls.get_preprocessor(env, options) return _RLlibPreprocessorWrapper(env, preprocessor)
def __init__(self, env): """Warp frames to 84x84 as done in the Nature paper and later work.""" gym.ObservationWrapper.__init__(self, env) self.width = 84 self.height = 84 self.observation_space = spaces.Box( low=0, high=255, shape=(self.height, self.width, 1))
def __init__(self, env): """Warp frames to 84x84 as done in the Nature paper and later work.""" gym.ObservationWrapper.__init__(self, env) self.res = 84 self.observation_space = spaces.Box(low=0, high=255, shape=(self.res, self.res, 1))