Dataset card: stats + collection link
Browse files
README.md
CHANGED
|
@@ -13,9 +13,17 @@ configs:
|
|
| 13 |
|
| 14 |
# Target (Human) — composite-seen
|
| 15 |
|
| 16 |
-
Human teleoperation
|
| 17 |
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
## Loading
|
| 21 |
|
|
@@ -24,22 +32,17 @@ from lerobot.datasets.lerobot_dataset import LeRobotDataset
|
|
| 24 |
ds = LeRobotDataset("ember-lab-berkeley/robocasa365-target-composite-seen")
|
| 25 |
```
|
| 26 |
|
| 27 |
-
##
|
| 28 |
-
|
| 29 |
-
See `meta/info.json` for authoritative episode/frame counts, feature schema, and fps. All 6 robocasa365-* repos share the same feature schema:
|
| 30 |
-
|
| 31 |
-
- `observation.state`: float64[16] — base_pos(3) + base_quat(4) + eef_pos_rel(3) + eef_quat_rel(4) + gripper_qpos(2)
|
| 32 |
-
- `action`: float64[12] — base_motion(4) + control_mode(1) + eef_delta_pos(3) + eef_delta_aa(3) + gripper(1)
|
| 33 |
-
- `observation.images.robot0_agentview_left` / `_right` / `_eye_in_hand`: video, 256x256x3, h264, 20 fps
|
| 34 |
-
- Robot: PandaOmron (Panda 7-DoF arm + Omron mobile base + torso)
|
| 35 |
|
| 36 |
-
|
|
|
|
|
|
|
|
|
|
| 37 |
|
| 38 |
## License
|
| 39 |
|
| 40 |
-
MIT, inherited from [RoboCasa365](https://github.com/robocasa/robocasa).
|
| 41 |
|
| 42 |
-
##
|
| 43 |
|
| 44 |
-
|
| 45 |
-
- Upstream project: [RoboCasa](https://robocasa.ai) ([paper](https://robocasa.ai/assets/robocasa365_iclr26.pdf))
|
|
|
|
| 13 |
|
| 14 |
# Target (Human) — composite-seen
|
| 15 |
|
| 16 |
+
Human teleoperation data for 16 composite tasks (500 demos/task) recorded in 10 held-out target kitchens. All tasks are also represented in the pretraining datasets ('composite-seen').
|
| 17 |
|
| 18 |
+
Part of the [**RoboCasa365 collection**](https://huggingface.co/collections/ember-lab-berkeley/robocasa365). Flat LeRobot v3.0 mirror of [RoboCasa365](https://robocasa.ai) — standard layout, drop-in loadable.
|
| 19 |
+
|
| 20 |
+
## Stats
|
| 21 |
+
|
| 22 |
+
- Episodes: **8,077**
|
| 23 |
+
- Frames: **6,002,265** (20 fps → 83 h)
|
| 24 |
+
- Tasks: **382** (natural-language phrasings; underlying RoboCasa task classes: 16)
|
| 25 |
+
- Cameras: 3 × 256×256 h264 video (`robot0_agentview_left` / `_right` / `_eye_in_hand`)
|
| 26 |
+
- Robot: PandaOmron (Panda 7-DoF arm + Omron mobile base + torso lift)
|
| 27 |
|
| 28 |
## Loading
|
| 29 |
|
|
|
|
| 32 |
ds = LeRobotDataset("ember-lab-berkeley/robocasa365-target-composite-seen")
|
| 33 |
```
|
| 34 |
|
| 35 |
+
## Feature schema (shared across all 6 robocasa365 repos)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
|
| 37 |
+
- `observation.state`: float64[16] — `base_pos(3) + base_quat(4) + eef_pos_rel(3) + eef_quat_rel(4) + gripper_qpos(2)`
|
| 38 |
+
- `action`: float64[12] — `base_motion(4) + control_mode(1) + eef_delta_pos(3) + eef_delta_aa(3) + gripper(1)`
|
| 39 |
+
- `control_mode` convention: **`-1` = arm active** (eef delta + gripper drive), **`+1` = base active** (base_motion drives). Source of truth: `robosuite.controllers.composite.HybridMobileBase`.
|
| 40 |
+
- `observation.images.robot0_agentview_left` / `_right` / `_eye_in_hand`: video, 256×256×3
|
| 41 |
|
| 42 |
## License
|
| 43 |
|
| 44 |
+
MIT, inherited from [upstream RoboCasa365](https://github.com/robocasa/robocasa).
|
| 45 |
|
| 46 |
+
## Citation
|
| 47 |
|
| 48 |
+
[RoboCasa365 paper (ICLR 2026)](https://robocasa.ai/assets/robocasa365_iclr26.pdf)
|
|
|