EfficientZeroV2/ez/envs/dmc/__init__.py
“Shengjiewang-Jason” 1367bca203 first commit
2024-06-07 16:02:01 +08:00

11 lines
247 B
Python

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