Hoshipu commited on
Commit
5134f66
·
verified ·
1 Parent(s): 0b81dab

Add README with dataset card

Browse files
Files changed (1) hide show
  1. README.md +114 -0
README.md ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - robotics
7
+ - imitation-learning
8
+ - bimanual-manipulation
9
+ - aloha-agilex
10
+ - lerobot
11
+ pretty_name: RoboPro
12
+ size_categories:
13
+ - 10K<n<100K
14
+ ---
15
+
16
+ # RoboPro
17
+
18
+ **RoboPro** is an 80-task bimanual manipulation dataset collected on a dual-arm **Aloha-Agilex** platform. It contains 15,999 expert teleoperation episodes (3.73 M frames at 50 Hz) recorded from three RGB cameras and synchronised 14-DoF joint commands. Each task includes a **clean** variant and ten **cluttered** variants (`d6`…`d15`) with progressively added distractor objects.
19
+
20
+ The dataset is released in [LeRobot v2.1](https://github.com/huggingface/lerobot) format.
21
+
22
+ ## At a glance
23
+
24
+ | | |
25
+ |---|---|
26
+ | Robot | Aloha-Agilex (dual-arm, 14-DoF) |
27
+ | Episodes | 15,999 |
28
+ | Frames | 3,728,445 |
29
+ | FPS | 50 Hz |
30
+ | Cameras | 3 × RGB 480×640 H.264 (cam_high, cam_left_wrist, cam_right_wrist) |
31
+ | Tasks | 80 base × {clean, d6…d15} variants, 1,622 unique language prompts |
32
+ | Format | LeRobot v2.1 (Parquet + MP4) |
33
+ | License | CC-BY-4.0 |
34
+
35
+ ## Layout
36
+
37
+ ```
38
+ lerobot/roboreal_all_80tasks/
39
+ ├── meta/
40
+ │ ├── info.json # schema, fps, episode count
41
+ │ ├── tasks.jsonl # 1,622 task language descriptions
42
+ │ ├── episodes.jsonl # per-episode metadata
43
+ │ └── episodes_stats.jsonl
44
+ ├── data/
45
+ │ └── chunk-{000..015}/
46
+ │ └── episode_{000000..015998}.parquet # 50 Hz proprioception
47
+ └── videos/
48
+ └── chunk-{000..015}/
49
+ └── observation.images.{cam_high,cam_left_wrist,cam_right_wrist}/
50
+ └── episode_{000000..015998}.mp4 # H.264 yuv420p, GOP=2
51
+ ```
52
+
53
+ Each Parquet row contains:
54
+ - `observation.state` — `float32[14]` joint state
55
+ - `action` — `float32[14]` target joint command
56
+ - `timestamp`, `frame_index`, `episode_index`, `index`, `task_index`
57
+
58
+ The 14-DoF channel order for both `observation.state` and `action` is:
59
+ ```
60
+ left_waist, left_shoulder, left_elbow, left_forearm_roll,
61
+ left_wrist_angle, left_wrist_rotate, left_gripper,
62
+ right_waist, right_shoulder, right_elbow, right_forearm_roll,
63
+ right_wrist_angle, right_wrist_rotate, right_gripper
64
+ ```
65
+
66
+ ## Loading
67
+
68
+ ```python
69
+ from lerobot.common.datasets.lerobot_dataset import LeRobotDataset
70
+
71
+ ds = LeRobotDataset(
72
+ repo_id="Hoshipu/RoboPro",
73
+ root="lerobot/roboreal_all_80tasks", # subfolder within the repo
74
+ )
75
+ ```
76
+
77
+ Or stream individual files:
78
+
79
+ ```python
80
+ from huggingface_hub import hf_hub_download
81
+ import pyarrow.parquet as pq
82
+
83
+ p = hf_hub_download(
84
+ "Hoshipu/RoboPro",
85
+ "lerobot/roboreal_all_80tasks/data/chunk-000/episode_000000.parquet",
86
+ repo_type="dataset",
87
+ )
88
+ table = pq.read_table(p)
89
+ ```
90
+
91
+ ## Croissant
92
+
93
+ A validated [Croissant 1.0](https://mlcommons.org/croissant) metadata file is included at
94
+ `croissant.json` and conforms to the MLCommons Croissant + RAI specification.
95
+
96
+ ## Citation
97
+
98
+ ```bibtex
99
+ @dataset{roboPro2026,
100
+ title = {RoboPro: 80-Task Bimanual Manipulation Demonstrations on Aloha-Agilex},
101
+ author = {Li, Zhiyuan},
102
+ year = {2026},
103
+ url = {https://huggingface.co/datasets/Hoshipu/RoboPro}
104
+ }
105
+ ```
106
+
107
+ ## Limitations & ethical considerations
108
+
109
+ - All demonstrations were recorded on a single Aloha-Agilex unit in a fixed laboratory environment; lighting, camera intrinsics, and table geometry do not vary across episodes.
110
+ - Tasks are short-horizon (<10 s) tabletop manipulation — no long-horizon, navigation, or contact-rich (insertion, peg-in-hole) tasks.
111
+ - Demonstrations reflect the kinematic preferences of a small operator pool; they are not guaranteed to be task-optimal.
112
+ - No human faces, voices, biometric or other personal information is captured. Scenes consist of inanimate objects on a laboratory table.
113
+
114
+ See `croissant.json` for the full RAI block.