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.

MolmoMotion-1M

MolmoMotion-1M is a dataset of 3D point-trajectory annotations curated across seven video corpora — ego-centric manipulation, real-world robot teleoperation, dynamic real-world scenes, and simulator renders. Each clip ships motion-filtered 3D tracks (and, for most datasets, 2D pixel tracks), a short action caption, per-frame camera, and a train/test split — all frame-aligned to the source video.

Datasets

We do not re-host the original videos, and for some datasets do not redistribute the upstream coordinates — we ship the annotations/tracks we produced, plus a reconstruct_*.py script to regenerate the rest from the original source. Check each upstream dataset's license before downloading.

Dataset Domain Upstream source Ships Reconstruct
egodex ego-centric manip apple/EgoDex tracks + camera videos
ytvis natural-video object tracks YouTube-VIS 2021 tracks + camera videos
hdepic ego-centric kitchen hd-epic.github.io tracks + camera videos
xperience ego-centric manip (gated) ropedia-ai/xperience-10m tracks videos + camera
stereo4d dynamic VR180 scenes stereo4d.github.io track index tracks + camera + videos
droid real-world robot teleop droid-dataset.github.io tracks + camera videos
molmospaces sim pick-and-place Ai2 internal sim everything

Each dataset's README.md is authoritative for its schema and its exact reconstruction procedure.

Download

huggingface-cli download allenai/molmo-motion-1m \
    --repo-type dataset --local-dir molmo-motion-1m

Unpack

The per-clip directories (tracks/, camera/, and molmospaces videos/ + robot_trajectories/) ship as ~10 GB tar shards inside those folders. Extract each dataset's shards from its folder:

cd molmo-motion-1m
for d in */; do (cd "$d" && for t in */*.tar; do tar -xf "$t" && rm "$t"; done); done   # extract, then delete each shard

→ each shard extracts into its own tracks/ / camera/ / videos/ (stereo4d has no shards). The resulting layout is the tree below.

molmo-motion-1m/
├── README.md
└── <dataset>/
    ├── README.md          # schema + reconstruction for this dataset
    ├── annotations/       # clips / split / index JSONs — the source of truth (loose)
    ├── tracks/            # tracks-*.tar shards → extract here to 3D + 2D NPZs  (track_index/ for stereo4d)
    ├── camera/            # camera-*.tar shards → per-frame pose + intrinsics (absent for xperience)
    ├── videos/            # videos-*.tar shards → molmospaces only; others reconstruct locally
    └── reconstruct_*.py   # regenerate videos (and, per dataset, tracks/camera/depth)

Data format

<dataset>/annotations/ holds the JSONs — the single source of truth; don't enumerate the tracks/ directory directly.

  • <dataset>_clips.json — one entry per clip (schema below)
  • <dataset>_split.json{train, test, split_info}, same entry schema
  • <dataset>_videos_index.jsonvideo_id → video path + reconstruction recipe

A clips entry:

{
  "file":            "<video_id>",          // lookup key into tracks/, videos/, index
  "num_frames":      281,                    // T; matches the NPZ and the video
  "fps":             15,                      // per-clip; varies by dataset (stereo4d=30, ytvis=6/8/12, xperience=10) — read this field, don't assume 15
  "caption":         "...",                  // short action description
  "clips_by_object": {"object": [[1, 17]]},  // motion frame ranges, inclusive
  "num_clips_total": 18
}

clips_by_object keys vary by dataset (object, left_hand/right_hand, car_0, obj0, …) and are the moving subset of the objects in the track file.

Tracks (after unpacking the shards) — most datasets store, per video_id, a {file}_3d.npz with points_3d (K, T, 3) + visibility (K, T) and a {file}_2d.npz with tracks (T, K, 2) + visibility (T, K) + dim. Note the 3D/2D axis order differs ((K, T, …) vs (T, K, …)). 3D is a metric world frame. The on-disk schema varies by dataset — see the per-dataset README before loading (egodex/ytvis/ hdepic/molmospaces store object-keyed dict NPZs; droid is flat (T, N, …); xperience bundles 2D+3D in one file; stereo4d ships only a track index).

License

MolmoMotion-1M is a collection of data that is organized into multiple subsets, and each subset is licensed separately as shown below. The data includes annotations, indices, and/or captions we produced using videos from multiple sources, so the subsets are organized by source. Each subset contains the respective data created by Ai2 that correspond to videos from that source.

MolmoMotion-1M, including all data subsets, are intended for research and educational use in accordance with Ai2’s Responsible Use Guidelines.

Subset Name Subset License Link to Source Source Attribution
egodex CC BY-NC 4.0 egodex Copyright © 2025 Apple Inc. All Rights Reserved.
ytvis CC BY-NC 4.0 ytvis Copyright © 2026 YouTube-VOS
hdepic CC BY-NC 4.0 hdepic Copyright © HD-EPIC
xperience CC BY-NC 4.0 xperience Copyright © Ropedia PTE Ltd.
stereo4d CC BY-NC 4.0 stereo4d Provided by Stereo4D Team
droid CC BY 4.0 droid Provided by DROID Dataset Team
molmospaces CC BY 4.0 molmospaces Copyright © The Allen Institute for Artificial Intelligence (Ai2)

Disclaimer

MolmoMotion-1M includes annotations, indices, and captions created by Ai2 using videos that are not shared in this dataset. The videos are provided by the owners of the source datasets listed above, and remain subject to their respective license terms and use restrictions. Users who access videos from these sources to reconstruct any portion of the MomoMotion training data are responsible for reviewing and confirming that their intended use complies with the terms and conditions. Please navigate to the source datasets linked above to review the governing terms.

Acknowledgement

We thank Ropedia for providing videos from the Xperience dataset that were used in our research and development of MolmoMotion. The Xperience dataset is governed by Ropedia’s terms and conditions.

Citation

@misc{zhang2026molmomotionforecastingpointtrajectories,
    title={MolmoMotion: Forecasting Point Trajectories in 3D with Language Instruction}, 
    author={Jianing Zhang and Chenhao Zheng and Yajun Yang and Max Argus and Rustin Soraki and Winson Han and Taira Anderson and Chun-Liang Li and Shuo Liu and Jiafei Duan and Zhongzheng Ren and Jieyu Zhang and Ranjay Krishna},
    year={2026},
    eprint={2606.18558},
    archivePrefix={arXiv},
    primaryClass={cs.CV},
    url={https://arxiv.org/abs/2606.18558}, 
}
Downloads last month
2,949

Collection including allenai/molmo-motion-1m

Paper for allenai/molmo-motion-1m

Article mentioning allenai/molmo-motion-1m