GT-111 commited on
Commit
2dd40dc
·
verified ·
1 Parent(s): d6a6f39

Add dataset card with citation and processing details

Browse files
Files changed (1) hide show
  1. README.md +136 -0
README.md ADDED
@@ -0,0 +1,136 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-sa-4.0
3
+ task_categories:
4
+ - robotics
5
+ - other
6
+ language:
7
+ - en
8
+ tags:
9
+ - synthetic
10
+ - real-world
11
+ - hybrid
12
+ - bimanual
13
+ - single-arm
14
+ - manipulation
15
+ - LeRobot
16
+ - v3
17
+ - end-effector-pose
18
+ size_categories:
19
+ - n>1T
20
+ pretty_name: "InternData-A1 (LeRobot v3 EE)"
21
+ viewer: false
22
+ ---
23
+
24
+ # InternData-A1 (LeRobot v3 EE)
25
+
26
+ This is a **LeRobot v3** format conversion of the [InternData-A1](https://huggingface.co/datasets/InternRobotics/InternData-A1) dataset, reorganized into a canonical **16D end-effector (EE) pose** representation for multi-dataset robot learning.
27
+
28
+ ## Original Dataset
29
+
30
+ **InternData-A1: Pioneering High-Fidelity Synthetic Data for Pre-training Generalist Policy**
31
+
32
+ > Yang Tian, Yuyin Yang, Yiman Xie, Zetao Cai, Xu Shi, Ning Gao, Hangxu Liu, Xuekun Jiang, Zherui Qiu, Feng Yuan, Yaping Li, Ping Wang, Junhao Cai, Jia Zeng, Hao Dong, Jiangmiao Pang. *InternData-A1: Pioneering High-Fidelity Synthetic Data for Pre-training Generalist Policy*. arXiv:2511.16651, 2025.
33
+
34
+ - **Original Source**: https://huggingface.co/datasets/InternRobotics/InternData-A1
35
+ - **arXiv**: https://arxiv.org/abs/2511.16651
36
+
37
+ InternData-A1 is a hybrid synthetic-real manipulation dataset containing over 630k trajectories and 7,433 hours across 4 embodiments (Franka, Genie1, Lift2, Split-ALOHA), 18 skills, 70 tasks, and 227 scenes, covering rigid, articulated, deformable, and fluid-object manipulation.
38
+
39
+ ## License
40
+
41
+ This dataset is released under [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/), consistent with the original InternData-A1 license.
42
+
43
+ **Important**: By downloading this dataset, you agree to the InternData-A1 Community License Agreement. The original dataset is gated — please also request access at the [original Hugging Face repo](https://huggingface.co/datasets/InternRobotics/InternData-A1).
44
+
45
+ ## Conversion Details
46
+
47
+ ### What we changed
48
+
49
+ 1. **Multi-Embodiment Canonicalization**: The original dataset spans 4 robot embodiments (Franka, Genie1, Lift2, Split-ALOHA) with varying proprioception layouts. We unified all embodiments into a common **16D bimanual EE pose** representation:
50
+ - `[left_x, left_y, left_z, left_qw, left_qx, left_qy, left_qz, left_gripper, right_x, right_y, right_z, right_qw, right_qx, right_qy, right_qz, right_gripper]`
51
+ - For single-arm embodiments (Franka, Genie1), the right-arm half is filled with learned padding values.
52
+ - Gripper values normalized to `[0, 1]`.
53
+
54
+ 2. **Forward Kinematics**: Where raw data stores joint positions, we compute forward kinematics to derive EE poses (position + quaternion).
55
+
56
+ 3. **Canonical Camera Keys**: Unified camera naming across embodiments:
57
+ - `observation.images.cam_high` — head/top camera
58
+ - `observation.images.cam_left_wrist` — left wrist camera
59
+ - `observation.images.cam_right_wrist` — right wrist camera (when available)
60
+
61
+ 4. **Image Masks**: Per-frame boolean masks indicate which camera views are valid (some embodiments lack certain cameras).
62
+
63
+ 5. **LeRobot v3 Format**: Converted to the latest LeRobot v3 dataset layout with sharded video storage (MP4) and Parquet-based frame data.
64
+
65
+ ### What we preserved
66
+
67
+ - All available camera views per embodiment
68
+ - Original episode structure and task labels
69
+ - Frame-level timestamps
70
+ - Embodiment metadata (`openpi_embodiment` in `info.json`)
71
+
72
+ ### Child Datasets
73
+
74
+ | Embodiment | Episodes | Frames | Type |
75
+ |---|---|---|---|
76
+ | franka | 96,930 | 66,441,068 | Single-arm (sim+real) |
77
+ | genie1 | 14,064 | 7,713,365 | Single-arm (sim) |
78
+ | lift2 | 205,877 | 153,366,384 | Bimanual (sim) |
79
+ | split_aloha | 170,877 | 150,163,119 | Bimanual (sim) |
80
+
81
+ ### Dataset Structure
82
+
83
+ ```
84
+ lerobot_v3_ee/
85
+ ├── franka/
86
+ │ ├── data/chunk-*/file-*.parquet
87
+ │ ├── videos/observation.images.cam_high/chunk-*/file-*.mp4
88
+ │ └── meta/{info.json, tasks.json, episodes.jsonl, stats.json}
89
+ ├── genie1/
90
+ │ └── ...
91
+ ├── lift2/
92
+ │ └── ...
93
+ ├── split_aloha/
94
+ │ └── ...
95
+ └── build_summary.json
96
+ ```
97
+
98
+ ## Usage
99
+
100
+ ```python
101
+ from lerobot.datasets import LeRobotDataset
102
+
103
+ # Load a specific embodiment
104
+ dataset = LeRobotDataset(
105
+ repo_id="GT-111/intern-a1-v3-ee",
106
+ root="franka", # or genie1, lift2, split_aloha
107
+ )
108
+ ```
109
+
110
+ For training with the LWM-VLA / OpenPI framework (automatically discovers all child datasets):
111
+ ```python
112
+ from openpi.training.config import MultiDatasetPretrainDatasetSpec
113
+
114
+ MultiDatasetPretrainDatasetSpec(
115
+ repo_id="GT-111/intern-a1-v3-ee",
116
+ dataset_type="intern_a1",
117
+ weight=0.2,
118
+ )
119
+ ```
120
+
121
+ ## Citation
122
+
123
+ If you use this dataset, please cite both the original InternData-A1 paper and this conversion:
124
+
125
+ ```bibtex
126
+ @article{tian2025interndata,
127
+ title={InternData-A1: Pioneering High-Fidelity Synthetic Data for Pre-training Generalist Policy},
128
+ author={Tian, Yang and Yang, Yuyin and Xie, Yiman and Cai, Zetao and Shi, Xu and Gao, Ning and Liu, Hangxu and Jiang, Xuekun and Qiu, Zherui and Yuan, Feng and Li, Yaping and Wang, Ping and Cai, Junhao and Zeng, Jia and Dong, Hao and Pang, Jiangmiao},
129
+ journal={arXiv preprint arXiv:2511.16651},
130
+ year={2025}
131
+ }
132
+ ```
133
+
134
+ ## Version History
135
+
136
+ - **v3.0** (current): LeRobot v3 conversion with canonical 16D EE pose layout across 4 embodiments