CoolFace
Datasetpublic

hello3x3/libero_10_no_noops_1.0.0_lerobot_v3.0

libero_10_no_noops_1.0.0_lerobot Dataset Description This dataset is the LIBERO-Long subset of the LIBERO benchmark, converted to LeRobot v3.0 format. 10 long-horizon multi-step manipulation tasks. Each task requires executing a sequence of subtasks in order, testing the agent's ability to plan and compose multiple skills. Note: This dataset has been filtered to remove no-op frames (idle frames where the robot does not execute meaningful actions). This results in… See the full description on the dataset page: https://huggingface.co/datasets/hello3x3/libero_10_no_noops_1.0.0_lerobot_v3.0.

sourceHugging Faceapache-2.0updated 4mo agoView on Hugging Face
0likes86downloads
Dataset Card

libero10nonoops1.0.0_lerobot

Dataset Description

This dataset is the LIBERO-Long subset of the LIBERO benchmark, converted to LeRobot v3.0 format.

10 long-horizon multi-step manipulation tasks. Each task requires executing a sequence of subtasks in order, testing the agent's ability to plan and compose multiple skills.

Note: This dataset has been filtered to remove no-op frames (idle frames where the robot does not execute meaningful actions). This results in more efficient training data.

Source

Dataset Statistics

PropertyValue
RobotFranka Panda
Total episodes379
Total frames101,469
Total tasks10
FPS20
Total size~300 MB
Codebase versionv3.0

Features

FeatureDtypeShape
observation.images.wrist_imagevideo[256, 256, 3]
observation.images.imagevideo[256, 256, 3]
observation.statefloat32[8]
actionfloat32[7]
timestampfloat32[1]
frame_indexint64[1]
episode_indexint64[1]
indexint64[1]
task_indexint64[1]

Tasks

task_indexDescription
0put the white mug on the left plate and put the yellow and white mug on the right plate
1put the white mug on the plate and put the chocolate pudding to the right of the plate
2put the yellow and white mug in the microwave and close it
3turn on the stove and put the moka pot on it
4put both the alphabet soup and the cream cheese box in the basket
5put both the alphabet soup and the tomato sauce in the basket
6put both moka pots on the stove
7put both the cream cheese box and the butter in the basket
8put the black bowl in the bottom drawer of the cabinet and close it
9pick up the book and place it in the back compartment of the caddy

Usage

python
from lerobot.datasets.lerobot_dataset import LeRobotDataset

ds = LeRobotDataset(
    "libero_10_no_noops_1.0.0_lerobot",
    root="/path/to/datasets/libero_10_no_noops_1.0.0_lerobot",
)

# Access a sample
sample = ds[0]
print(sample["observation.images.image"])  # [3, 256, 256]
print(sample["action"])                     # [7]
print(sample["task"])                       # natural language task description