CoolFace
Datasetpublic

hello3x3/libero_spatial_no_noops_1.0.0_lerobot_v3.0

libero_spatial_no_noops_1.0.0_lerobot Dataset Description This dataset is the LIBERO-Spatial subset of the LIBERO benchmark, converted to LeRobot v3.0 format. 10 spatial generalization tasks. All tasks share the same objects but differ in their spatial layout/configuration, testing the agent's ability to generalize to new object placements. Note: This dataset has been filtered to remove no-op frames (idle frames where the robot does not execute meaningful… See the full description on the dataset page: https://huggingface.co/datasets/hello3x3/libero_spatial_no_noops_1.0.0_lerobot_v3.0.

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

liberospatialnonoops1.0.0_lerobot

Dataset Description

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

10 spatial generalization tasks. All tasks share the same objects but differ in their spatial layout/configuration, testing the agent's ability to generalize to new object placements.

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 episodes432
Total frames52,970
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
0pick up the black bowl next to the cookie box and place it on the plate
1pick up the black bowl in the top drawer of the wooden cabinet and place it on the plate
2pick up the black bowl on the ramekin and place it on the plate
3pick up the black bowl on the stove and place it on the plate
4pick up the black bowl between the plate and the ramekin and place it on the plate
5pick up the black bowl on the cookie box and place it on the plate
6pick up the black bowl next to the plate and place it on the plate
7pick up the black bowl next to the ramekin and place it on the plate
8pick up the black bowl from table center and place it on the plate
9pick up the black bowl on the wooden cabinet and place it on the plate

Usage

python
from lerobot.datasets.lerobot_dataset import LeRobotDataset

ds = LeRobotDataset(
    "libero_spatial_no_noops_1.0.0_lerobot",
    root="/path/to/datasets/libero_spatial_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