dm_control_env-v2-1-0 / __init__.py
burtenshaw's picture
burtenshaw HF Staff
Upload folder using huggingface_hub
6dd47af verified
raw
history blame contribute delete
337 Bytes
"""dm_control OpenEnv Environment.
A generic OpenEnv environment for dm_control.suite supporting all domains/tasks.
"""
from .models import DMControlAction, DMControlObservation, DMControlState
from .client import DMControlEnv
__all__ = [
"DMControlAction",
"DMControlObservation",
"DMControlState",
"DMControlEnv",
]