mp_yam_code / source /bimanual /yam /__init__.py
yqi19's picture
YAM bimanual task suite: env, solvers, tasks, converters
7399b6f verified
Raw
History Blame Contribute Delete
498 Bytes
"""YAM task suite: environment / solvers / tasks, with the motion layer kept separate.
yam/motion how the robot moves (arm control, planning, recording)
yam/envs the environment a task runs in (scene building, stepping, scoring)
yam/solvers scripted skills, one module each
yam/tasks one file per task, registered by name
"""
from .registry import register_task, make, list_tasks, REGISTRY # noqa: F401
__all__ = ["register_task", "make", "list_tasks", "REGISTRY"]