ases200q2/lerobot_libero_wallx_lora_diffusion_20260319_2202
Robotics • 4B • Updated • 4
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
This is a subset of the lerobot/libero dataset containing only the LIBERO_OBJECT tasks.
Note: This dataset contains ~25% of the original lerobot/libero dataset (10 out of 40 tasks), making it:
LIBERO_OBJECT is part of the LIBERO benchmark - a simulation benchmark for robot learning. LIBERO_OBJECT consists of 10 long-horizon manipulation tasks that require:
This dataset contains tasks 0-9 from the original dataset:
observation.state: Robot joint state (8 DoF)observation.images.image: Main camera view (video)observation.images.image2: Secondary camera view (video)action: 7-DoF robot actionstask_index: Task ID (0-9 for LIBERO_OBJECT)from lerobot.common.datasets.lerobot_dataset import LeRobotDataset
# Load the dataset with video support
ds = LeRobotDataset("ases200q2/libero_object")
# Access episodes with video frames
for i in range(len(ds)):
sample = ds[i]
# sample['observation.images.image'] - numpy array of shape (H, W, C)
# sample['observation.state'] - robot state
# sample['action'] - action
from datasets import load_dataset
# Load the dataset
ds = load_dataset("ases200q2/libero_object")
train_data = ds["train"]
# Access individual frames
for frame in train_data:
state = frame["observation.state"] # robot joint state
action = frame["action"] # robot action
# Note: Videos are stored externally as MP4 files
# Use LeRobotDataset for automatic video loading
from lerobot.common.datasets.lerobot_dataset import LeRobotDataset
from torch.utils.data import DataLoader
# Load dataset
dataset = LeRobotDataset("ases200q2/libero_object")
# Create dataloader
dataloader = DataLoader(dataset, batch_size=32, shuffle=True)
# Training loop
for batch in dataloader:
# batch contains observations and actions
pass
If you use this dataset, please cite the original LIBERO paper:
@article{libero2023,
title={LIBERO: Simulation Benchmark for Long-Horizon Robot Manipulation},
author={Li, Wenhao and Mo, Kumchol and Chiu, Hung-Jui and Li, Zhenjia and Xu, Huazhe and Zhu, Yixin and Bolei, Zhou and Fei-Fei, Li and others},
journal={arXiv preprint arXiv:2310.12956},
year={2023}
}
Apache 2.0