Datasets:
File size: 5,474 Bytes
0010858 dcc3bc0 0010858 dcc3bc0 a487ee7 dcc3bc0 a487ee7 dcc3bc0 | 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 | ---
license: cc-by-4.0
task_categories:
- robotics
tags:
- LeRobot
- robotics
- manipulation
- mobile-manipulation
- imitation-learning
- agibot-g1
- synthetic-data
pretty_name: WANDA — Worlds in One Demo
size_categories:
- 10K<n<100K
---
# WANDA: Worlds in One Demo
### A Synthetic Data Engine for Learning Open-World Mobile Manipulation
**🌐 Project page: https://wanda.lecar-lab.org/** · 📄 [Paper (PDF)](https://wanda.lecar-lab.org/assets/paper/WANDA.pdf) · 💻 Code (coming soon) · 🕹️ [Interactive 4D viewer](https://wanda.lecar-lab.org/)
Lingxiao Guo\*, Huanyu Li\*, Guanya Shi — **Carnegie Mellon University**
<sub>\*Equal contribution; order decided by a coin flip.</sub>
---
WANDA is a synthetic data engine that turns **one** human demonstration into diverse training data for
open-world mobile manipulation. From a single RGB-D demo, WANDA reconstructs the scene (Gaussian-splat
background, object meshes, and interaction trajectories), then re-generates it across new spatial
configurations, scenes, and even robot embodiments — producing the large-scale demonstration sets used
to train the vision-language-action (VLA) policies in the paper.
> *Robot data has been priced in human hours. WANDA prices it in compute.*
This repository hosts the WANDA-generated training datasets for the **five** long-horizon tasks
evaluated in the paper, each learned from a single real human demonstration on the **Agibot G1**.
Policies trained on this data reach 54.8% task progress on real-world rollouts and outperform policies
trained on 50 teleoperated demonstrations — while one hour of training data is generated in ≈3 GPU-hours.
## Dataset overview
| Subset | Task instruction | Episodes | Task chunks |
|---|---|---:|---|
| `drop_trash` | Pick up the empty can from the table and drop it into the trash bin. | 3,496 | task-0051 … 0054 |
| `fridge` | Pick up the snack bag, put it into the fridge, and close the door. | 436 | task-0056 |
| `lunch_box` | Close the lunch box on the table, pick it up, and throw it into the sink. | 2,043 | task-0052 … 0054 |
| `pour` | Pick up the kettle and pour water into the cups. | 7,775 | task-0055 … 0062 |
| `utensils` | Pick up the utensils from the table, place them in the basket, and put the basket in the sink. | 3,172 | task-0053 … 0056 |
| **Total** | | **16,922** | ~26.8M timesteps (≈248 h @ 30 FPS) |
Each subset is a **self-contained [LeRobot](https://github.com/huggingface/lerobot) v2.1 dataset**
(`meta/`, `data/`, `videos/`). Different task chunks within a subset correspond to different
spatial configurations / scenes generated by WANDA for the same task.
## Format
- **Robot:** `agibot_g1` (dual-arm mobile manipulator) · **Control/record rate:** 30 FPS · **Codebase:** LeRobot `v2.1`
**Per-frame features (parquet):**
| Key | Dtype | Shape | Description |
|---|---|---|---|
| `observation.state` | float32 | [20] | Proprioceptive robot state |
| `action` | float32 | [20] | Action target |
| `observation.cam_rel_poses` | float32 | [21] | Camera poses relative to the robot |
| `observation.task_info` | float32 | [46] | Task/goal conditioning vector |
| `observation.images.rgb.head` | video | [800, 1280, 3]† | Head camera |
| `observation.images.rgb.left_wrist` | video | [480, 848, 3] | Left-wrist camera |
| `observation.images.rgb.right_wrist` | video | [480, 848, 3] | Right-wrist camera |
| `timestamp`, `index`, `episode_index`, `task_index` | — | — | LeRobot bookkeeping |
<sub>† Head-camera resolution is 800×1280 for all subsets except `utensils` (480×768).</sub>
**Directory layout (per subset):**
```
<subset>/
├── meta/
│ ├── info.json # features, fps, robot_type, totals
│ ├── tasks.jsonl # natural-language task instructions
│ ├── episodes.jsonl # per-episode index
│ └── episodes_stats.jsonl # per-episode feature statistics
├── data/
│ └── task-XXXX/episode_XXXXXXXX.parquet
└── videos/
└── task-XXXX/observation.images.rgb.<cam>/episode_XXXXXXXX.mp4
```
## Usage
Download a single subset and load it with LeRobot:
```python
from huggingface_hub import snapshot_download
from lerobot.common.datasets.lerobot_dataset import LeRobotDataset
root = snapshot_download(
"LeCAR-Lab/Wanda",
repo_type="dataset",
allow_patterns="utensils/*", # one of: drop_trash, fridge, lunch_box, pour, utensils
)
ds = LeRobotDataset(repo_id="LeCAR-Lab/Wanda", root=f"{root}/utensils")
print(ds)
print(ds[0].keys())
```
Or read the raw parquet directly (no LeRobot required):
```python
import pandas as pd
from huggingface_hub import hf_hub_download
path = hf_hub_download(
"LeCAR-Lab/Wanda",
"utensils/data/task-0053/episode_00530010.parquet",
repo_type="dataset",
)
df = pd.read_parquet(path)
print(df.shape, df.columns.tolist())
```
## License
Released under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/). If you use this dataset,
please provide attribution and cite the paper below.
## Citation
```bibtex
@article{guo2026wanda,
title = {Worlds in One Demo: A Synthetic Data Engine for Learning Open-World Mobile Manipulation},
author = {Guo, Lingxiao and Li, Huanyu and Shi, Guanya},
year = {2026}
}
```
## Links
- **Project page & interactive 4D viewer:** https://wanda.lecar-lab.org/
- **Paper (PDF):** https://wanda.lecar-lab.org/assets/paper/WANDA.pdf
- **Code:** coming soon
|