VITRA-VLA commited on
Commit
7696fe4
·
1 Parent(s): 1fe90e6

upload data

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
README.md CHANGED
@@ -1,3 +1,208 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - Embodied-AI
5
+ - Robotic manipulation
6
+ - Vision-Language-Action model
7
+ - Teleoperation
8
+ - Dexterous Hand
9
+ task_categories:
10
+ - robotics
11
+ - imitation-learning
12
+ - teleoperation
13
+ language:
14
+ - en
15
+ size_categories:
16
+ - 1K<n<10K
17
+ preview: false
18
+ ---
19
+
20
+ # VITRA Teleoperation Dataset
21
+
22
+ ## Dataset Summary
23
+
24
+ This dataset contains real-world robot teleoperation demonstrations collected
25
+ using a 7-DoF robotic arm equipped with a dexterous hand and a head-mounted RGB
26
+ camera. Each episode provides synchronized **numerical state/action data**
27
+ and **video recordings**. The dataset is used for finetuning in the project [VITRA: Scalable Vision-Language-Action Model Pretraining for Robotic Manipulation with Real-Life Human Activity Videos](https://arxiv.org/abs/2510.21571)
28
+
29
+ **Project page:** [https://microsoft.github.io/VITRA/](https://microsoft.github.io/VITRA/)
30
+
31
+ ---
32
+
33
+ ## Hardware Setup
34
+
35
+ - **Robot Arm**: Realman Arm (7-DoF)
36
+ URDF: https://github.com/RealManRobot/rm_models/tree/main/RM75/urdf/RM75-6F
37
+ - **Dexterous Hand**: XHand (12-DoF)
38
+ - **Head Camera**: Intel RealSense D455
39
+
40
+ ---
41
+
42
+ ## Data Modalities and Files
43
+
44
+ Each episode consists of two synchronized files:
45
+
46
+ - `<episode_id>.h5` — numerical data including robot states, actions, kinematics,
47
+ and metadata
48
+ - `<episode_id>.mp4` — RGB video stream recorded from the head-mounted camera
49
+
50
+ The two files correspond **one-to-one** and share the same episode identifier.
51
+
52
+ ---
53
+
54
+ ## Coordinate Frames
55
+
56
+ The dataset uses the following coordinate frames:
57
+
58
+ - **arm_base**
59
+ Root frame of the arm kinematic chain, defined in the URDF.
60
+ - **ee_urdf**
61
+ End-effector frame defined in the URDF (joint7).
62
+ - **hand_mount**
63
+ Rigid mounting frame of the dexterous hand, including flange offset.
64
+ This frame is rotationally aligned with the human hand axis illustrated in Figure 1 (identity rotation).
65
+ - **head_camera**
66
+ Optical center of the head-mounted RGB camera.
67
+
68
+
69
+ <figure align="center">
70
+ <img src="figure/hand_mount_frame.png" width="700"/>
71
+ <figcaption><b>Figure 1.</b> The <code>hand_mount</code> frame axes. Axis directions follow the human hand definition illustrated in the figure.</figcaption>
72
+ </figure>
73
+
74
+
75
+ ---
76
+
77
+ ## Arm Availability and Masks
78
+
79
+ The dataset format is compatible with both **right-arm-only** episodes and **dual-arm** episodes. The currently released dataset contains only right-arm data.
80
+
81
+ - Missing arms/hands are filled with zeros to keep array shapes consistent.
82
+ - Availability is indicated by:
83
+ - `/meta/has_left`, `/meta/has_right` (episode-level)
84
+ - `/mask/*` (frame-level)
85
+
86
+ ---
87
+
88
+ ## HDF5 File Structure
89
+
90
+ Each `.h5` file follows the structure below:
91
+ ```
92
+ /
93
+ ├── meta/
94
+ │ ├── instruction string
95
+ │ ├── video_path string
96
+ │ ├── frame_count int # T
97
+ │ ├── fps float
98
+ │ ├── has_left bool
99
+ │ ├── has_right bool
100
+
101
+ ├── kinematics/
102
+ │ ├── left_ee_urdf_to_hand_mount (4, 4) float64
103
+ │ ├── right_ee_urdf_to_hand_mount (4, 4) float64
104
+ │ ├── head_camera_to_left_arm_base (4, 4) float64
105
+ │ └── head_camera_to_right_arm_base (4, 4) float64
106
+
107
+ ├── observation/
108
+ │ └── camera/
109
+ │ └── intrinsics (3, 3) float64
110
+
111
+ ├── state/
112
+ │ ├── left_arm_joint (T, Na) float64 # joint positions (rad)
113
+ │ ├── right_arm_joint (T, Na) float64
114
+ │ ├── left_hand_mount_pose (T, 6) float64 # hand_mount pose in arm_base: [x,y,z,rx,ry,rz]
115
+ │ ├── right_hand_mount_pose (T, 6) float64 # hand_mount pose in arm_base: [x,y,z,rx,ry,rz]
116
+ | ├── left_hand_mount_pose_in_cam (T, 6) float64 # hand_mount pose in head_camera: [x,y,z,rx,ry,rz]
117
+ | ├── right_hand_mount_pose_in_cam (T, 6) float64 # hand_mount pose in head_camera: [x,y,z,rx,ry,rz]
118
+ │ ├── left_hand_joint (T, Nh) float64
119
+ │ └── right_hand_joint (T, Nh) float64
120
+
121
+ ├── action/
122
+ │ ├── left_arm_joint (T, Na) float64 # target joint positions (rad)
123
+ │ ├── right_arm_joint (T, Na) float64 # target joint positions (rad)
124
+ │ ├── left_hand_joint (T, Nh) float64 # target joint positions (rad)
125
+ │ └── right_hand_joint (T, Nh) float64 # target joint positions (rad)
126
+
127
+ └── mask/
128
+ ├── left_arm (T,) bool
129
+ ├── right_arm (T,) bool
130
+ ├── left_hand (T,) bool
131
+ └── right_hand (T,) bool
132
+ ```
133
+
134
+ ---
135
+
136
+ ## Pose Representation
137
+
138
+ For all `*_hand_mount_pose` entries, poses are represented as:
139
+
140
+ ```
141
+ [x, y, z, rx, ry, rz]
142
+ ```
143
+
144
+ where:
145
+ - `(x, y, z)` denotes the position of the `hand_mount` frame expressed in
146
+ `arm_base` (meters)
147
+ - `(rx, ry, rz)` denotes the rotation vector in axis–angle representation
148
+ (radians)
149
+
150
+ ---
151
+
152
+ ## Transformation Notation
153
+
154
+ A homogeneous transformation matrix is denoted by `T` (4×4).
155
+
156
+ - **Subscript**: reference frame (the coordinate system used for expression)
157
+ - **Superscript**: target frame (the frame being described)
158
+
159
+ All subscripts and superscripts are written on the **right-hand side** of `T`.
160
+
161
+ Example: $T^{hand\_mount}_{arm\_base}$ represents the pose of `hand_mount`
162
+ expressed in the `arm_base` frame.
163
+
164
+ ---
165
+
166
+ ## Kinematic Relations and Episode-Specific Transforms
167
+
168
+ Different flange hardware or camera mounting configurations may be used across
169
+ episodes or arms. As a result:
170
+
171
+ > **All kinematic and extrinsic transforms must be read from the current
172
+ > episode and must not be assumed constant.**
173
+
174
+ The hand mounting pose expressed in `arm_base` is computed as:
175
+
176
+ $$
177
+ T^{hand\_mount}_{arm\_base}
178
+ =
179
+ T^{ee\_urdf}_{arm\_base}
180
+ \cdot
181
+ T^{hand\_mount}_{ee\_urdf}
182
+ $$
183
+
184
+ where:
185
+
186
+ - $T^{ee\_urdf}_{arm\_base}$ is obtained via forward kinematics (FK) from the arm
187
+ joint positions, corresponding to the URDF end-effector frame (joint7).
188
+ - $T^{hand\_mount}_{ee\_urdf}$ is a fixed, episode-specific transform provided under
189
+ `/kinematics/*_ee_urdf_to_hand_mount`.
190
+
191
+ **Camera extrinsics may also vary across episodes.**
192
+ Transforms under `/kinematics/head_camera_to_*_arm_base` should likewise be
193
+ read from the current episode and must not be assumed constant.
194
+ The hand mounting pose expressed in `head_camera` frame (i.e. `*_hand_mount_pose_in_cam`) is:
195
+
196
+ $$
197
+ T^{hand\_mount}_{head\_camera}
198
+ =
199
+ (T^{head\_camera}_{arm\_base})^{-1}
200
+ \cdot
201
+ T^{hand\_mount}_{arm\_base}
202
+ $$
203
+
204
+ where:
205
+
206
+ - $T^{head\_camera}_{arm\_base}$ is episode-specific transform provided under `/kinematics/head_camera_to_*_arm_base`
207
+
208
+ ---
annotation/000000.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db533db915ad5446f0674942ab1b0955d5fa7b6da323f2746c54c8334cbdd779
3
+ size 167392
annotation/000001.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f63d9b026fe8c0d3a2de91f610840c1b5203df2db51ad25a83fcfa2a349bb88
3
+ size 120192
annotation/000002.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c9610748c34fa23e87cd272b339094ad4fef44571941ae1e3bff71f6f5b56a1
3
+ size 172992
annotation/000003.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86064c8981d56fcf875b3cd520aa108d8d4320ccd1de519f3eca6869004d303c
3
+ size 124992
annotation/000004.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e80f94f13daf0337da016a90b3464bceb2c834c3569e95d79a3fe12655c42fd9
3
+ size 134592
annotation/000005.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7bfd86730e0983b4fd6d1fc4f913948fe8cfc7da457443f1b517cb3fcc0fc920
3
+ size 163392
annotation/000006.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3c5ba82d471fb42dbe60a79cd6b585965e15868a12c65dc719d55edb4b2198eb
3
+ size 181792
annotation/000007.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b115ef256570d31287ed77f3c7c157936879c7f5a7103162cda02c4b7c2cde0d
3
+ size 127392
annotation/000008.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:78bedd5e34b9728151e99a977f0acc820cc017afadc137da85f6fde0fef72c8d
3
+ size 152992
annotation/000009.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb1b46bda04cd3337b93ea405a39b0e827b1669f41ff25304c1429dcae8f34c3
3
+ size 134592
annotation/000010.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b006fe8d2ec143571b5512842ead5cdf94f27f95ca1659380b444f9911302f73
3
+ size 247392
annotation/000011.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc4c26653fce3543fa481adc4a3e689f46a8b09b9255274c333064284fb269ae
3
+ size 130592
annotation/000012.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59d9e2890e16ce98f7dbdc72a2798cbb244a253316fa96ea7fb026310bac979e
3
+ size 169792
annotation/000013.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:591ee39cf64de15105ac52d171e0cb0d0e71de06fd1ddee4a51c6e0e0fce01e5
3
+ size 225792
annotation/000014.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:509709b5ef90ab31cc789511ec03bc4c9ca5bb7f9f251af0188b8fe5689b4070
3
+ size 149792
annotation/000015.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8933600384027cf57a21a67cba26e42d8848a03b426a5b26ce1db3066ad990dc
3
+ size 118592
annotation/000016.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3888cbd6e8da3075336c81a8ebe4b5d770a96e8039ae60b0ecf172a280b07272
3
+ size 208192
annotation/000017.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d4ec881728e86e85b2f780cc76d721fa4aff373e18da369efc1795a0a76f85f
3
+ size 184992
annotation/000018.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de4f1ba3834ef4f3907ecefa5b3247aa5661046a1d584cfc4c9ed76006df04e7
3
+ size 232992
annotation/000019.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e0156c9abe80c983530fb77a82d26ef28cfc33a8db26e611171a2fefd4c92fd
3
+ size 129792
annotation/000020.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04c850b84e7c0ca73e67defa7b463776e5125ea87a133f5d25d2d9ea67ebe99e
3
+ size 183392
annotation/000021.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c27183903593cb7604a0cb2e6035668589b1effff532a360bd7174f84586772a
3
+ size 161792
annotation/000022.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c5da877c9b6475af4a236beba9be0f8813e5c58777dfc48ae6b24b3c7a8e81b
3
+ size 124192
annotation/000023.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3d5d087c0e880521b3322db8f4393882f3ba2515378a86d431a747fb5ad24df
3
+ size 139392
annotation/000024.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:393858cbd94620fc65792b3efda946a0fc10d9ec238b658b1c61f9878eef5d08
3
+ size 137792
annotation/000025.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0a5ab7687cdc393ea4a7b76e74c211798d062f75122bf2ca153136878c0edb5
3
+ size 196192
annotation/000026.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:acee1cd017303875a6412334a01fc9cdff92b362aaa269d0b15baaaea1f1c75a
3
+ size 137792
annotation/000027.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf4b3228e5697fdbbcb501d9a9cfa9d4a21b691e4fe548087ae16af56a4e3019
3
+ size 191392
annotation/000028.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d340a7f22d9b174c213a1552ce60f8edd603a392daffa4a13c2b74eddab5424a
3
+ size 127392
annotation/000029.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1706c5c1542139a4c8379ef7dcb8917a2032f4f7d5c57b83d0593e7cb64fff7f
3
+ size 213792
annotation/000030.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:230d7d1699ea428e493bc2453c6f0b593539caef7863e150bcbcc9ad018c73ad
3
+ size 123392
annotation/000031.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:25662a6a49f7c878040c923b5fd84c3301253a3a9dcfd4cdc072f6ab194fb0b8
3
+ size 262592
annotation/000032.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:60da4a69534d5cb2eaa143311248ff35dcf2fc94f4a5b1f6c04ec933ac6b7d6e
3
+ size 151392
annotation/000033.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e2d77f821d63870219fdbf365540888dee057c42641703ca978af48b30dfe01b
3
+ size 141792
annotation/000034.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b412e0ebbdc05cc8ab94ba645d4e34d366dc22232acb74e380a374d49a966b79
3
+ size 151392
annotation/000035.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb47fd522948af6d9e817f93eefbc01509160526e7fcf08025cdc8e35329d2a9
3
+ size 114592
annotation/000036.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fad022d123e04dc55ce49880b2a4e83a94263816f35959b3e0ebc15d7a3ab3d6
3
+ size 408254
annotation/000037.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3acf30cedde1b2fcefb2b8cd588ae8807881e83e0b9bc4b304e2775eb64c1da1
3
+ size 281792
annotation/000038.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13f679a5f4c403c130ade5656c1591f328895e633f3d355550612383b01be300
3
+ size 140992
annotation/000039.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a48ee97e1d5333676de1adae8895035e8ca3d98694069d1e22a927f532a5e661
3
+ size 273792
annotation/000040.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a72dcf770d45bc4d3e5a78ef760db8d4b2ee16d1598fb930b93bb7e064d2f069
3
+ size 124192
annotation/000041.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf21b33b24e409186cb81357cb19ff134749e5d7aaad37c9c7831832fd33d77e
3
+ size 195392
annotation/000042.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71cd597e729ca1add711fbbb04c1c5859b8cfc86141ccc29fb14161e13e41f58
3
+ size 253792
annotation/000043.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7b5271880e4d7f24d77f73ca38fc8b3b05c9d32d23cde76c1bbf205d9a286fd
3
+ size 120992
annotation/000044.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f73c1a194b3517f228b798802fce66ec59e5cfed7a9d75813b1bc820f56ff731
3
+ size 190592
annotation/000045.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b9f22d1979ff8ead72b9083ef06214c507e1a5af5f90e64cfabfab75ab16a96
3
+ size 131392
annotation/000046.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b3d24ca1fca5b9f8294b7b47e6e4ec847b0f4e0f5eb7cfb2d3dcd449a1fd12c
3
+ size 176992
annotation/000047.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5bd0cd2747c29c5bc1f63629db27c935b82b2d54b43ba228ba5e754a061ba8b2
3
+ size 268192
annotation/000048.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:30830570d747e75b6b677a4691ec94f292667f3a727e374eb575a2be586f1746
3
+ size 112192