Spaces:
Running
on
Zero
Running
on
Zero
File size: 416 Bytes
2d9a728 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from . import cheetah
from . import walker
from . import quadruped
from . import jaco
from . import stickman
from dm_control import suite
suite._DOMAINS['stickman'] = stickman
suite.ALL_TASKS = suite.ALL_TASKS + suite._get_tasks('custom')
suite.TASKS_BY_DOMAIN = suite._get_tasks_by_domain(suite.ALL_TASKS)
def make_jaco(task, obs_type, seed, img_size, ):
return jaco.make(task, obs_type, seed, img_size, ) |