Fix paths
This commit is contained in:
parent
134009f337
commit
f54ee7cda0
|
@ -18,7 +18,7 @@ def make_env(cfg, transform=None):
|
|||
kwargs["task"] = cfg.env.task
|
||||
clsfunc = SimxarmEnv
|
||||
elif cfg.env.name == "pusht":
|
||||
from lerobot.common.envs.pusht.pusht import PushtEnv
|
||||
from lerobot.common.envs.pusht.env import PushtEnv
|
||||
|
||||
# assert kwargs["seed"] > 200, "Seed 0-200 are used for the demonstration dataset, so we don't want to seed the eval env with this range."
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ from tensordict import TensorDict
|
|||
from torchrl.envs.utils import check_env_specs, step_mdp
|
||||
|
||||
from lerobot.common.envs.factory import make_env
|
||||
from lerobot.common.envs.pusht.pusht import PushtEnv
|
||||
from lerobot.common.envs.pusht.env import PushtEnv
|
||||
from lerobot.common.envs.simxarm import SimxarmEnv
|
||||
|
||||
from .utils import init_config
|
||||
|
|
Loading…
Reference in New Issue