“Shengjiewang-Jason” 1367bca203 first commit
2024-06-07 16:02:01 +08:00

10 lines
250 B
Python

from ..base import BaseWrapper
class AtariWrapper(BaseWrapper):
"""
Make your own wrapper: Atari Wrapper
"""
def __init__(self, env, obs_to_string=False, clip_reward=False):
super().__init__(env, obs_to_string, clip_reward)