2022-05-13 13:58:19 +01:00
|
|
|
"""Wrapper for transforming the reward."""
|
|
|
|
from typing import Callable
|
|
|
|
|
|
|
|
import gym
|
2019-08-10 00:19:52 +02:00
|
|
|
from gym import RewardWrapper
|
|
|
|
|
|
|
|
|
|
|
|
class TransformReward(RewardWrapper):
|
2022-05-13 13:58:19 +01:00
|
|
|
"""Transform the reward via an arbitrary function.
|
2019-08-10 00:19:52 +02:00
|
|
|
|
2022-05-13 13:58:19 +01:00
|
|
|
Warning:
|
|
|
|
If the base environment specifies a reward range which is not invariant under :attr:`f`, the :attr:`reward_range` of the wrapped environment will be incorrect.
|
2019-08-10 00:19:52 +02:00
|
|
|
|
2022-05-13 13:58:19 +01:00
|
|
|
Example:
|
2019-08-10 00:19:52 +02:00
|
|
|
>>> import gym
|
|
|
|
>>> env = gym.make('CartPole-v1')
|
|
|
|
>>> env = TransformReward(env, lambda r: 0.01*r)
|
|
|
|
>>> env.reset()
|
|
|
|
>>> observation, reward, done, info = env.step(env.action_space.sample())
|
|
|
|
>>> reward
|
|
|
|
0.01
|
|
|
|
"""
|
2021-07-29 02:26:34 +02:00
|
|
|
|
2022-05-13 13:58:19 +01:00
|
|
|
def __init__(self, env: gym.Env, f: Callable[[float], float]):
|
|
|
|
"""Initialize the :class:`TransformReward` wrapper with an environment and reward transform function :param:`f`.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
env: The environment to apply the wrapper
|
|
|
|
f: A function that transforms the reward
|
|
|
|
"""
|
2021-11-14 01:53:06 +01:00
|
|
|
super().__init__(env)
|
2019-08-10 00:19:52 +02:00
|
|
|
assert callable(f)
|
|
|
|
self.f = f
|
|
|
|
|
|
|
|
def reward(self, reward):
|
2022-05-13 13:58:19 +01:00
|
|
|
"""Transforms the reward using callable :attr:`f`.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
reward: The reward to transform
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
The transformed reward
|
|
|
|
"""
|
2019-08-10 00:19:52 +02:00
|
|
|
return self.f(reward)
|