TongTyphoon commited on
Commit
f5fa3b5
·
verified ·
1 Parent(s): b01c117

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - lerobot
7
+ - embodied-ai
8
+ - ego-centric
9
+ - hand-tracking
10
+ - manipulation
11
+ - binocular
12
+ - multi-view
13
+ - retargeting
14
+ configs:
15
+ - config_name: default
16
+ data_files:
17
+ - split: train
18
+ path: data/chunk-*/file-*.parquet
19
+ ---
20
+
21
+ # BaseMatrix EGO Desktop Demo
22
+
23
+ Human hand manipulation demonstrations captured with binocular egocentric cameras + exocentric view, processed through a 6-stage pipeline into structured observations for robot learning.
24
+
25
+ **This is a preview dataset.** Full-scale datasets with hundreds of episodes are available upon request — contact info@basematrix.ai.
26
+
27
+ ## Quick Start
28
+
29
+ ```python
30
+ from lerobot.common.datasets.lerobot_dataset import LeRobotDataset
31
+
32
+ dataset = LeRobotDataset("basematrix/ego-desktop-demo")
33
+ print(dataset)
34
+ print(dataset[0].keys())
35
+ ```
36
+
37
+ ## Dataset Summary
38
+
39
+ | Property | Value |
40
+ |----------|-------|
41
+ | Format | LeRobot v3.0 |
42
+ | Episodes | 1 |
43
+ | Frames | 2,114 |
44
+ | Duration | ~70 seconds |
45
+ | FPS | 30 |
46
+ | Scene | Desktop object manipulation |
47
+ | Capture device | Orbbec EGO binocular (stereo fisheye, 1600x1300) + iPhone EXO (1920x1080) |
48
+ | Time sync | Hardware PTS (< 40 us L-R stereo) + audio beep sync (< 3.3 ms EXO) |
49
+
50
+ ## Features (24 channels)
51
+
52
+ ### Observation — Vision (3 video streams)
53
+
54
+ | Feature | Shape | Description |
55
+ |---------|-------|-------------|
56
+ | `observation.images.ego_left` | (3, 1300, 1600) | Left stereo fisheye, 30fps H.264 |
57
+ | `observation.images.ego_right` | (3, 1300, 1600) | Right stereo fisheye, 30fps H.264 |
58
+ | `observation.images.exo_iphone` | (3, 1080, 1920) | Exocentric iPhone view, 30fps |
59
+
60
+ ### Observation — State (11 channels)
61
+
62
+ | Feature | Shape | Description |
63
+ |---------|-------|-------------|
64
+ | `observation.state.camera_pose` | (7,) | ORB-SLAM3 stereo-inertial 6DoF: tx, ty, tz, qx, qy, qz, qw |
65
+ | `observation.state.left_wrist` | (3,) | Left wrist 3D position in world frame (meters) |
66
+ | `observation.state.right_wrist` | (3,) | Right wrist 3D position in world frame (meters) |
67
+ | `observation.state.left_keypoints_3d` | (63,) | Left hand 21 joints x 3 coords (MANO topology, world frame) |
68
+ | `observation.state.right_keypoints_3d` | (63,) | Right hand 21 joints x 3 coords (MANO topology, world frame) |
69
+ | `observation.state.left_contact` | (1,) | Left hand contact state (0/1) |
70
+ | `observation.state.right_contact` | (1,) | Right hand contact state (0/1) |
71
+ | `observation.state.left_force` | (3,) | Reserved — force/torque (zeros, sensor not connected) |
72
+ | `observation.state.right_force` | (3,) | Reserved — force/torque (zeros, sensor not connected) |
73
+ | `observation.state.left_tactile` | (48,) | Reserved — tactile array (zeros, sensor not connected) |
74
+ | `observation.state.right_tactile` | (48,) | Reserved — tactile array (zeros, sensor not connected) |
75
+ | `observation.state.gripper_force` | (2,) | Reserved — gripper force (zeros, sensor not connected) |
76
+
77
+ ### Action (4 channels)
78
+
79
+ | Feature | Shape | Description |
80
+ |---------|-------|-------------|
81
+ | `action.left_wrist_delta` | (3,) | Left wrist displacement (dx, dy, dz in meters) |
82
+ | `action.right_wrist_delta` | (3,) | Right wrist displacement (dx, dy, dz in meters) |
83
+ | `action.left_grasp` | (1,) | Left hand grasp signal (0 = open, 1 = grasping) |
84
+ | `action.right_grasp` | (1,) | Right hand grasp signal (0 = open, 1 = grasping) |
85
+
86
+ ## Processing Pipeline
87
+
88
+ Each recording goes through 6 automated stages:
89
+
90
+ | Stage | Tool | Output |
91
+ |-------|------|--------|
92
+ | L0 | Audio beep detection (1kHz) | Multi-camera time alignment |
93
+ | L1 | Nearest-neighbor PTS matching | Stereo frame pairs + EXO sync |
94
+ | L2 | ORB-SLAM3 (stereo-inertial) | 6DoF camera trajectory |
95
+ | L3 | Hands23 + WiLoR + HaWoR | Contact detection, 3D hand skeleton, world-frame wrist trajectory |
96
+ | L4 | GPT-4.1 Vision | Semantic annotation (objects, phases, sub-activities) |
97
+ | L5 | Cross-layer verification (24 checks) | Quality score + dataset card |
98
+ | L6 | LeRobot v3.0 packaging | This dataset |
99
+
100
+ ### Hand Tracking Stack
101
+
102
+ Three complementary models provide different levels of hand understanding:
103
+
104
+ - **Hands23 (HOI-DETR)**: Hand-object interaction detection — bounding boxes, contact state, grasp classification
105
+ - **WiLoR-mini**: Single-frame 3D hand pose — 21 MANO keypoints per hand
106
+ - **HaWoR**: Temporal hand-in-world reconstruction — globally consistent wrist trajectories in ORB-SLAM3's world coordinate frame
107
+
108
+ ## Retargeting
109
+
110
+ This dataset provides **human-frame observations** (hand skeleton + wrist trajectory). To use with a specific robot embodiment:
111
+
112
+ - **For parallel-jaw grippers** (Franka, ALOHA, UR5): Map `left/right_wrist` + `left/right_grasp` to end-effector pose + gripper open/close via inverse kinematics
113
+ - **For dexterous hands** (LEAP, Allegro, Shadow): Map `left/right_keypoints_3d` (21 MANO joints) to robot finger joint angles via fingertip-position optimization
114
+
115
+ The `action.{left,right}_wrist_delta` features can serve as a starting point for action-space definition, though most VLA pipelines will want to define actions in robot joint space after retargeting.
116
+
117
+ ## Coordinate System
118
+
119
+ - **World frame**: ORB-SLAM3 stereo-inertial SLAM coordinate system. Origin at first tracked frame. Right-handed, Y-up.
120
+ - **Hand keypoints**: Relative to wrist (wrist = origin), following MANO joint topology (0=wrist, 1-4=thumb, 5-8=index, 9-12=middle, 13-16=ring, 17-20=pinky).
121
+ - **Camera pose**: Position (tx, ty, tz) in meters + orientation as unit quaternion (qx, qy, qz, qw).
122
+
123
+ ## Capture Hardware
124
+
125
+ - **Head-mounted**: Orbbec Femto Mega (EGO configuration) — 140g, dual global-shutter fisheye, 1000Hz IMU, 120mm stereo baseline, H.264 encoding
126
+ - **Exocentric**: iPhone — standard wide lens, 1080p 30fps, audio beep sync
127
+
128
+ ## Citation
129
+
130
+ ```bibtex
131
+ @misc{basematrix2026ego,
132
+ title={BaseMatrix EGO Desktop Demo: Binocular Egocentric Hand Manipulation Dataset},
133
+ author={BaseMatrix},
134
+ year={2026},
135
+ url={https://huggingface.co/datasets/basematrix/ego-desktop-demo}
136
+ }
137
+ ```
138
+
139
+ ## License
140
+
141
+ CC BY-NC 4.0 — free for research and evaluation. Contact info@basematrix.ai for commercial licensing.
142
+
143
+ ## Contact
144
+
145
+ - Website: [basematrix.ai](https://basematrix.ai)
146
+ - Email: info@basematrix.ai
147
+ - Pipeline demo: [basematrix.ai/pipeline-showcase](https://basematrix.ai/pipeline-showcase/)
data/chunk-000/file-000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f188051c81761692648c255e860ee854d44c8e37840da5cca2f324e1f8617b60
3
+ size 874671
meta/episodes/chunk-000/file-000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ebc48698034dfbd70755482109605bbea33301c16a94b3021614d4e8399b8f8
3
+ size 8647
meta/info.json ADDED
@@ -0,0 +1,256 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "codebase_version": "v3.0",
3
+ "repo_id": "basematrix/ego-desktop-demo",
4
+ "robot_type": "orbbec_ego_binocular",
5
+ "fps": 30,
6
+ "features": {
7
+ "timestamp": {
8
+ "dtype": "float32",
9
+ "shape": [
10
+ 1
11
+ ],
12
+ "names": null
13
+ },
14
+ "frame_index": {
15
+ "dtype": "int64",
16
+ "shape": [
17
+ 1
18
+ ],
19
+ "names": null
20
+ },
21
+ "episode_index": {
22
+ "dtype": "int64",
23
+ "shape": [
24
+ 1
25
+ ],
26
+ "names": null
27
+ },
28
+ "index": {
29
+ "dtype": "int64",
30
+ "shape": [
31
+ 1
32
+ ],
33
+ "names": null
34
+ },
35
+ "task_index": {
36
+ "dtype": "int64",
37
+ "shape": [
38
+ 1
39
+ ],
40
+ "names": null
41
+ },
42
+ "observation.images.ego_left": {
43
+ "dtype": "video",
44
+ "shape": [
45
+ 3,
46
+ 1300,
47
+ 1600
48
+ ],
49
+ "names": [
50
+ "channels",
51
+ "height",
52
+ "width"
53
+ ]
54
+ },
55
+ "observation.images.ego_right": {
56
+ "dtype": "video",
57
+ "shape": [
58
+ 3,
59
+ 1300,
60
+ 1600
61
+ ],
62
+ "names": [
63
+ "channels",
64
+ "height",
65
+ "width"
66
+ ]
67
+ },
68
+ "observation.images.exo_iphone": {
69
+ "dtype": "video",
70
+ "shape": [
71
+ 3,
72
+ 1080,
73
+ 1920
74
+ ],
75
+ "names": [
76
+ "channels",
77
+ "height",
78
+ "width"
79
+ ]
80
+ },
81
+ "observation.state.camera_pose": {
82
+ "dtype": "float32",
83
+ "shape": [
84
+ 7
85
+ ],
86
+ "names": {
87
+ "dims": [
88
+ "tx",
89
+ "ty",
90
+ "tz",
91
+ "qx",
92
+ "qy",
93
+ "qz",
94
+ "qw"
95
+ ]
96
+ }
97
+ },
98
+ "observation.state.left_wrist": {
99
+ "dtype": "float32",
100
+ "shape": [
101
+ 3
102
+ ],
103
+ "names": {
104
+ "dims": [
105
+ "x",
106
+ "y",
107
+ "z"
108
+ ]
109
+ }
110
+ },
111
+ "observation.state.right_wrist": {
112
+ "dtype": "float32",
113
+ "shape": [
114
+ 3
115
+ ],
116
+ "names": {
117
+ "dims": [
118
+ "x",
119
+ "y",
120
+ "z"
121
+ ]
122
+ }
123
+ },
124
+ "observation.state.left_keypoints_3d": {
125
+ "dtype": "float32",
126
+ "shape": [
127
+ 63
128
+ ],
129
+ "names": null
130
+ },
131
+ "observation.state.right_keypoints_3d": {
132
+ "dtype": "float32",
133
+ "shape": [
134
+ 63
135
+ ],
136
+ "names": null
137
+ },
138
+ "observation.state.left_contact": {
139
+ "dtype": "int64",
140
+ "shape": [
141
+ 1
142
+ ],
143
+ "names": null
144
+ },
145
+ "observation.state.right_contact": {
146
+ "dtype": "int64",
147
+ "shape": [
148
+ 1
149
+ ],
150
+ "names": null
151
+ },
152
+ "action.left_wrist_delta": {
153
+ "dtype": "float32",
154
+ "shape": [
155
+ 3
156
+ ],
157
+ "names": {
158
+ "dims": [
159
+ "dx",
160
+ "dy",
161
+ "dz"
162
+ ]
163
+ }
164
+ },
165
+ "action.right_wrist_delta": {
166
+ "dtype": "float32",
167
+ "shape": [
168
+ 3
169
+ ],
170
+ "names": {
171
+ "dims": [
172
+ "dx",
173
+ "dy",
174
+ "dz"
175
+ ]
176
+ }
177
+ },
178
+ "action.left_grasp": {
179
+ "dtype": "int64",
180
+ "shape": [
181
+ 1
182
+ ],
183
+ "names": null
184
+ },
185
+ "action.right_grasp": {
186
+ "dtype": "int64",
187
+ "shape": [
188
+ 1
189
+ ],
190
+ "names": null
191
+ },
192
+ "observation.state.left_force": {
193
+ "dtype": "float32",
194
+ "shape": [
195
+ 3
196
+ ],
197
+ "names": {
198
+ "dims": [
199
+ "fx",
200
+ "fy",
201
+ "fz"
202
+ ]
203
+ }
204
+ },
205
+ "observation.state.right_force": {
206
+ "dtype": "float32",
207
+ "shape": [
208
+ 3
209
+ ],
210
+ "names": {
211
+ "dims": [
212
+ "fx",
213
+ "fy",
214
+ "fz"
215
+ ]
216
+ }
217
+ },
218
+ "observation.state.left_tactile": {
219
+ "dtype": "float32",
220
+ "shape": [
221
+ 48
222
+ ],
223
+ "names": null
224
+ },
225
+ "observation.state.right_tactile": {
226
+ "dtype": "float32",
227
+ "shape": [
228
+ 48
229
+ ],
230
+ "names": null
231
+ },
232
+ "observation.state.gripper_force": {
233
+ "dtype": "float32",
234
+ "shape": [
235
+ 2
236
+ ],
237
+ "names": {
238
+ "dims": [
239
+ "left_n",
240
+ "right_n"
241
+ ]
242
+ }
243
+ }
244
+ },
245
+ "total_episodes": 1,
246
+ "total_frames": 2114,
247
+ "total_tasks": 1,
248
+ "chunks_size": 1000,
249
+ "data_files_size_in_mb": 100,
250
+ "video_files_size_in_mb": 200,
251
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
252
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
253
+ "splits": {
254
+ "train": "0:1"
255
+ }
256
+ }
meta/stats.json ADDED
@@ -0,0 +1,1174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "observation.state.camera_pose": {
3
+ "mean": [
4
+ -0.136651986610092,
5
+ 0.01535108332566807,
6
+ -0.016924818387096145,
7
+ -0.00884142420630501,
8
+ -0.00021962930144437504,
9
+ 0.02268289438984418,
10
+ 0.1075876174721948
11
+ ],
12
+ "std": [
13
+ 0.14114445610208678,
14
+ 0.13667113926267946,
15
+ 0.07610460763035408,
16
+ 0.1066018366598641,
17
+ 0.042957072999849695,
18
+ 0.11657319722139131,
19
+ 0.9803232379423978
20
+ ],
21
+ "min": [
22
+ -0.4872698187828064,
23
+ -0.2428174614906311,
24
+ -0.2002672553062439,
25
+ -0.2875051498413086,
26
+ -0.14403921365737915,
27
+ -0.3051585853099823,
28
+ -0.9977768659591675
29
+ ],
30
+ "max": [
31
+ 0.11541882902383804,
32
+ 0.37317153811454773,
33
+ 0.16228298842906952,
34
+ 0.2889668941497803,
35
+ 0.13910171389579773,
36
+ 0.3016568720340729,
37
+ 1.0
38
+ ]
39
+ },
40
+ "observation.state.left_wrist": {
41
+ "mean": [
42
+ -0.3808515611401598,
43
+ -0.40390876139705345,
44
+ -0.7131968888056763
45
+ ],
46
+ "std": [
47
+ 0.4052956989832238,
48
+ 0.1401670767003317,
49
+ 0.14900563631932043
50
+ ],
51
+ "min": [
52
+ -2.096334934234619,
53
+ -0.8689994812011719,
54
+ -1.409617304801941
55
+ ],
56
+ "max": [
57
+ 0.08116402477025986,
58
+ 0.16198712587356567,
59
+ 0.0
60
+ ]
61
+ },
62
+ "observation.state.right_wrist": {
63
+ "mean": [
64
+ -0.24785531492147844,
65
+ -0.20236895367231789,
66
+ -0.790455676974727
67
+ ],
68
+ "std": [
69
+ 0.7178463677305417,
70
+ 0.24575866596199394,
71
+ 0.3790839718593821
72
+ ],
73
+ "min": [
74
+ -4.619459629058838,
75
+ -1.0048747062683105,
76
+ -3.3483893871307373
77
+ ],
78
+ "max": [
79
+ 0.5048914551734924,
80
+ 0.46518540382385254,
81
+ 0.0
82
+ ]
83
+ },
84
+ "observation.state.left_keypoints_3d": {
85
+ "mean": [
86
+ -0.08569546702230664,
87
+ 0.0057143948499955655,
88
+ 0.0055419521277652335,
89
+ -0.065431015606522,
90
+ -0.01064744701674217,
91
+ 0.001281853796968848,
92
+ -0.05080589215035921,
93
+ -0.02715861334931546,
94
+ 0.005471904489829389,
95
+ -0.03863164221439704,
96
+ -0.042346888086992045,
97
+ 0.011558514021428667,
98
+ -0.02360103168686043,
99
+ -0.06115006577212966,
100
+ 0.021499134367552138,
101
+ -0.0577117447144825,
102
+ -0.05798426639841994,
103
+ 0.012310841986900698,
104
+ -0.04648522619605628,
105
+ -0.0781235270829503,
106
+ 0.022477190000557517,
107
+ -0.035736057114353015,
108
+ -0.08697271572607468,
109
+ 0.031133807511857466,
110
+ -0.02271844679269457,
111
+ -0.09369956668864586,
112
+ 0.040794406562000375,
113
+ -0.06458277282787024,
114
+ -0.06235959243413516,
115
+ 0.024692114305135317,
116
+ -0.05249875597831993,
117
+ -0.08093978818453136,
118
+ 0.03433440353583929,
119
+ -0.04074741168301852,
120
+ -0.08753998322428232,
121
+ 0.04286156311391544,
122
+ -0.02702332151984988,
123
+ -0.09246653933060428,
124
+ 0.05019231235067463,
125
+ -0.07248251417840328,
126
+ -0.05191261630748507,
127
+ 0.035044187318635865,
128
+ -0.06098875101715637,
129
+ -0.06995182524566507,
130
+ 0.040467180501997414,
131
+ -0.04897840096912186,
132
+ -0.07851912418174202,
133
+ 0.048802915449512374,
134
+ -0.035945044081506575,
135
+ -0.08360949798699471,
136
+ 0.05404364921737642,
137
+ -0.07679278645294392,
138
+ -0.041285826247485044,
139
+ 0.04295384799295027,
140
+ -0.0685724714451955,
141
+ -0.053713112815777536,
142
+ 0.04719764566579402,
143
+ -0.05983622511716642,
144
+ -0.06177801542273082,
145
+ 0.05248798890957431,
146
+ -0.050532025668343625,
147
+ -0.0697985588658386,
148
+ 0.05685491779556563
149
+ ],
150
+ "std": [
151
+ 0.02876156032891661,
152
+ 0.0019180900455254663,
153
+ 0.0018600014564705725,
154
+ 0.025904137762249847,
155
+ 0.013848504062268946,
156
+ 0.013556413021797921,
157
+ 0.026575273978875623,
158
+ 0.02410145214128334,
159
+ 0.02287064396817287,
160
+ 0.028986121477248317,
161
+ 0.03309217335560042,
162
+ 0.03015883041322463,
163
+ 0.035335578441624334,
164
+ 0.045090068016750876,
165
+ 0.03980649070137395,
166
+ 0.03129566392994679,
167
+ 0.03309932016697187,
168
+ 0.024137526098491333,
169
+ 0.03538666039629663,
170
+ 0.04447494180037798,
171
+ 0.030735450704656823,
172
+ 0.037115401865106465,
173
+ 0.050825208165655604,
174
+ 0.03310906991004317,
175
+ 0.03985433930343868,
176
+ 0.05726659538537194,
177
+ 0.03657559527641011,
178
+ 0.03153523843992227,
179
+ 0.034145656237805945,
180
+ 0.027498532897572665,
181
+ 0.034757357881270844,
182
+ 0.0453096208028715,
183
+ 0.032005307988042866,
184
+ 0.03653438172979971,
185
+ 0.051268945409149135,
186
+ 0.03292641324660168,
187
+ 0.03981391573884836,
188
+ 0.05787862961179737,
189
+ 0.03583739726431977,
190
+ 0.03321007307514612,
191
+ 0.030925377792140406,
192
+ 0.026807058094430264,
193
+ 0.03592867691622386,
194
+ 0.041311395106279764,
195
+ 0.030411242180349494,
196
+ 0.03891718478547086,
197
+ 0.04852552591309305,
198
+ 0.0316685283596857,
199
+ 0.04149545916108296,
200
+ 0.05526862033651974,
201
+ 0.03392774532375292,
202
+ 0.0369921453307594,
203
+ 0.029698972666080913,
204
+ 0.026120337327379495,
205
+ 0.039260893606915565,
206
+ 0.03678291059453527,
207
+ 0.027968069148374203,
208
+ 0.041854937049236804,
209
+ 0.04257809017301034,
210
+ 0.02947533618074876,
211
+ 0.04469969440853594,
212
+ 0.04833228392910784,
213
+ 0.03195704218624393
214
+ ],
215
+ "min": [
216
+ -0.096435546875,
217
+ 0.0,
218
+ 0.0,
219
+ -0.1326904296875,
220
+ -0.031829833984375,
221
+ -0.03167724609375,
222
+ -0.15771484375,
223
+ -0.061370849609375,
224
+ -0.060272216796875,
225
+ -0.18359375,
226
+ -0.08770751953125,
227
+ -0.0831298828125,
228
+ -0.2149658203125,
229
+ -0.1231689453125,
230
+ -0.111572265625,
231
+ -0.16015625,
232
+ -0.08404541015625,
233
+ -0.0753173828125,
234
+ -0.19140625,
235
+ -0.1158447265625,
236
+ -0.0989990234375,
237
+ -0.2095947265625,
238
+ -0.1376953125,
239
+ -0.11053466796875,
240
+ -0.233154296875,
241
+ -0.1605224609375,
242
+ -0.1209716796875,
243
+ -0.1619873046875,
244
+ -0.08819580078125,
245
+ -0.0859375,
246
+ -0.1934814453125,
247
+ -0.11932373046875,
248
+ -0.0986328125,
249
+ -0.2161865234375,
250
+ -0.14013671875,
251
+ -0.10040283203125,
252
+ -0.2415771484375,
253
+ -0.1632080078125,
254
+ -0.1094970703125,
255
+ -0.168701171875,
256
+ -0.0794677734375,
257
+ -0.07696533203125,
258
+ -0.188720703125,
259
+ -0.107666015625,
260
+ -0.09222412109375,
261
+ -0.2132568359375,
262
+ -0.130615234375,
263
+ -0.0841064453125,
264
+ -0.2374267578125,
265
+ -0.154296875,
266
+ -0.09332275390625,
267
+ -0.173583984375,
268
+ -0.07525634765625,
269
+ -0.06646728515625,
270
+ -0.1884765625,
271
+ -0.09619140625,
272
+ -0.0792236328125,
273
+ -0.2003173828125,
274
+ -0.11468505859375,
275
+ -0.0745849609375,
276
+ -0.2193603515625,
277
+ -0.133544921875,
278
+ -0.0755615234375
279
+ ],
280
+ "max": [
281
+ 0.0,
282
+ 0.0064544677734375,
283
+ 0.006366729736328125,
284
+ 0.0,
285
+ 0.044708251953125,
286
+ 0.0443115234375,
287
+ 0.0,
288
+ 0.0732421875,
289
+ 0.07171630859375,
290
+ 0.0,
291
+ 0.09814453125,
292
+ 0.09259033203125,
293
+ 0.033355712890625,
294
+ 0.1297607421875,
295
+ 0.1231689453125,
296
+ 0.0,
297
+ 0.09698486328125,
298
+ 0.0802001953125,
299
+ 0.0218048095703125,
300
+ 0.127197265625,
301
+ 0.106689453125,
302
+ 0.040618896484375,
303
+ 0.1483154296875,
304
+ 0.12744140625,
305
+ 0.0635986328125,
306
+ 0.170654296875,
307
+ 0.1507568359375,
308
+ 0.0,
309
+ 0.1015625,
310
+ 0.07745361328125,
311
+ 0.0205535888671875,
312
+ 0.131591796875,
313
+ 0.10687255859375,
314
+ 0.036224365234375,
315
+ 0.1524658203125,
316
+ 0.1287841796875,
317
+ 0.049468994140625,
318
+ 0.1761474609375,
319
+ 0.153564453125,
320
+ 0.0,
321
+ 0.09027099609375,
322
+ 0.08258056640625,
323
+ 0.0104827880859375,
324
+ 0.11907958984375,
325
+ 0.103759765625,
326
+ 0.02783203125,
327
+ 0.1400146484375,
328
+ 0.123291015625,
329
+ 0.039764404296875,
330
+ 0.1630859375,
331
+ 0.1439208984375,
332
+ 0.0,
333
+ 0.08099365234375,
334
+ 0.08514404296875,
335
+ 0.0016584396362304688,
336
+ 0.10040283203125,
337
+ 0.0997314453125,
338
+ 0.0162353515625,
339
+ 0.11468505859375,
340
+ 0.114990234375,
341
+ 0.0294036865234375,
342
+ 0.135009765625,
343
+ 0.1324462890625
344
+ ]
345
+ },
346
+ "observation.state.right_keypoints_3d": {
347
+ "mean": [
348
+ 0.08977948119308775,
349
+ 0.005968987095886057,
350
+ 0.005821805464962009,
351
+ 0.06659159303952075,
352
+ -0.005553306164105432,
353
+ 0.0032965252167116163,
354
+ 0.05235650704058139,
355
+ -0.01808619104473796,
356
+ 0.01337049457411103,
357
+ 0.04069967053358354,
358
+ -0.029730987046953632,
359
+ 0.02336451904663187,
360
+ 0.025278698867971083,
361
+ -0.04376191007944358,
362
+ 0.03617805501934257,
363
+ 0.05804416833334411,
364
+ -0.05495641484165823,
365
+ 0.013653292814965731,
366
+ 0.04647871437451697,
367
+ -0.07352627417673564,
368
+ 0.02473005877989243,
369
+ 0.03639940947096869,
370
+ -0.07880702736023584,
371
+ 0.03508937491373623,
372
+ 0.025041044406881846,
373
+ -0.08017044148584977,
374
+ 0.04708931969378281,
375
+ 0.06741298181106149,
376
+ -0.061495992859918885,
377
+ 0.026039673397872623,
378
+ 0.05569643323559071,
379
+ -0.07732953547078027,
380
+ 0.038196911790400266,
381
+ 0.045283152624020176,
382
+ -0.07818140076824033,
383
+ 0.04933595832158849,
384
+ 0.03358291026095568,
385
+ -0.0762782498362387,
386
+ 0.059433042721130314,
387
+ 0.07832089571199444,
388
+ -0.05195743448912477,
389
+ 0.03700042526566317,
390
+ 0.06580016369400096,
391
+ -0.06572686757472966,
392
+ 0.04674138003288854,
393
+ 0.054138461570189374,
394
+ -0.06779934216357676,
395
+ 0.057974745106223406,
396
+ 0.042540620973680866,
397
+ -0.06466983525168817,
398
+ 0.06471310427646763,
399
+ 0.08503027332201248,
400
+ -0.04122454875352367,
401
+ 0.045776295007797715,
402
+ 0.0744855838106168,
403
+ -0.04793587549745529,
404
+ 0.05333338419897103,
405
+ 0.06482085430520598,
406
+ -0.05039588787021114,
407
+ 0.06037582060923075,
408
+ 0.05544014268025206,
409
+ -0.052506219246755144,
410
+ 0.06557571267675655
411
+ ],
412
+ "std": [
413
+ 0.02231815945127133,
414
+ 0.0014855597019032619,
415
+ 0.001447640074238466,
416
+ 0.024252856035406764,
417
+ 0.012218284153587118,
418
+ 0.014400145167474558,
419
+ 0.0333376452467469,
420
+ 0.019949711752052637,
421
+ 0.023859108671570463,
422
+ 0.043304588603812776,
423
+ 0.027137155386226172,
424
+ 0.0322030556837406,
425
+ 0.057274264054764594,
426
+ 0.03745487265977405,
427
+ 0.043566904330729364,
428
+ 0.04041730824727236,
429
+ 0.023871053282997497,
430
+ 0.027670335645491446,
431
+ 0.05019868030651385,
432
+ 0.032869663630011925,
433
+ 0.03658508303092406,
434
+ 0.05639499497168823,
435
+ 0.03776118409608054,
436
+ 0.041586852013719894,
437
+ 0.06305932131284563,
438
+ 0.04385050437211298,
439
+ 0.04695051035796399,
440
+ 0.0393275924573974,
441
+ 0.02606445222702734,
442
+ 0.029934160611896767,
443
+ 0.04729629935914498,
444
+ 0.0353311999601549,
445
+ 0.03828798145501696,
446
+ 0.051835914492313076,
447
+ 0.03966955640278702,
448
+ 0.04249848221140576,
449
+ 0.05721736506536206,
450
+ 0.04523903565563098,
451
+ 0.047785218708501394,
452
+ 0.034832938452068245,
453
+ 0.026392337355376938,
454
+ 0.029904004650164694,
455
+ 0.04233683787790528,
456
+ 0.034094576486893555,
457
+ 0.03682136824465914,
458
+ 0.047800834092613695,
459
+ 0.039103425490782585,
460
+ 0.0417040596432229,
461
+ 0.05288487521113796,
462
+ 0.043768108471188186,
463
+ 0.046658557413681793,
464
+ 0.03348463522838356,
465
+ 0.027782495682684885,
466
+ 0.031075978071609393,
467
+ 0.03831311289802144,
468
+ 0.03234191253199971,
469
+ 0.035055210302824436,
470
+ 0.04284828801989357,
471
+ 0.03627604409504718,
472
+ 0.0385461743759932,
473
+ 0.047456159307988945,
474
+ 0.040336840575173734,
475
+ 0.04314392785394249
476
+ ],
477
+ "min": [
478
+ 0.0,
479
+ 0.0,
480
+ 0.0,
481
+ 0.0,
482
+ -0.0313720703125,
483
+ -0.028228759765625,
484
+ 0.0,
485
+ -0.061279296875,
486
+ -0.052978515625,
487
+ 0.0,
488
+ -0.08685302734375,
489
+ -0.07171630859375,
490
+ -0.03350830078125,
491
+ -0.11981201171875,
492
+ -0.10101318359375,
493
+ 0.0,
494
+ -0.08428955078125,
495
+ -0.08135986328125,
496
+ -0.0200347900390625,
497
+ -0.115234375,
498
+ -0.09814453125,
499
+ -0.03521728515625,
500
+ -0.1361083984375,
501
+ -0.102783203125,
502
+ -0.053955078125,
503
+ -0.16064453125,
504
+ -0.10791015625,
505
+ 0.0,
506
+ -0.08868408203125,
507
+ -0.08099365234375,
508
+ -0.0252532958984375,
509
+ -0.11944580078125,
510
+ -0.09210205078125,
511
+ -0.041839599609375,
512
+ -0.1419677734375,
513
+ -0.10595703125,
514
+ -0.058746337890625,
515
+ -0.1673583984375,
516
+ -0.1201171875,
517
+ 0.0,
518
+ -0.07965087890625,
519
+ -0.06854248046875,
520
+ -0.016021728515625,
521
+ -0.107666015625,
522
+ -0.084716796875,
523
+ -0.032470703125,
524
+ -0.131591796875,
525
+ -0.09930419921875,
526
+ -0.0546875,
527
+ -0.15625,
528
+ -0.1146240234375,
529
+ 0.0,
530
+ -0.07537841796875,
531
+ -0.0643310546875,
532
+ -0.002414703369140625,
533
+ -0.095947265625,
534
+ -0.07476806640625,
535
+ -0.0200042724609375,
536
+ -0.1146240234375,
537
+ -0.09002685546875,
538
+ -0.038818359375,
539
+ -0.1348876953125,
540
+ -0.10125732421875
541
+ ],
542
+ "max": [
543
+ 0.096923828125,
544
+ 0.006500244140625,
545
+ 0.0063323974609375,
546
+ 0.1339111328125,
547
+ 0.037078857421875,
548
+ 0.0440673828125,
549
+ 0.1640625,
550
+ 0.06671142578125,
551
+ 0.07318115234375,
552
+ 0.19091796875,
553
+ 0.09246826171875,
554
+ 0.096923828125,
555
+ 0.2247314453125,
556
+ 0.1258544921875,
557
+ 0.12469482421875,
558
+ 0.1846923828125,
559
+ 0.0916748046875,
560
+ 0.08447265625,
561
+ 0.212890625,
562
+ 0.1236572265625,
563
+ 0.112060546875,
564
+ 0.2320556640625,
565
+ 0.145751953125,
566
+ 0.1270751953125,
567
+ 0.257568359375,
568
+ 0.1700439453125,
569
+ 0.1470947265625,
570
+ 0.1875,
571
+ 0.10003662109375,
572
+ 0.0849609375,
573
+ 0.2144775390625,
574
+ 0.1282958984375,
575
+ 0.11285400390625,
576
+ 0.2301025390625,
577
+ 0.1483154296875,
578
+ 0.1348876953125,
579
+ 0.248779296875,
580
+ 0.17138671875,
581
+ 0.1591796875,
582
+ 0.1805419921875,
583
+ 0.09033203125,
584
+ 0.08795166015625,
585
+ 0.2078857421875,
586
+ 0.1160888671875,
587
+ 0.11083984375,
588
+ 0.2255859375,
589
+ 0.135986328125,
590
+ 0.1339111328125,
591
+ 0.242919921875,
592
+ 0.15771484375,
593
+ 0.156982421875,
594
+ 0.175537109375,
595
+ 0.08624267578125,
596
+ 0.08740234375,
597
+ 0.19287109375,
598
+ 0.10107421875,
599
+ 0.10467529296875,
600
+ 0.20849609375,
601
+ 0.11376953125,
602
+ 0.1229248046875,
603
+ 0.225341796875,
604
+ 0.1285400390625,
605
+ 0.1435546875
606
+ ]
607
+ },
608
+ "observation.state.left_contact": {
609
+ "mean": [
610
+ 0.7573320719016083
611
+ ],
612
+ "std": [
613
+ 0.4286959350994892
614
+ ],
615
+ "min": [
616
+ 0.0
617
+ ],
618
+ "max": [
619
+ 1.0
620
+ ]
621
+ },
622
+ "observation.state.right_contact": {
623
+ "mean": [
624
+ 0.7838221381267739
625
+ ],
626
+ "std": [
627
+ 0.4116369685890063
628
+ ],
629
+ "min": [
630
+ 0.0
631
+ ],
632
+ "max": [
633
+ 1.0
634
+ ]
635
+ },
636
+ "action.left_wrist_delta": {
637
+ "mean": [
638
+ 2.5963976401254152e-05,
639
+ 0.00011329058568321993,
640
+ 0.00030142147809464413
641
+ ],
642
+ "std": [
643
+ 0.04262783616485422,
644
+ 0.022160896261067296,
645
+ 0.040795477685364366
646
+ ],
647
+ "min": [
648
+ -0.4001197814941406,
649
+ -0.3268112242221832,
650
+ -0.35929977893829346
651
+ ],
652
+ "max": [
653
+ 1.1832414865493774,
654
+ 0.33266592025756836,
655
+ 0.7637258172035217
656
+ ]
657
+ },
658
+ "action.right_wrist_delta": {
659
+ "mean": [
660
+ -8.080884208065671e-05,
661
+ 2.215455516171884e-05,
662
+ 0.00029630450110674583
663
+ ],
664
+ "std": [
665
+ 0.09410300777087081,
666
+ 0.024940009124708472,
667
+ 0.08083316990152171
668
+ ],
669
+ "min": [
670
+ -0.9691483974456787,
671
+ -0.22055155038833618,
672
+ -0.7303140163421631
673
+ ],
674
+ "max": [
675
+ 1.376094102859497,
676
+ 0.274768203496933,
677
+ 1.452189326286316
678
+ ]
679
+ },
680
+ "action.left_grasp": {
681
+ "mean": [
682
+ 0.8519394512771996
683
+ ],
684
+ "std": [
685
+ 0.3551599958254077
686
+ ],
687
+ "min": [
688
+ 0.0
689
+ ],
690
+ "max": [
691
+ 1.0
692
+ ]
693
+ },
694
+ "action.right_grasp": {
695
+ "mean": [
696
+ 0.8921475875118259
697
+ ],
698
+ "std": [
699
+ 0.31019392258497724
700
+ ],
701
+ "min": [
702
+ 0.0
703
+ ],
704
+ "max": [
705
+ 1.0
706
+ ]
707
+ },
708
+ "observation.state.left_force": {
709
+ "mean": [
710
+ 0.0,
711
+ 0.0,
712
+ 0.0
713
+ ],
714
+ "std": [
715
+ 0.0,
716
+ 0.0,
717
+ 0.0
718
+ ],
719
+ "min": [
720
+ 0.0,
721
+ 0.0,
722
+ 0.0
723
+ ],
724
+ "max": [
725
+ 0.0,
726
+ 0.0,
727
+ 0.0
728
+ ]
729
+ },
730
+ "observation.state.right_force": {
731
+ "mean": [
732
+ 0.0,
733
+ 0.0,
734
+ 0.0
735
+ ],
736
+ "std": [
737
+ 0.0,
738
+ 0.0,
739
+ 0.0
740
+ ],
741
+ "min": [
742
+ 0.0,
743
+ 0.0,
744
+ 0.0
745
+ ],
746
+ "max": [
747
+ 0.0,
748
+ 0.0,
749
+ 0.0
750
+ ]
751
+ },
752
+ "observation.state.left_tactile": {
753
+ "mean": [
754
+ 0.0,
755
+ 0.0,
756
+ 0.0,
757
+ 0.0,
758
+ 0.0,
759
+ 0.0,
760
+ 0.0,
761
+ 0.0,
762
+ 0.0,
763
+ 0.0,
764
+ 0.0,
765
+ 0.0,
766
+ 0.0,
767
+ 0.0,
768
+ 0.0,
769
+ 0.0,
770
+ 0.0,
771
+ 0.0,
772
+ 0.0,
773
+ 0.0,
774
+ 0.0,
775
+ 0.0,
776
+ 0.0,
777
+ 0.0,
778
+ 0.0,
779
+ 0.0,
780
+ 0.0,
781
+ 0.0,
782
+ 0.0,
783
+ 0.0,
784
+ 0.0,
785
+ 0.0,
786
+ 0.0,
787
+ 0.0,
788
+ 0.0,
789
+ 0.0,
790
+ 0.0,
791
+ 0.0,
792
+ 0.0,
793
+ 0.0,
794
+ 0.0,
795
+ 0.0,
796
+ 0.0,
797
+ 0.0,
798
+ 0.0,
799
+ 0.0,
800
+ 0.0,
801
+ 0.0
802
+ ],
803
+ "std": [
804
+ 0.0,
805
+ 0.0,
806
+ 0.0,
807
+ 0.0,
808
+ 0.0,
809
+ 0.0,
810
+ 0.0,
811
+ 0.0,
812
+ 0.0,
813
+ 0.0,
814
+ 0.0,
815
+ 0.0,
816
+ 0.0,
817
+ 0.0,
818
+ 0.0,
819
+ 0.0,
820
+ 0.0,
821
+ 0.0,
822
+ 0.0,
823
+ 0.0,
824
+ 0.0,
825
+ 0.0,
826
+ 0.0,
827
+ 0.0,
828
+ 0.0,
829
+ 0.0,
830
+ 0.0,
831
+ 0.0,
832
+ 0.0,
833
+ 0.0,
834
+ 0.0,
835
+ 0.0,
836
+ 0.0,
837
+ 0.0,
838
+ 0.0,
839
+ 0.0,
840
+ 0.0,
841
+ 0.0,
842
+ 0.0,
843
+ 0.0,
844
+ 0.0,
845
+ 0.0,
846
+ 0.0,
847
+ 0.0,
848
+ 0.0,
849
+ 0.0,
850
+ 0.0,
851
+ 0.0
852
+ ],
853
+ "min": [
854
+ 0.0,
855
+ 0.0,
856
+ 0.0,
857
+ 0.0,
858
+ 0.0,
859
+ 0.0,
860
+ 0.0,
861
+ 0.0,
862
+ 0.0,
863
+ 0.0,
864
+ 0.0,
865
+ 0.0,
866
+ 0.0,
867
+ 0.0,
868
+ 0.0,
869
+ 0.0,
870
+ 0.0,
871
+ 0.0,
872
+ 0.0,
873
+ 0.0,
874
+ 0.0,
875
+ 0.0,
876
+ 0.0,
877
+ 0.0,
878
+ 0.0,
879
+ 0.0,
880
+ 0.0,
881
+ 0.0,
882
+ 0.0,
883
+ 0.0,
884
+ 0.0,
885
+ 0.0,
886
+ 0.0,
887
+ 0.0,
888
+ 0.0,
889
+ 0.0,
890
+ 0.0,
891
+ 0.0,
892
+ 0.0,
893
+ 0.0,
894
+ 0.0,
895
+ 0.0,
896
+ 0.0,
897
+ 0.0,
898
+ 0.0,
899
+ 0.0,
900
+ 0.0,
901
+ 0.0
902
+ ],
903
+ "max": [
904
+ 0.0,
905
+ 0.0,
906
+ 0.0,
907
+ 0.0,
908
+ 0.0,
909
+ 0.0,
910
+ 0.0,
911
+ 0.0,
912
+ 0.0,
913
+ 0.0,
914
+ 0.0,
915
+ 0.0,
916
+ 0.0,
917
+ 0.0,
918
+ 0.0,
919
+ 0.0,
920
+ 0.0,
921
+ 0.0,
922
+ 0.0,
923
+ 0.0,
924
+ 0.0,
925
+ 0.0,
926
+ 0.0,
927
+ 0.0,
928
+ 0.0,
929
+ 0.0,
930
+ 0.0,
931
+ 0.0,
932
+ 0.0,
933
+ 0.0,
934
+ 0.0,
935
+ 0.0,
936
+ 0.0,
937
+ 0.0,
938
+ 0.0,
939
+ 0.0,
940
+ 0.0,
941
+ 0.0,
942
+ 0.0,
943
+ 0.0,
944
+ 0.0,
945
+ 0.0,
946
+ 0.0,
947
+ 0.0,
948
+ 0.0,
949
+ 0.0,
950
+ 0.0,
951
+ 0.0
952
+ ]
953
+ },
954
+ "observation.state.right_tactile": {
955
+ "mean": [
956
+ 0.0,
957
+ 0.0,
958
+ 0.0,
959
+ 0.0,
960
+ 0.0,
961
+ 0.0,
962
+ 0.0,
963
+ 0.0,
964
+ 0.0,
965
+ 0.0,
966
+ 0.0,
967
+ 0.0,
968
+ 0.0,
969
+ 0.0,
970
+ 0.0,
971
+ 0.0,
972
+ 0.0,
973
+ 0.0,
974
+ 0.0,
975
+ 0.0,
976
+ 0.0,
977
+ 0.0,
978
+ 0.0,
979
+ 0.0,
980
+ 0.0,
981
+ 0.0,
982
+ 0.0,
983
+ 0.0,
984
+ 0.0,
985
+ 0.0,
986
+ 0.0,
987
+ 0.0,
988
+ 0.0,
989
+ 0.0,
990
+ 0.0,
991
+ 0.0,
992
+ 0.0,
993
+ 0.0,
994
+ 0.0,
995
+ 0.0,
996
+ 0.0,
997
+ 0.0,
998
+ 0.0,
999
+ 0.0,
1000
+ 0.0,
1001
+ 0.0,
1002
+ 0.0,
1003
+ 0.0
1004
+ ],
1005
+ "std": [
1006
+ 0.0,
1007
+ 0.0,
1008
+ 0.0,
1009
+ 0.0,
1010
+ 0.0,
1011
+ 0.0,
1012
+ 0.0,
1013
+ 0.0,
1014
+ 0.0,
1015
+ 0.0,
1016
+ 0.0,
1017
+ 0.0,
1018
+ 0.0,
1019
+ 0.0,
1020
+ 0.0,
1021
+ 0.0,
1022
+ 0.0,
1023
+ 0.0,
1024
+ 0.0,
1025
+ 0.0,
1026
+ 0.0,
1027
+ 0.0,
1028
+ 0.0,
1029
+ 0.0,
1030
+ 0.0,
1031
+ 0.0,
1032
+ 0.0,
1033
+ 0.0,
1034
+ 0.0,
1035
+ 0.0,
1036
+ 0.0,
1037
+ 0.0,
1038
+ 0.0,
1039
+ 0.0,
1040
+ 0.0,
1041
+ 0.0,
1042
+ 0.0,
1043
+ 0.0,
1044
+ 0.0,
1045
+ 0.0,
1046
+ 0.0,
1047
+ 0.0,
1048
+ 0.0,
1049
+ 0.0,
1050
+ 0.0,
1051
+ 0.0,
1052
+ 0.0,
1053
+ 0.0
1054
+ ],
1055
+ "min": [
1056
+ 0.0,
1057
+ 0.0,
1058
+ 0.0,
1059
+ 0.0,
1060
+ 0.0,
1061
+ 0.0,
1062
+ 0.0,
1063
+ 0.0,
1064
+ 0.0,
1065
+ 0.0,
1066
+ 0.0,
1067
+ 0.0,
1068
+ 0.0,
1069
+ 0.0,
1070
+ 0.0,
1071
+ 0.0,
1072
+ 0.0,
1073
+ 0.0,
1074
+ 0.0,
1075
+ 0.0,
1076
+ 0.0,
1077
+ 0.0,
1078
+ 0.0,
1079
+ 0.0,
1080
+ 0.0,
1081
+ 0.0,
1082
+ 0.0,
1083
+ 0.0,
1084
+ 0.0,
1085
+ 0.0,
1086
+ 0.0,
1087
+ 0.0,
1088
+ 0.0,
1089
+ 0.0,
1090
+ 0.0,
1091
+ 0.0,
1092
+ 0.0,
1093
+ 0.0,
1094
+ 0.0,
1095
+ 0.0,
1096
+ 0.0,
1097
+ 0.0,
1098
+ 0.0,
1099
+ 0.0,
1100
+ 0.0,
1101
+ 0.0,
1102
+ 0.0,
1103
+ 0.0
1104
+ ],
1105
+ "max": [
1106
+ 0.0,
1107
+ 0.0,
1108
+ 0.0,
1109
+ 0.0,
1110
+ 0.0,
1111
+ 0.0,
1112
+ 0.0,
1113
+ 0.0,
1114
+ 0.0,
1115
+ 0.0,
1116
+ 0.0,
1117
+ 0.0,
1118
+ 0.0,
1119
+ 0.0,
1120
+ 0.0,
1121
+ 0.0,
1122
+ 0.0,
1123
+ 0.0,
1124
+ 0.0,
1125
+ 0.0,
1126
+ 0.0,
1127
+ 0.0,
1128
+ 0.0,
1129
+ 0.0,
1130
+ 0.0,
1131
+ 0.0,
1132
+ 0.0,
1133
+ 0.0,
1134
+ 0.0,
1135
+ 0.0,
1136
+ 0.0,
1137
+ 0.0,
1138
+ 0.0,
1139
+ 0.0,
1140
+ 0.0,
1141
+ 0.0,
1142
+ 0.0,
1143
+ 0.0,
1144
+ 0.0,
1145
+ 0.0,
1146
+ 0.0,
1147
+ 0.0,
1148
+ 0.0,
1149
+ 0.0,
1150
+ 0.0,
1151
+ 0.0,
1152
+ 0.0,
1153
+ 0.0
1154
+ ]
1155
+ },
1156
+ "observation.state.gripper_force": {
1157
+ "mean": [
1158
+ 0.0,
1159
+ 0.0
1160
+ ],
1161
+ "std": [
1162
+ 0.0,
1163
+ 0.0
1164
+ ],
1165
+ "min": [
1166
+ 0.0,
1167
+ 0.0
1168
+ ],
1169
+ "max": [
1170
+ 0.0,
1171
+ 0.0
1172
+ ]
1173
+ }
1174
+ }
meta/tasks.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7149577e3b265e686c1fbc491f0ef7b6daab295b668c57c452f6792223925ae4
3
+ size 1081
videos/observation.images.ego_left/chunk-000/file-000.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4ce7148387f201e27235d9e3d53ac62d1725a492ae517702e56c671d572bab68
3
+ size 75726133
videos/observation.images.ego_right/chunk-000/file-000.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3dbf9dfa0dc17ab4707d58ffdd85f38c9adb45445b0347166c84e22473bad29
3
+ size 94736967
videos/observation.images.exo_iphone/chunk-000/file-000.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:495fd1633d38a1f26acff6f0754f589510a0e31fbfccbf4b181fe45fbdd2aef3
3
+ size 85482665