Datasets:
File size: 7,340 Bytes
c85ef24 8b3adab 501820a c85ef24 501820a c85ef24 501820a 59a5a96 501820a 8b3adab 59a5a96 501820a 59a5a96 501820a 8b3adab 501820a 8b3adab 501820a 7d41b09 97c4ff5 4688ec8 59a5a96 501820a 59a5a96 501820a 4688ec8 501820a 59a5a96 501820a 8b3adab 501820a 59a5a96 501820a 59a5a96 501820a 8b3adab 59a5a96 501820a 8b3adab 501820a 8b3adab 4688ec8 8b3adab 4688ec8 501820a 8b3adab 4688ec8 501820a 8b3adab 501820a 4688ec8 8b3adab 4688ec8 8b3adab 501820a 4688ec8 8b3adab 59a5a96 4688ec8 59a5a96 8b3adab 501820a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 | ---
license: cc-by-nc-4.0
task_categories:
- robotics
tags:
- lerobot
- hand-pose
- humanoid
- manipulation
- 6dof
- mediapipe
- egocentric
- imitation-learning
size_categories:
- 10K<n<100K
language:
- en
pretty_name: Dynamic Intelligence - Humanoid Robot Training Dataset
---
# Dynamic Intelligence — Humanoid Robot Training Dataset
A first-person (egocentric) video dataset of human hand manipulation, designed for training humanoid robot policies via imitation learning. Each episode captures a person performing an everyday household task — folding clothes, moving dishes, opening doors — filmed from a head-mounted iPhone using its built-in LiDAR and depth sensors.
The dataset pairs each video with frame-level 3D hand tracking and camera pose data, giving learning algorithms both the visual input and the corresponding spatial trajectories they need to reproduce the demonstrated behavior on a robot.
---
## How it works
**Recording setup.** A person wears an iPhone 13 Pro on their head (using a head mount). The phone runs the [Record3D](https://record3d.app/) app, which simultaneously captures:
- RGB video at 30 FPS
- Depth maps via the LiDAR sensor
- 6-DoF camera pose from ARKit (position + orientation of the phone in the room)
**Processing pipeline.** After recording, each episode goes through an offline pipeline:
1. **Hand detection** — [MediaPipe](https://ai.google.dev/edge/mediapipe/solutions/vision/hand_landmarker) detects 2D hand landmarks in every RGB frame
2. **3D reconstruction** — The 2D landmarks are projected into 3D space using the corresponding depth map, producing real-world XYZ positions (in cm) relative to the camera
3. **Action computation** — Frame-to-frame deltas are computed for both the camera and hand positions, representing the "actions" a robot would need to take
**Result.** Each episode contains a synchronized video and a parquet file with per-frame 3D observations and actions, formatted for the [LeRobot](https://github.com/huggingface/lerobot) framework.
---
## Dataset overview
| | |
|---|---|
| **Episodes** | 145 |
| **Total data frames** | ~59,000 |
| **Video FPS** | 30 |
| **Tasks** | 12 household manipulation tasks |
| **Format** | [LeRobot v2.0](https://github.com/huggingface/lerobot) |
| **Sensor** | iPhone 13 Pro (RGB + LiDAR + ARKit) |
| **Perspective** | Egocentric (head-mounted) |
### Tasks
| # | Task instruction | Episodes | Count |
|---|------------------|----------|-------|
| 1 | Fold the t-shirt on the bed. | 0–7 | 8 |
| 2 | Pick up the two items on the floor and put them on the bed. | 8–17 | 10 |
| 3 | Fold the jeans on the bed. | 18–27 | 10 |
| 4 | Fold the underwear on the table. | 28–37 | 10 |
| 5 | Put the pillow in its correct place. | 38–47 | 10 |
| 6 | Place the tableware on the kitchen counter. | 48–57 | 10 |
| 7 | Get out of the room and close the door behind you. | 58–66 | 9 |
| 8 | Put the sandals in the right place. | 67–76 | 10 |
| 9 | Put the cleaning cloth in the laundry basket. | 77–86 | 10 |
| 10 | Screw the cap back on the bottle. | 87–95 | 9 |
| 11 | Tuck the chairs into the table. | 96–126 | 31 |
| 12 | Put the dishes in the sink. | 127–144 | 18 |
---
## What's in the data
Each episode has two files: a **video** (`.mp4`) and a **parquet** table with one row per tracked frame.
### Observations (what the robot sees)
| Column | Shape | Unit | Description |
|--------|-------|------|-------------|
| `observation.camera_pose` | float[6] | cm, degrees | Position (x, y, z) and orientation (roll, pitch, yaw) of the head-mounted camera in the room. Comes from ARKit's visual-inertial odometry. |
| `observation.left_hand` | float[9] | cm | 3D positions of 3 keypoints on the left hand: wrist, thumb tip, and index fingertip (x, y, z each). |
| `observation.right_hand` | float[9] | cm | 3D positions of 3 keypoints on the right hand: wrist, index fingertip, and middle fingertip (x, y, z each). |
### Actions (what the robot should do)
| Column | Shape | Description |
|--------|-------|-------------|
| `action.camera_delta` | float[6] | Frame-to-frame change in camera pose (dx, dy, dz, droll, dpitch, dyaw). Represents head movement. |
| `action.left_hand_delta` | float[9] | Frame-to-frame change in left hand keypoint positions. |
| `action.right_hand_delta` | float[9] | Frame-to-frame change in right hand keypoint positions. |
### Metadata columns
| Column | Type | Description |
|--------|------|-------------|
| `episode_index` | int | Which episode (0–144) |
| `frame_index` | int | Frame number within the episode |
| `timestamp` | float | Time in seconds from episode start |
| `language_instruction` | string | Natural language task description (same for all frames in an episode) |
| `next.done` | bool | Whether this is the last frame of the episode |
### Coordinate system
All 3D positions are relative to the camera:
- **X** → right
- **Y** → down
- **Z** → forward (into the scene)
Hand values of `[0, 0, 0]` mean the hand was not detected in that frame (e.g. out of view or occluded).
---
## File structure
```
├── data/
│ ├── chunk-000/ # Parquet files for episodes 0–99
│ └── chunk-001/ # Parquet files for episodes 100–144
├── videos/
│ ├── chunk-000/rgb/ # MP4 videos for episodes 0–99
│ └── chunk-001/rgb/ # MP4 videos for episodes 100–144
├── meta/
│ ├── info.json # LeRobot dataset config
│ └── stats.json # Column statistics (min/max/mean/std)
└── README.md
```
---
## Quick start
### With LeRobot
```python
from lerobot.common.datasets.lerobot_dataset import LeRobotDataset
dataset = LeRobotDataset("DynamicIntelligence/humanoid-robots-training-dataset")
sample = dataset[0]
print(sample["language_instruction"]) # "Fold the t-shirt on the bed."
print(sample["observation.camera_pose"]) # tensor of shape [6]
print(sample["action.left_hand_delta"]) # tensor of shape [9]
```
### Direct download
```python
import pandas as pd
from huggingface_hub import hf_hub_download
path = hf_hub_download(
repo_id="DynamicIntelligence/humanoid-robots-training-dataset",
filename="data/chunk-000/episode_000000.parquet",
repo_type="dataset",
)
df = pd.read_parquet(path)
print(f"{len(df)} frames")
print(df[["timestamp", "observation.camera_pose", "language_instruction"]].head())
```
---
## Visualizer
Browse episodes interactively:
**[DI Hand Pose Sample Dataset Viewer](https://huggingface.co/spaces/DynamicIntelligence/dynamic_intelligence_sample_data)**
The viewer shows the egocentric video alongside time-series plots of camera pose and hand positions, so you can see exactly what the person was doing and how the tracking data aligns with the video.
---
## Citation
```bibtex
@dataset{dynamic_intelligence_2025,
author = {Dynamic Intelligence},
title = {Humanoid Robot Training Dataset: Egocentric Hand Manipulation Demonstrations},
year = {2025},
publisher = {Hugging Face},
url = {https://huggingface.co/datasets/DynamicIntelligence/humanoid-robots-training-dataset}
}
```
---
## Contact
**Organization:** [Dynamic Intelligence](https://dynamicintelligence.company)
**Email:** shayan@dynamicintelligence.company
|