Merge remote-tracking branch 'upstream/user/rcadene/2024_03_31_remove_torchrl' into refactor_act

This commit is contained in:
Alexander Soare
2024-04-08 17:13:11 +01:00
43 changed files with 100 additions and 1418 deletions

View File

@@ -19,10 +19,10 @@ def make_dataset(
normalize=True,
stats_path=None,
):
if cfg.env.name == "simxarm":
from lerobot.common.datasets.simxarm import SimxarmDataset
if cfg.env.name == "xarm":
from lerobot.common.datasets.xarm import XarmDataset
clsfunc = SimxarmDataset
clsfunc = XarmDataset
elif cfg.env.name == "pusht":
from lerobot.common.datasets.pusht import PushtDataset

View File

@@ -24,7 +24,7 @@ def download(raw_dir):
zip_path.unlink()
class SimxarmDataset(torch.utils.data.Dataset):
class XarmDataset(torch.utils.data.Dataset):
available_datasets = [
"xarm_lift_medium",
]