16012026-scan-13 / README.md
hqfang's picture
Add native parquet viewer mirror
0eeaefc verified
metadata
license: apache-2.0
task_categories:
  - robotics
tags:
  - LeRobot
configs:
  - config_name: default
    data_files:
      - split: train
        path: viewer/default/train/*.parquet

This dataset was created using LeRobot.

MolmoAct2-BimanualYAM Dataset

This repository is one subset of the MolmoAct2-BimanualYAM Dataset, a large-scale collection of bimanual robot manipulation demonstrations collected for MolmoAct2. Across the full collection, MolmoAct2-BimanualYAM contains more than 720 hours of training demonstrations spanning diverse tabletop manipulation tasks.

Dataset Description

  • Homepage: [More Information Needed]
  • Paper: [More Information Needed]
  • License: apache-2.0

Language Annotations

This dataset includes annotated language instructions in meta/tasks_annotated.parquet. The file is indexed by episode_index and has a task column containing our per-episode annotated instruction.

The standard LeRobot loader resolves a frame's language instruction through task_index: each data row stores a task_index, which is looked up in meta/tasks.parquet. When you use these annotations, load meta/tasks_annotated.parquet and look up the current episode_index instead. If no valid annotated row is available, fall back to the standard LeRobot task.

Visualization

Use the MolmoAct2 LeRobot Visualizer to inspect episodes from this dataset, including camera streams, robot state, actions, and language annotations.

Citation

@misc{fang2026molmoact2actionreasoningmodels,
      title={MolmoAct2: Action Reasoning Models for Real-world Deployment},
      author={Haoquan Fang and Jiafei Duan and Donovan Clay and Sam Wang and Shuo Liu and Weikai Huang and Xiang Fan and Wei-Chuan Tsai and Shirui Chen and Yi Ru Wang and Shanli Xing and Jaemin Cho and Jae Sung Park and Ainaz Eftekhar and Peter Sushko and Karen Farley and Angad Wadhwa and Cole Harrison and Winson Han and Ying-Chun Lee and Eli VanderBilt and Rose Hendrix and Suveen Ellawela and Lucas Ngoo and Joyce Chai and Zhongzheng Ren and Ali Farhadi and Dieter Fox and Ranjay Krishna},
      year={2026},
      eprint={2605.02881},
      archivePrefix={arXiv},
      primaryClass={cs.RO},
      url={https://arxiv.org/abs/2605.02881},
}

Dataset Structure

meta/info.json:

{
    "codebase_version": "v3.0",
    "robot_type": "bi_yam_follower",
    "total_episodes": 60,
    "total_frames": 220810,
    "total_tasks": 1,
    "chunks_size": 1000,
    "data_files_size_in_mb": 100,
    "video_files_size_in_mb": 500,
    "fps": 30,
    "splits": {
        "train": "0:60"
    },
    "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": {
        "action": {
            "dtype": "float32",
            "names": [
                "left_joint_0.pos",
                "left_joint_1.pos",
                "left_joint_2.pos",
                "left_joint_3.pos",
                "left_joint_4.pos",
                "left_joint_5.pos",
                "left_gripper.pos",
                "right_joint_0.pos",
                "right_joint_1.pos",
                "right_joint_2.pos",
                "right_joint_3.pos",
                "right_joint_4.pos",
                "right_joint_5.pos",
                "right_gripper.pos"
            ],
            "shape": [
                14
            ]
        },
        "observation.state": {
            "dtype": "float32",
            "names": [
                "left_joint_0.pos",
                "left_joint_1.pos",
                "left_joint_2.pos",
                "left_joint_3.pos",
                "left_joint_4.pos",
                "left_joint_5.pos",
                "left_gripper.pos",
                "right_joint_0.pos",
                "right_joint_1.pos",
                "right_joint_2.pos",
                "right_joint_3.pos",
                "right_joint_4.pos",
                "right_joint_5.pos",
                "right_gripper.pos"
            ],
            "shape": [
                14
            ]
        },
        "observation.images.right": {
            "dtype": "video",
            "shape": [
                360,
                640,
                3
            ],
            "names": [
                "height",
                "width",
                "channels"
            ],
            "info": {
                "video.height": 360,
                "video.width": 640,
                "video.codec": "av1",
                "video.pix_fmt": "yuv420p",
                "video.is_depth_map": false,
                "video.fps": 30,
                "video.channels": 3,
                "has_audio": false
            }
        },
        "observation.images.left": {
            "dtype": "video",
            "shape": [
                360,
                640,
                3
            ],
            "names": [
                "height",
                "width",
                "channels"
            ],
            "info": {
                "video.height": 360,
                "video.width": 640,
                "video.codec": "av1",
                "video.pix_fmt": "yuv420p",
                "video.is_depth_map": false,
                "video.fps": 30,
                "video.channels": 3,
                "has_audio": false
            }
        },
        "observation.images.top": {
            "dtype": "video",
            "shape": [
                360,
                640,
                3
            ],
            "names": [
                "height",
                "width",
                "channels"
            ],
            "info": {
                "video.height": 360,
                "video.width": 640,
                "video.codec": "av1",
                "video.pix_fmt": "yuv420p",
                "video.is_depth_map": false,
                "video.fps": 30,
                "video.channels": 3,
                "has_audio": false
            }
        },
        "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
        }
    }
}