Myungkyu/layout_reconstruction
layout_reconstruction Real-robot teleoperation demonstrations of the layout_reconstruction task on a single-arm Franka Research 3 cell, released in four LeRobot layouts. Every layout is a conversion of the same 80 raw episodes (37,559 frames at 10 Hz); the layouts differ only in the LeRobot codebase version and in the action representation. directory LeRobot version action (action) consumer lerobot_v21_abs_joint/ v2.1 8-D absolute joint targets + gripper RLDX-1 loader… See the full description on the dataset page: https://huggingface.co/datasets/Myungkyu/layout_reconstruction.
layout_reconstruction
Real-robot teleoperation demonstrations of the layout_reconstruction task on a single-arm Franka Research 3 cell, released in four LeRobot layouts. Every layout is a conversion of the same 80 raw episodes (37,559 frames at 10 Hz); the layouts differ only in the LeRobot codebase version and in the action representation.
The v3.0 layouts were derived from the v2.1 layouts with the official lerobot converter (convert_dataset_v21_to_v30.py), so the four directories carry identical frames, states and videos.
Task
Memorize the object layout on the workspace, transfer the objects onto the layout board, and then reconstruct the original layout.
Every frame carries the task instruction in the task field (one task per dataset) and a subtask string column that holds the same instruction (reserved for subtask-level labels).
Raw data and conversion
Source: DROID-style teleoperation captures (one teleoperation.h5 per episode, HDF5) recorded with a Meta Quest controller driving the arm through a cartesian-velocity controller at a nominal 10 Hz. Each capture stores, per control step, the measured robot state (joint_positions, gripper_position, cartesian_position, joint velocities and torques), the commanded actions in several spaces (joint_position, cartesian_velocity, cartesian_position, gripper_position, …), controller flags, per-camera timestamps and intrinsics, and the camera streams as embedded mp4 bytes (two ZED stereo cameras, left and right eye each, 1280×720).
Conversion rules applied identically to all four layouts:
Only the left eye of each stereo pair is kept; frames are resized from 1280×720 to 448×252 (same aspect ratio, no crop). The gripper is a Robotiq 2F; the state vector is the same in both action layouts, only the action head differs. The v2.1 layouts include meta/modality.json (state arm 0:7, gripper 7:8; action arm 0:7 / gripper 7:8 for absjoint, `eefvelocity 0:6 / gripper 6:7 for delta_eef) and meta/stats.json` with the quantile statistics used for normalisation.
Statistics
Loading
# v3.0 layouts (lerobot >= 0.5)
from lerobot.datasets.lerobot_dataset import LeRobotDataset
ds = LeRobotDataset("Myungkyu/layout_reconstruction", root="<local copy>/lerobot_v30_abs_joint")# any layout, plain download
huggingface-cli download Myungkyu/layout_reconstruction --repo-type dataset --include "lerobot_v21_abs_joint/*" --local-dir .Companion checkpoints trained on these layouts: Myungkyu/hiwrld-baseline-ckpts-real-robot.
