license: apache-2.0
task_categories:
- robotics
- video-classification
language:
- en
tags:
- robotics
- humanoid
- GR1
- LeRobot
- video-to-action
- synthetic-data
- cosmos-predict2
- dreamgen
pretty_name: Vi2Act
size_categories:
- n<1K
Vi2Act
Vi2Act is a small synthetic video-to-action dataset for the Fourier GR1 humanoid. Videos are generated by a Cosmos-Predict2 14B Video2World model (GR00T-Dreams-GR1 checkpoint), then converted into LeRobot format.
Source pipeline: NVIDIA GR00T-Dreams / DreamGen using the EVAL-175 DreamGen Bench prompts and first-frame images.
What's in this repo
Three LeRobot subsets (5 episodes each):
| Folder | Split (EVAL-175) | Episodes | Frames | FPS | Tasks |
|---|---|---|---|---|---|
gr1_env_lerobot.data/ |
environment generalization | 5 | 465 | 8 | 5 |
gr1_object_lerobot.data/ |
object generalization | 5 | 465 | 8 | 5 |
gr1_behavior_lerobot.data/ |
behavior / skill generalization | 5 | 465 | 8 | 5 |
Totals: 15 episodes, 1,395 frames, 15 language tasks, 1 ego-view camera.
This is a pilot / smoke-test dump (NUM_SAMPLES=5 per subset), not the full EVAL-175 benchmark.
Embodiment
- Robot: Fourier GR1 (
robot_type: dreaminmeta/info.json) - Action / state dim: 44 joints
- Camera:
observation.images.ego_view
Joint layout (meta/modality.json):
| Group | Indices |
|---|---|
| left_arm | 0–6 |
| left_hand | 7–12 |
| left_leg | 13–18 |
| neck | 19–21 |
| right_arm | 22–28 |
| right_hand | 29–34 |
| right_leg | 35–40 |
| waist | 41–43 |
Directory layout (per subset)
{subset}_lerobot.data/
├── data/chunk-000/episode_XXXXXX.parquet
├── videos/chunk-000/observation.images.ego_view/episode_XXXXXX.mp4
└── meta/
├── info.json
├── episodes.jsonl
├── tasks.jsonl
├── modality.json
└── stats.json
Each parquet row stores:
observation.state—float32[44]action—float32[44]annotation.human.coarse_action— language-task index- video frames referenced via LeRobot video paths
Note on actions. Videos and language labels come from Cosmos generation. The 44-D
action/statecolumns follow the GR1 LeRobot schema. Inverse-dynamics (IDM) action labels (seonghyeonye/IDM_gr1) are intended as a follow-up upload under*_lerobot.data_idm/. Until that dump is published, treat action columns as schema placeholders unless you re-run IDM locally.
Language tasks
gr1_env
- Use the right hand to pick up chip with green packaging to white bag
- Use the right hand to pick up orange to metal platform
- Use the right hand to pick up plastic pitcher and pour water onto green plant
- Use the right hand to pick up the spoon from the bowl and serve the contents onto the plate
- Use the right hand to knock over the green Pocky box
gr1_object
- Use the left hand to pick up dark green cucumber from on circular gray mat to above beige bowl.
- Use the right hand to pick up red bell pepper from center of tan countertop to brown bottom rack.
- Use the left hand to pick up green pepper from tan table, below the bright blue plate to pale turquoise plate.
- Use the right hand to pick up milk carton from pale turquoise plate in the center of the table to second level of wooden shelf.
- Use the right hand to pick up green bok choy from top tier of two tier black and white shelf to brown paper bag.
gr1_behavior
- Use the right hand to close lunch box
- Use the right hand to pick up blue scoop and scoop powder from container
- Use the right hand to pick up glass and bring it close to the camera as if drinking
- Use knife to cut the object on the cutting board
- Use the right hand to press calculator
How the data was produced
- World-model videos — Cosmos-Predict2-14B Sample GR00T-Dreams-GR1, image + text conditioning,
--disable_guardrail, 480p / 16 fps generation then resampled to 8 fps / 93 frames for Cosmos-Predict2 LeRobot packing. - Directory conversion — DreamGen Bench filenames → per-task folders.
- LeRobot export —
IDM_dump/raw_to_lerobot.py --cosmos_predict2.
Load with Hugging Face Hub
from huggingface_hub import snapshot_download
local_dir = snapshot_download(
repo_id="hk239/Vi2Act",
repo_type="dataset",
)
# e.g. local_dir/gr1_env_lerobot.data/
Load as a LeRobot dataset
from gr00t.data.dataset import LeRobotSingleDataset
dataset = LeRobotSingleDataset(
dataset_path="gr1_env_lerobot.data", # after download
embodiment_tag="gr1",
)
Citation
If you use this data, please cite DreamGen / GR00T-Dreams:
@article{jang2025dreamgen,
title={DreamGen: Unlocking Generalization in Robot Learning through Video World Models},
author={Jang, Joel and Ye, Seonghyeon and Lin, Zongyu and Xiang, Jiannan and Bjorck, Johan and Fang, Yu and Hu, Fengyuan and Huang, Spencer and Kundalia, Kaushil and Lin, Yen-Chen and others},
journal={arXiv preprint arXiv:2505.12705v2},
year={2025}
}
Acknowledgements
- nvidia/EVAL-175 — prompt / first-frame images
- nvidia/Cosmos-Predict2-14B-Sample-GR00T-Dreams-GR1 — video world model
- seonghyeonye/IDM_gr1 — inverse dynamics model (for action extraction)