Fix paths

This commit is contained in:
Simon Alibert 2024-03-10 16:51:50 +01:00
parent 134009f337
commit f54ee7cda0
2 changed files with 2 additions and 2 deletions

View File

@ -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."

View File

@ -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