Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html> <h"... is not valid JSON

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 dataset was created using LeRobot.

Dataset Description

A robot manipulation dataset for imitation learning, compatible with LeRobot v3.0 format.

  • Robot Type: so101_follower
  • Total Episodes: 100
  • Total Frames: 28003
  • FPS: 10
  • Codebase Version: v3.0

Features

Feature Shape Type
observation.state [6] float32
action [6] float32
observation.images.top [480, 640, 3] video
observation.images.left_wrist [480, 640, 3] video

Dataset Structure

meta/info.json:

{
  "codebase_version": "v3.0",
  "robot_type": "so101_follower",
  "total_episodes": 100,
  "total_frames": 28003,
  "total_tasks": 1,
  "chunks_size": 1000,
  "data_files_size_in_mb": 100,
  "video_files_size_in_mb": 200,
  "fps": 10,
  "splits": {
    "train": "0:100"
  },
  "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
  "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
  "features": {
    "observation.state": {
      "dtype": "float32",
      "shape": [
        6
      ],
      "names": [
        "shoulder_pan.pos",
        "shoulder_lift.pos",
        "elbow_flex.pos",
        "wrist_flex.pos",
        "wrist_roll.pos",
        "gripper.pos"
      ]
    },
    "action": {
      "dtype": "float32",
      "shape": [
        6
      ],
      "names": [
        "shoulder_pan.pos",
        "shoulder_lift.pos",
        "elbow_flex.pos",
        "wrist_flex.pos",
        "wrist_roll.pos",
        "gripper.pos"
      ]
    },
    "observation.images.top": {
      "dtype": "video",
      "shape": [
        480,
        640,
        3
      ],
      "names": [
        "height",
        "width",
        "channels"
      ],
      "info": {
        "video.height": 480,
        "video.width": 640,
        "video.codec": "h264",
        "video.pix_fmt": "yuv420p",
        "video.is_depth_map": false,
        "video.fps": 10,
        "video.channels": 3,
        "has_audio": false
      }
    },
    "observation.images.left_wrist": {
      "dtype": "video",
      "shape": [
        480,
        640,
        3
      ],
      "names": [
        "height",
        "width",
        "channels"
      ],
      "info": {
        "video.height": 480,
        "video.width": 640,
        "video.codec": "h264",
        "video.pix_fmt": "yuv420p",
        "video.is_depth_map": false,
        "video.fps": 10,
        "video.channels": 3,
        "has_audio": false
      }
    },
    "observation.ee_pos.robot_xyzrpy": {
      "dtype": "float32",
      "shape": [
        6
      ],
      "names": [
        "x",
        "y",
        "z",
        "roll",
        "pitch",
        "yaw"
      ]
    },
    "observation.gripper_binary": {
      "dtype": "float32",
      "shape": [
        1
      ],
      "names": null
    },
    "skill.natural_language": {
      "dtype": "string",
      "shape": [
        1
      ],
      "names": null
    },
    "skill.verification_question": {
      "dtype": "string",
      "shape": [
        1
      ],
      "names": null
    },
    "skill.type": {
      "dtype": "string",
      "shape": [
        1
      ],
      "names": null
    },
    "skill.progress": {
      "dtype": "float32",
      "shape": [
        1
      ],
      "names": null
    },
    "skill.goal_position.joint": {
      "dtype": "float32",
      "shape": [
        6
      ],
      "names": [
        "shoulder_pan.pos",
        "shoulder_lift.pos",
        "elbow_flex.pos",
        "wrist_flex.pos",
        "wrist_roll.pos",
        "gripper.pos"
      ]
    },
    "skill.goal_position.robot_xyzrpy": {
      "dtype": "float32",
      "shape": [
        6
      ],
      "names": [
        "x",
        "y",
        "z",
        "roll",
        "pitch",
        "yaw"
      ]
    },
    "skill.goal_position.gripper": {
      "dtype": "float32",
      "shape": [
        1
      ],
      "names": [
        "gripper.pos"
      ]
    },
    "subtask.natural_language": {
      "dtype": "string",
      "shape": [
        1
      ],
      "names": null
    },
    "subtask.object_name": {
      "dtype": "string",
      "shape": [
        1
      ],
      "names": null
    },
    "subtask.target_position": {
      "dtype": "float32",
      "shape": [
        3
      ],
      "names": [
        "x",
        "y",
        "z"
      ]
    },
    "timestamp": {
      "dtype": "float32",
      "shape": [
        1
      ],
      "names": null
    },
    "frame_index": {
      "dtype": "int64",
      "shape": [
        1
      ],
      "names": null
    },
    "episode_index": {
      "dtype": "int64",
      "shape": [
        1
      ],
      "names": null
    },
    "index": {
      "dtype": "int64",
      "shape": [
        1
      ],
      "names": null
    },
    "task_index": {
      "dtype": "int64",
      "shape": [
        1
      ],
      "names": null
    }
  }
}

Usage

from lerobot.datasets.lerobot_dataset import LeRobotDataset

# Load the dataset
dataset = LeRobotDataset("CoRL2026-CSI/SO101-OpenDrawer_Ours_100epi")

# Access a sample
sample = dataset[0]
print(sample.keys())

Citation

@misc{SO101-OpenDrawer_Ours_100epi,
  title = {SO101-OpenDrawer_Ours_100epi},
  year = {2025},
  publisher = {Hugging Face},
  howpublished = {\url{https://huggingface.co/datasets/CoRL2026-CSI/SO101-OpenDrawer_Ours_100epi}}
}
Downloads last month
16

Models trained or fine-tuned on CoRL2026-CSI/SO101-OpenDrawer_Ours_100epi