ankile commited on
Commit
1937f9c
·
verified ·
1 Parent(s): 5b81f7d

Upload folder using huggingface_hub

Browse files
.last_push_timestamp ADDED
@@ -0,0 +1 @@
 
 
1
+ Last pushed: 2025-11-20 11:43:49
README.md ADDED
@@ -0,0 +1,242 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ configs:
8
+ - config_name: default
9
+ data_files: data/*/*.parquet
10
+ ---
11
+
12
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
13
+
14
+ ## Dataset Description
15
+
16
+
17
+
18
+ - **Homepage:** [More Information Needed]
19
+ - **Paper:** [More Information Needed]
20
+ - **License:** apache-2.0
21
+
22
+ ## Dataset Structure
23
+
24
+ [meta/info.json](meta/info.json):
25
+ ```json
26
+ {
27
+ "codebase_version": "v3.0",
28
+ "robot_type": "panda",
29
+ "total_episodes": 50,
30
+ "total_frames": 10329,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 500,
35
+ "fps": 20,
36
+ "splits": {
37
+ "train": "0:50"
38
+ },
39
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
40
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
41
+ "features": {
42
+ "observation.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 9
46
+ ],
47
+ "names": [
48
+ "eef_pos_x",
49
+ "eef_pos_y",
50
+ "eef_pos_z",
51
+ "eef_quat_x",
52
+ "eef_quat_y",
53
+ "eef_quat_z",
54
+ "eef_quat_w",
55
+ "gripper_qpos_left",
56
+ "gripper_qpos_right"
57
+ ]
58
+ },
59
+ "observation.environment_state": {
60
+ "dtype": "float32",
61
+ "shape": [
62
+ 14
63
+ ],
64
+ "names": [
65
+ "can_to_eef_pos_x",
66
+ "can_to_eef_pos_y",
67
+ "can_to_eef_pos_z",
68
+ "can_to_eef_quat_x",
69
+ "can_to_eef_quat_y",
70
+ "can_to_eef_quat_z",
71
+ "can_to_eef_quat_w",
72
+ "can_pos_x",
73
+ "can_pos_y",
74
+ "can_pos_z",
75
+ "can_quat_x",
76
+ "can_quat_y",
77
+ "can_quat_z",
78
+ "can_quat_w"
79
+ ]
80
+ },
81
+ "action": {
82
+ "dtype": "float32",
83
+ "shape": [
84
+ 7
85
+ ],
86
+ "names": [
87
+ "delta_eef_pos_x",
88
+ "delta_eef_pos_y",
89
+ "delta_eef_pos_z",
90
+ "delta_eef_rot_x",
91
+ "delta_eef_rot_y",
92
+ "delta_eef_rot_z",
93
+ "gripper_action"
94
+ ]
95
+ },
96
+ "source": {
97
+ "dtype": "int64",
98
+ "shape": [
99
+ 1
100
+ ],
101
+ "names": [
102
+ "source_id"
103
+ ]
104
+ },
105
+ "success": {
106
+ "dtype": "int64",
107
+ "shape": [
108
+ 1
109
+ ],
110
+ "names": [
111
+ "success_flag"
112
+ ]
113
+ },
114
+ "intervention": {
115
+ "dtype": "int64",
116
+ "shape": [
117
+ 1
118
+ ],
119
+ "names": [
120
+ "intervention_flag"
121
+ ]
122
+ },
123
+ "is_valid": {
124
+ "dtype": "int64",
125
+ "shape": [
126
+ 1
127
+ ],
128
+ "names": [
129
+ "is_valid_flag"
130
+ ]
131
+ },
132
+ "reward": {
133
+ "dtype": "float32",
134
+ "shape": [
135
+ 1
136
+ ],
137
+ "names": [
138
+ "reward"
139
+ ]
140
+ },
141
+ "done": {
142
+ "dtype": "int64",
143
+ "shape": [
144
+ 1
145
+ ],
146
+ "names": [
147
+ "done_flag"
148
+ ]
149
+ },
150
+ "observation.images.agentview": {
151
+ "dtype": "video",
152
+ "shape": [
153
+ 256,
154
+ 256,
155
+ 3
156
+ ],
157
+ "names": [
158
+ "height",
159
+ "width",
160
+ "channels"
161
+ ],
162
+ "info": {
163
+ "video.height": 256,
164
+ "video.width": 256,
165
+ "video.codec": "av1",
166
+ "video.pix_fmt": "yuv420p",
167
+ "video.is_depth_map": false,
168
+ "video.fps": 20,
169
+ "video.channels": 3,
170
+ "has_audio": false
171
+ }
172
+ },
173
+ "observation.images.robot0_eye_in_hand": {
174
+ "dtype": "video",
175
+ "shape": [
176
+ 256,
177
+ 256,
178
+ 3
179
+ ],
180
+ "names": [
181
+ "height",
182
+ "width",
183
+ "channels"
184
+ ],
185
+ "info": {
186
+ "video.height": 256,
187
+ "video.width": 256,
188
+ "video.codec": "av1",
189
+ "video.pix_fmt": "yuv420p",
190
+ "video.is_depth_map": false,
191
+ "video.fps": 20,
192
+ "video.channels": 3,
193
+ "has_audio": false
194
+ }
195
+ },
196
+ "timestamp": {
197
+ "dtype": "float32",
198
+ "shape": [
199
+ 1
200
+ ],
201
+ "names": null
202
+ },
203
+ "frame_index": {
204
+ "dtype": "int64",
205
+ "shape": [
206
+ 1
207
+ ],
208
+ "names": null
209
+ },
210
+ "episode_index": {
211
+ "dtype": "int64",
212
+ "shape": [
213
+ 1
214
+ ],
215
+ "names": null
216
+ },
217
+ "index": {
218
+ "dtype": "int64",
219
+ "shape": [
220
+ 1
221
+ ],
222
+ "names": null
223
+ },
224
+ "task_index": {
225
+ "dtype": "int64",
226
+ "shape": [
227
+ 1
228
+ ],
229
+ "names": null
230
+ }
231
+ }
232
+ }
233
+ ```
234
+
235
+
236
+ ## Citation
237
+
238
+ **BibTeX:**
239
+
240
+ ```bibtex
241
+ [More Information Needed]
242
+ ```
data/chunk-000/file-000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:09fa7e533a98dd24ad3d99a78da1d7a5e8c3779596fc60b46be8a15760294b57
3
+ size 1930715
data/chunk-000/file-001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b37f45feb53e37a0372c6366c2107300ef9538ade2927b16b18b16ca27d0369d
3
+ size 2076059
meta/episodes/chunk-000/file-000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19132e45e390e6788ceface880e68fe69c6f5a92f5805d843f5e5ff7f2e0964b
3
+ size 403121
meta/episodes/chunk-000/file-001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa526a8c896387dd6ff7294a8ed8889bad00f62f35246d91436b9311d5aa237f
3
+ size 448449
meta/info.json ADDED
@@ -0,0 +1,207 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "codebase_version": "v3.0",
3
+ "robot_type": "panda",
4
+ "total_episodes": 50,
5
+ "total_frames": 10329,
6
+ "total_tasks": 1,
7
+ "chunks_size": 1000,
8
+ "data_files_size_in_mb": 100,
9
+ "video_files_size_in_mb": 500,
10
+ "fps": 20,
11
+ "splits": {
12
+ "train": "0:50"
13
+ },
14
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
15
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
16
+ "features": {
17
+ "observation.state": {
18
+ "dtype": "float32",
19
+ "shape": [
20
+ 9
21
+ ],
22
+ "names": [
23
+ "eef_pos_x",
24
+ "eef_pos_y",
25
+ "eef_pos_z",
26
+ "eef_quat_x",
27
+ "eef_quat_y",
28
+ "eef_quat_z",
29
+ "eef_quat_w",
30
+ "gripper_qpos_left",
31
+ "gripper_qpos_right"
32
+ ]
33
+ },
34
+ "observation.environment_state": {
35
+ "dtype": "float32",
36
+ "shape": [
37
+ 14
38
+ ],
39
+ "names": [
40
+ "can_to_eef_pos_x",
41
+ "can_to_eef_pos_y",
42
+ "can_to_eef_pos_z",
43
+ "can_to_eef_quat_x",
44
+ "can_to_eef_quat_y",
45
+ "can_to_eef_quat_z",
46
+ "can_to_eef_quat_w",
47
+ "can_pos_x",
48
+ "can_pos_y",
49
+ "can_pos_z",
50
+ "can_quat_x",
51
+ "can_quat_y",
52
+ "can_quat_z",
53
+ "can_quat_w"
54
+ ]
55
+ },
56
+ "action": {
57
+ "dtype": "float32",
58
+ "shape": [
59
+ 7
60
+ ],
61
+ "names": [
62
+ "delta_eef_pos_x",
63
+ "delta_eef_pos_y",
64
+ "delta_eef_pos_z",
65
+ "delta_eef_rot_x",
66
+ "delta_eef_rot_y",
67
+ "delta_eef_rot_z",
68
+ "gripper_action"
69
+ ]
70
+ },
71
+ "source": {
72
+ "dtype": "int64",
73
+ "shape": [
74
+ 1
75
+ ],
76
+ "names": [
77
+ "source_id"
78
+ ]
79
+ },
80
+ "success": {
81
+ "dtype": "int64",
82
+ "shape": [
83
+ 1
84
+ ],
85
+ "names": [
86
+ "success_flag"
87
+ ]
88
+ },
89
+ "intervention": {
90
+ "dtype": "int64",
91
+ "shape": [
92
+ 1
93
+ ],
94
+ "names": [
95
+ "intervention_flag"
96
+ ]
97
+ },
98
+ "is_valid": {
99
+ "dtype": "int64",
100
+ "shape": [
101
+ 1
102
+ ],
103
+ "names": [
104
+ "is_valid_flag"
105
+ ]
106
+ },
107
+ "reward": {
108
+ "dtype": "float32",
109
+ "shape": [
110
+ 1
111
+ ],
112
+ "names": [
113
+ "reward"
114
+ ]
115
+ },
116
+ "done": {
117
+ "dtype": "int64",
118
+ "shape": [
119
+ 1
120
+ ],
121
+ "names": [
122
+ "done_flag"
123
+ ]
124
+ },
125
+ "observation.images.agentview": {
126
+ "dtype": "video",
127
+ "shape": [
128
+ 256,
129
+ 256,
130
+ 3
131
+ ],
132
+ "names": [
133
+ "height",
134
+ "width",
135
+ "channels"
136
+ ],
137
+ "info": {
138
+ "video.height": 256,
139
+ "video.width": 256,
140
+ "video.codec": "av1",
141
+ "video.pix_fmt": "yuv420p",
142
+ "video.is_depth_map": false,
143
+ "video.fps": 20,
144
+ "video.channels": 3,
145
+ "has_audio": false
146
+ }
147
+ },
148
+ "observation.images.robot0_eye_in_hand": {
149
+ "dtype": "video",
150
+ "shape": [
151
+ 256,
152
+ 256,
153
+ 3
154
+ ],
155
+ "names": [
156
+ "height",
157
+ "width",
158
+ "channels"
159
+ ],
160
+ "info": {
161
+ "video.height": 256,
162
+ "video.width": 256,
163
+ "video.codec": "av1",
164
+ "video.pix_fmt": "yuv420p",
165
+ "video.is_depth_map": false,
166
+ "video.fps": 20,
167
+ "video.channels": 3,
168
+ "has_audio": false
169
+ }
170
+ },
171
+ "timestamp": {
172
+ "dtype": "float32",
173
+ "shape": [
174
+ 1
175
+ ],
176
+ "names": null
177
+ },
178
+ "frame_index": {
179
+ "dtype": "int64",
180
+ "shape": [
181
+ 1
182
+ ],
183
+ "names": null
184
+ },
185
+ "episode_index": {
186
+ "dtype": "int64",
187
+ "shape": [
188
+ 1
189
+ ],
190
+ "names": null
191
+ },
192
+ "index": {
193
+ "dtype": "int64",
194
+ "shape": [
195
+ 1
196
+ ],
197
+ "names": null
198
+ },
199
+ "task_index": {
200
+ "dtype": "int64",
201
+ "shape": [
202
+ 1
203
+ ],
204
+ "names": null
205
+ }
206
+ }
207
+ }
meta/stats.json ADDED
@@ -0,0 +1,1009 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "intervention": {
3
+ "min": [
4
+ 0
5
+ ],
6
+ "max": [
7
+ 1
8
+ ],
9
+ "mean": [
10
+ 0.00261399941911124
11
+ ],
12
+ "std": [
13
+ 0.05106041936909769
14
+ ],
15
+ "count": [
16
+ 10329
17
+ ],
18
+ "q01": [
19
+ -5.484539978700745e-11
20
+ ],
21
+ "q10": [
22
+ -5.484377422790203e-11
23
+ ],
24
+ "q50": [
25
+ -5.4836549520766786e-11
26
+ ],
27
+ "q90": [
28
+ -5.482932481363153e-11
29
+ ],
30
+ "q99": [
31
+ -5.4827699254526094e-11
32
+ ]
33
+ },
34
+ "success": {
35
+ "min": [
36
+ 0
37
+ ],
38
+ "max": [
39
+ 1
40
+ ],
41
+ "mean": [
42
+ 0.9764740052279989
43
+ ],
44
+ "std": [
45
+ 0.15156689065224282
46
+ ],
47
+ "count": [
48
+ 10329
49
+ ],
50
+ "q01": [
51
+ 0.9764740052279992
52
+ ],
53
+ "q10": [
54
+ 0.9764740052280029
55
+ ],
56
+ "q50": [
57
+ 0.9764740052280189
58
+ ],
59
+ "q90": [
60
+ 0.9764740052280347
61
+ ],
62
+ "q99": [
63
+ 0.9764740052280386
64
+ ]
65
+ },
66
+ "is_valid": {
67
+ "min": [
68
+ 0
69
+ ],
70
+ "max": [
71
+ 1
72
+ ],
73
+ "mean": [
74
+ 0.9951592603349791
75
+ ],
76
+ "std": [
77
+ 0.06940682174337263
78
+ ],
79
+ "count": [
80
+ 10329
81
+ ],
82
+ "q01": [
83
+ 0.9998010365052906
84
+ ],
85
+ "q10": [
86
+ 0.9998191241048097
87
+ ],
88
+ "q50": [
89
+ 0.9998995134360052
90
+ ],
91
+ "q90": [
92
+ 0.9999799027672011
93
+ ],
94
+ "q99": [
95
+ 0.9999979903667202
96
+ ]
97
+ },
98
+ "observation.environment_state": {
99
+ "min": [
100
+ -0.12137706577777863,
101
+ -0.0794386938214302,
102
+ -0.011680561117827892,
103
+ -0.9978086352348328,
104
+ -0.9935286641120911,
105
+ -0.6228759288787842,
106
+ 0.0,
107
+ -0.017260929569602013,
108
+ -0.41688188910484314,
109
+ 0.8336759805679321,
110
+ -0.7081035375595093,
111
+ -0.5648367404937744,
112
+ -0.1539185494184494,
113
+ -0.9999566078186035
114
+ ],
115
+ "max": [
116
+ 0.24915002286434174,
117
+ 0.33454763889312744,
118
+ 0.21279291808605194,
119
+ 0.9976423382759094,
120
+ 0.9980543851852417,
121
+ 0.6899514198303223,
122
+ 0.8340339660644531,
123
+ 0.27126869559288025,
124
+ 0.4525113105773926,
125
+ 1.1412429809570312,
126
+ 0.8090912699699402,
127
+ 0.5403855443000793,
128
+ 0.9999831914901733,
129
+ 0.9972757697105408
130
+ ],
131
+ "mean": [
132
+ 0.005431602137191999,
133
+ 0.020378922488097157,
134
+ 0.037598737377645616,
135
+ -0.10222755057070185,
136
+ 0.4790259040331293,
137
+ 0.007056595142503811,
138
+ 0.11455812778916098,
139
+ 0.13727761944850586,
140
+ -0.06545419079020853,
141
+ 0.9263819361289319,
142
+ 0.03731750375174653,
143
+ -0.037356065906821986,
144
+ 0.5912473426517022,
145
+ 0.043443253565886575
146
+ ],
147
+ "std": [
148
+ 0.03886654893418798,
149
+ 0.047823753330931834,
150
+ 0.0463297242337255,
151
+ 0.6864692310736781,
152
+ 0.4588684026484473,
153
+ 0.14353061002518194,
154
+ 0.19916912052505029,
155
+ 0.06379469897140319,
156
+ 0.24637364547542356,
157
+ 0.08020659517675582,
158
+ 0.2205288293077218,
159
+ 0.11400324099748439,
160
+ 0.3024106618350695,
161
+ 0.7019040503750383
162
+ ],
163
+ "count": [
164
+ 10329
165
+ ],
166
+ "q01": [
167
+ -0.03061737508901197,
168
+ -0.011811839404156959,
169
+ 0.004544075052243627,
170
+ -0.4409124479070726,
171
+ -0.019043783229300646,
172
+ -0.12664772522177806,
173
+ 0.014277657819374758,
174
+ 0.09280460643239902,
175
+ -0.2707798731004563,
176
+ 0.853673759623289,
177
+ -0.13796336222729344,
178
+ -0.16038544214675007,
179
+ 0.5226317308249439,
180
+ -0.038777457472171005
181
+ ],
182
+ "q10": [
183
+ -0.019359825126576163,
184
+ -0.005273490010786769,
185
+ 0.0071741667662012995,
186
+ -0.3716831137081927,
187
+ 0.2888538769474214,
188
+ -0.08745238638451956,
189
+ 0.024059535551191644,
190
+ 0.09639299882024896,
191
+ -0.2667871800870992,
192
+ 0.8563787260305198,
193
+ -0.07959787277746183,
194
+ -0.13462893920256044,
195
+ 0.5382152854903413,
196
+ -0.016221412949328887
197
+ ],
198
+ "q50": [
199
+ -0.0033545369779659304,
200
+ 0.006794260084759288,
201
+ 0.01786632312706504,
202
+ -0.13499113241073127,
203
+ 0.5353874207999741,
204
+ 0.013794964499268831,
205
+ 0.13165102526391567,
206
+ 0.12919370428583882,
207
+ -0.1591776865837349,
208
+ 0.8950002241709106,
209
+ 0.048354754178145505,
210
+ -0.020552589728299063,
211
+ 0.5952578980979029,
212
+ 0.05650362711288348
213
+ ],
214
+ "q90": [
215
+ 0.048048152194559816,
216
+ 0.07814388571760417,
217
+ 0.11185699746161278,
218
+ 0.18130852112275372,
219
+ 0.6197679724975775,
220
+ 0.08058392880916236,
221
+ 0.17113546231743307,
222
+ 0.18781465027692104,
223
+ 0.29130576539053077,
224
+ 1.0363889775028392,
225
+ 0.12745277491441154,
226
+ 0.03350705033579972,
227
+ 0.643202835142341,
228
+ 0.08587491057048156
229
+ ],
230
+ "q99": [
231
+ 0.1150026458552381,
232
+ 0.1726018704451846,
233
+ 0.1736396137554217,
234
+ 0.49088353399050827,
235
+ 0.6374190130667339,
236
+ 0.14076194935038894,
237
+ 0.24480845934270576,
238
+ 0.19396319350504881,
239
+ 0.3533302469536223,
240
+ 1.049562056427712,
241
+ 0.16128843952092217,
242
+ 0.08290977099216364,
243
+ 0.6541674641372944,
244
+ 0.10229043718807515
245
+ ]
246
+ },
247
+ "episode_index": {
248
+ "min": [
249
+ 0
250
+ ],
251
+ "max": [
252
+ 49
253
+ ],
254
+ "mean": [
255
+ 24.810630264304386
256
+ ],
257
+ "std": [
258
+ 14.574839473120985
259
+ ],
260
+ "count": [
261
+ 10329
262
+ ],
263
+ "q01": [
264
+ 24.810630264304386
265
+ ],
266
+ "q10": [
267
+ 24.81063026430439
268
+ ],
269
+ "q50": [
270
+ 24.810630264304407
271
+ ],
272
+ "q90": [
273
+ 24.810630264304418
274
+ ],
275
+ "q99": [
276
+ 24.810630264304425
277
+ ]
278
+ },
279
+ "frame_index": {
280
+ "min": [
281
+ 0
282
+ ],
283
+ "max": [
284
+ 414
285
+ ],
286
+ "mean": [
287
+ 115.02894762319683
288
+ ],
289
+ "std": [
290
+ 82.10344413741451
291
+ ],
292
+ "count": [
293
+ 10329
294
+ ],
295
+ "q01": [
296
+ 1.7843039894454833
297
+ ],
298
+ "q10": [
299
+ 22.524293027318105
300
+ ],
301
+ "q50": [
302
+ 114.81768122761135
303
+ ],
304
+ "q90": [
305
+ 207.38436899223828
306
+ ],
307
+ "q99": [
308
+ 228.27359125694815
309
+ ]
310
+ },
311
+ "task_index": {
312
+ "min": [
313
+ 0
314
+ ],
315
+ "max": [
316
+ 0
317
+ ],
318
+ "mean": [
319
+ 0.0
320
+ ],
321
+ "std": [
322
+ 0.0
323
+ ],
324
+ "count": [
325
+ 10329
326
+ ],
327
+ "q01": [
328
+ 3.999999999999418e-16
329
+ ],
330
+ "q10": [
331
+ 3.999999999999417e-15
332
+ ],
333
+ "q50": [
334
+ 1.9999999999997088e-14
335
+ ],
336
+ "q90": [
337
+ 3.599999999999476e-14
338
+ ],
339
+ "q99": [
340
+ 3.959999999999424e-14
341
+ ]
342
+ },
343
+ "reward": {
344
+ "min": [
345
+ 0.0
346
+ ],
347
+ "max": [
348
+ 1.0
349
+ ],
350
+ "mean": [
351
+ 0.009487849796864036
352
+ ],
353
+ "std": [
354
+ 0.0969424089466811
355
+ ],
356
+ "count": [
357
+ 10329
358
+ ],
359
+ "q01": [
360
+ -9.764739241712634e-11
361
+ ],
362
+ "q10": [
363
+ -9.764730773247088e-11
364
+ ],
365
+ "q50": [
366
+ -9.764693135622443e-11
367
+ ],
368
+ "q90": [
369
+ -9.764655497997798e-11
370
+ ],
371
+ "q99": [
372
+ 0.5114831427781792
373
+ ]
374
+ },
375
+ "observation.images.agentview": {
376
+ "min": [
377
+ [
378
+ [
379
+ 0.0
380
+ ]
381
+ ],
382
+ [
383
+ [
384
+ 0.0
385
+ ]
386
+ ],
387
+ [
388
+ [
389
+ 0.0
390
+ ]
391
+ ]
392
+ ],
393
+ "max": [
394
+ [
395
+ [
396
+ 1.0
397
+ ]
398
+ ],
399
+ [
400
+ [
401
+ 1.0
402
+ ]
403
+ ],
404
+ [
405
+ [
406
+ 1.0
407
+ ]
408
+ ]
409
+ ],
410
+ "mean": [
411
+ [
412
+ [
413
+ 0.48809031118355534
414
+ ]
415
+ ],
416
+ [
417
+ [
418
+ 0.4390906700702741
419
+ ]
420
+ ],
421
+ [
422
+ [
423
+ 0.3940606012561274
424
+ ]
425
+ ]
426
+ ],
427
+ "std": [
428
+ [
429
+ [
430
+ 0.002239363886686914
431
+ ]
432
+ ],
433
+ [
434
+ [
435
+ 0.0019710455055817633
436
+ ]
437
+ ],
438
+ [
439
+ [
440
+ 0.0018442940823844864
441
+ ]
442
+ ]
443
+ ],
444
+ "count": [
445
+ 5000
446
+ ],
447
+ "q01": [
448
+ [
449
+ [
450
+ 0.059407004531647316
451
+ ]
452
+ ],
453
+ [
454
+ [
455
+ 0.05059128266373848
456
+ ]
457
+ ],
458
+ [
459
+ [
460
+ 0.0441231934147699
461
+ ]
462
+ ]
463
+ ],
464
+ "q10": [
465
+ [
466
+ [
467
+ 0.17194265543090897
468
+ ]
469
+ ],
470
+ [
471
+ [
472
+ 0.14186562415059423
473
+ ]
474
+ ],
475
+ [
476
+ [
477
+ 0.12170220393967536
478
+ ]
479
+ ]
480
+ ],
481
+ "q50": [
482
+ [
483
+ [
484
+ 0.5030951636625395
485
+ ]
486
+ ],
487
+ [
488
+ [
489
+ 0.4539150040924098
490
+ ]
491
+ ],
492
+ [
493
+ [
494
+ 0.4315664349328572
495
+ ]
496
+ ]
497
+ ],
498
+ "q90": [
499
+ [
500
+ [
501
+ 0.8005072238045665
502
+ ]
503
+ ],
504
+ [
505
+ [
506
+ 0.6641640642053731
507
+ ]
508
+ ],
509
+ [
510
+ [
511
+ 0.5424590089677122
512
+ ]
513
+ ]
514
+ ],
515
+ "q99": [
516
+ [
517
+ [
518
+ 0.9130130130429223
519
+ ]
520
+ ],
521
+ [
522
+ [
523
+ 0.8918391990759909
524
+ ]
525
+ ],
526
+ [
527
+ [
528
+ 0.8760648245562545
529
+ ]
530
+ ]
531
+ ]
532
+ },
533
+ "action": {
534
+ "min": [
535
+ -0.625,
536
+ -0.6799675226211548,
537
+ -0.6643596291542053,
538
+ -0.17928571999073029,
539
+ -0.25,
540
+ -0.25,
541
+ -1.0
542
+ ],
543
+ "max": [
544
+ 0.6848783493041992,
545
+ 0.6874610185623169,
546
+ 0.6506373286247253,
547
+ 0.15857142210006714,
548
+ 0.25,
549
+ 0.23428571224212646,
550
+ 1.0
551
+ ],
552
+ "mean": [
553
+ 0.06829273126876402,
554
+ 0.1659015599129328,
555
+ -0.027441209847093462,
556
+ 0.006422703996961973,
557
+ -0.0027756452696978094,
558
+ 0.009030491412658156,
559
+ 0.011333377702925014
560
+ ],
561
+ "std": [
562
+ 0.1822082469032476,
563
+ 0.37290484506312455,
564
+ 0.2441764805822006,
565
+ 0.033497969526678946,
566
+ 0.025106683984036822,
567
+ 0.030019725525227827,
568
+ 0.9538485385636052
569
+ ],
570
+ "count": [
571
+ 10329
572
+ ],
573
+ "q01": [
574
+ -0.23732249674637845,
575
+ -0.49661936057402056,
576
+ -0.45273906972764566,
577
+ -0.06464798006071763,
578
+ -0.0656162642312289,
579
+ -0.04991038535741708,
580
+ -0.9999937370400748
581
+ ],
582
+ "q10": [
583
+ -0.12614332144739684,
584
+ -0.38108582194118773,
585
+ -0.3175379346708832,
586
+ -0.03137976327284908,
587
+ -0.026870404586175387,
588
+ -0.0174713779568419,
589
+ -0.9999447423256594
590
+ ],
591
+ "q50": [
592
+ 0.040492917384399474,
593
+ 0.1314777944861405,
594
+ -0.05089874722372554,
595
+ 0.002428104553625418,
596
+ -0.0018084510880113259,
597
+ 0.007095341147687628,
598
+ -0.004036647091714126
599
+ ],
600
+ "q90": [
601
+ 0.31480662847580293,
602
+ 0.6310313587637878,
603
+ 0.3143874785710032,
604
+ 0.0497811348851482,
605
+ 0.02000870923652793,
606
+ 0.04079043608866088,
607
+ 0.9997441377680489
608
+ ],
609
+ "q99": [
610
+ 0.4917836142166346,
611
+ 0.6621457105333057,
612
+ 0.4985752609100632,
613
+ 0.08451055830059094,
614
+ 0.050154738320721204,
615
+ 0.0663826672253157,
616
+ 0.999956747862501
617
+ ]
618
+ },
619
+ "timestamp": {
620
+ "min": [
621
+ 0.0
622
+ ],
623
+ "max": [
624
+ 20.7
625
+ ],
626
+ "mean": [
627
+ 5.751447381159841
628
+ ],
629
+ "std": [
630
+ 4.105172206870726
631
+ ],
632
+ "count": [
633
+ 10329
634
+ ],
635
+ "q01": [
636
+ 0.08921519937868168
637
+ ],
638
+ "q10": [
639
+ 1.126214651289451
640
+ ],
641
+ "q50": [
642
+ 5.740820364991545
643
+ ],
644
+ "q90": [
645
+ 10.36921844968823
646
+ ],
647
+ "q99": [
648
+ 11.413679562941
649
+ ]
650
+ },
651
+ "index": {
652
+ "min": [
653
+ 0
654
+ ],
655
+ "max": [
656
+ 10328
657
+ ],
658
+ "mean": [
659
+ 5164.0
660
+ ],
661
+ "std": [
662
+ 2981.72545125581
663
+ ],
664
+ "count": [
665
+ 10329
666
+ ],
667
+ "q01": [
668
+ 5050.755356366248
669
+ ],
670
+ "q10": [
671
+ 5071.495345404121
672
+ ],
673
+ "q50": [
674
+ 5163.78900549908
675
+ ],
676
+ "q90": [
677
+ 5256.355421369041
678
+ ],
679
+ "q99": [
680
+ 5277.244643633752
681
+ ]
682
+ },
683
+ "observation.state": {
684
+ "min": [
685
+ -0.05948576703667641,
686
+ -0.45640817284584045,
687
+ 0.8313031196594238,
688
+ 0.5436654686927795,
689
+ -0.08793001621961594,
690
+ -0.1320059448480606,
691
+ -0.22388039529323578,
692
+ 0.0006220906507223845,
693
+ -0.040948882699012756
694
+ ],
695
+ "max": [
696
+ 0.27683407068252563,
697
+ 0.4641699194908142,
698
+ 1.1525592803955078,
699
+ 0.9999050498008728,
700
+ 0.8268554210662842,
701
+ 0.2677774131298065,
702
+ 0.11107305437326431,
703
+ 0.040627170354127884,
704
+ -0.0006369351758621633
705
+ ],
706
+ "mean": [
707
+ 0.12481576481145007,
708
+ -0.047266991238531474,
709
+ 0.9638023426034396,
710
+ 0.9829235453840631,
711
+ 0.06174648816854458,
712
+ 0.08131350041058295,
713
+ -0.03364842816307652,
714
+ 0.031170069158433577,
715
+ -0.03036139273137988
716
+ ],
717
+ "std": [
718
+ 0.07563386128890372,
719
+ 0.23294397617503967,
720
+ 0.07203189373632342,
721
+ 0.037189499698164145,
722
+ 0.11546635483486667,
723
+ 0.054660293875676176,
724
+ 0.06783323056544178,
725
+ 0.007945152619522201,
726
+ 0.00852840744877161
727
+ ],
728
+ "count": [
729
+ 10329
730
+ ],
731
+ "q01": [
732
+ -0.03742580337784965,
733
+ -0.2736271365885496,
734
+ 0.8617237006778613,
735
+ 0.9531437460374296,
736
+ -0.018167868941359466,
737
+ 0.02391148713933325,
738
+ -0.13667286633388176,
739
+ 0.01678908116164226,
740
+ -0.04001281814718227
741
+ ],
742
+ "q10": [
743
+ 0.04070679577463683,
744
+ -0.26413093029519097,
745
+ 0.875621343352789,
746
+ 0.9585912215414232,
747
+ -0.006385723811127325,
748
+ 0.03729210005164156,
749
+ -0.1266779976168432,
750
+ 0.023757923116179715,
751
+ -0.03986278076070209
752
+ ],
753
+ "q50": [
754
+ 0.1306195735091532,
755
+ -0.11316278566346576,
756
+ 0.9614491163530173,
757
+ 0.9895914173986619,
758
+ 0.05724353980623663,
759
+ 0.07657014282806969,
760
+ -0.013771400640391094,
761
+ 0.03061360356926569,
762
+ -0.029919789304631572
763
+ ],
764
+ "q90": [
765
+ 0.1917215083882549,
766
+ 0.2949387993718731,
767
+ 1.054615438412069,
768
+ 0.9974457146358783,
769
+ 0.14223162488735436,
770
+ 0.1302450907065867,
771
+ 0.030050174727053482,
772
+ 0.03979431426510511,
773
+ -0.022160729217359357
774
+ ],
775
+ "q99": [
776
+ 0.1973017554881956,
777
+ 0.351138151299593,
778
+ 1.0654441789294364,
779
+ 0.9983698749063695,
780
+ 0.16542080437401036,
781
+ 0.14380793004263628,
782
+ 0.04079582558124216,
783
+ 0.039974843711779125,
784
+ -0.015990764176259685
785
+ ]
786
+ },
787
+ "source": {
788
+ "min": [
789
+ 0
790
+ ],
791
+ "max": [
792
+ 1
793
+ ],
794
+ "mean": [
795
+ 0.14502856036402362
796
+ ],
797
+ "std": [
798
+ 0.352129631020683
799
+ ],
800
+ "count": [
801
+ 10329
802
+ ],
803
+ "q01": [
804
+ -5.484539978700745e-11
805
+ ],
806
+ "q10": [
807
+ -5.484377422790203e-11
808
+ ],
809
+ "q50": [
810
+ 0.07908585038922304
811
+ ],
812
+ "q90": [
813
+ 0.4001046323798133
814
+ ],
815
+ "q99": [
816
+ 0.5484451742386013
817
+ ]
818
+ },
819
+ "done": {
820
+ "min": [
821
+ 0
822
+ ],
823
+ "max": [
824
+ 1
825
+ ],
826
+ "mean": [
827
+ 0.009487849743440798
828
+ ],
829
+ "std": [
830
+ 0.09694240790637856
831
+ ],
832
+ "count": [
833
+ 10329
834
+ ],
835
+ "q01": [
836
+ -9.764739111240195e-11
837
+ ],
838
+ "q10": [
839
+ -9.76473064188208e-11
840
+ ],
841
+ "q50": [
842
+ -9.764693000290443e-11
843
+ ],
844
+ "q90": [
845
+ -9.764655358698807e-11
846
+ ],
847
+ "q99": [
848
+ 0.5114831571350597
849
+ ]
850
+ },
851
+ "observation.images.robot0_eye_in_hand": {
852
+ "min": [
853
+ [
854
+ [
855
+ 0.00392156862745098
856
+ ]
857
+ ],
858
+ [
859
+ [
860
+ 0.0
861
+ ]
862
+ ],
863
+ [
864
+ [
865
+ 0.0
866
+ ]
867
+ ]
868
+ ],
869
+ "max": [
870
+ [
871
+ [
872
+ 1.0
873
+ ]
874
+ ],
875
+ [
876
+ [
877
+ 1.0
878
+ ]
879
+ ],
880
+ [
881
+ [
882
+ 1.0
883
+ ]
884
+ ]
885
+ ],
886
+ "mean": [
887
+ [
888
+ [
889
+ 0.5371470741301891
890
+ ]
891
+ ],
892
+ [
893
+ [
894
+ 0.43541856488396136
895
+ ]
896
+ ],
897
+ [
898
+ [
899
+ 0.36794462519626986
900
+ ]
901
+ ]
902
+ ],
903
+ "std": [
904
+ [
905
+ [
906
+ 0.05501780597190624
907
+ ]
908
+ ],
909
+ [
910
+ [
911
+ 0.04534068787545815
912
+ ]
913
+ ],
914
+ [
915
+ [
916
+ 0.0346492487688404
917
+ ]
918
+ ]
919
+ ],
920
+ "count": [
921
+ 5000
922
+ ],
923
+ "q01": [
924
+ [
925
+ [
926
+ 0.03936776210038838
927
+ ]
928
+ ],
929
+ [
930
+ [
931
+ 0.026068992511553694
932
+ ]
933
+ ],
934
+ [
935
+ [
936
+ 0.02313078228176303
937
+ ]
938
+ ]
939
+ ],
940
+ "q10": [
941
+ [
942
+ [
943
+ 0.14407645387297816
944
+ ]
945
+ ],
946
+ [
947
+ [
948
+ 0.09818895781536605
949
+ ]
950
+ ],
951
+ [
952
+ [
953
+ 0.09021302860165292
954
+ ]
955
+ ]
956
+ ],
957
+ "q50": [
958
+ [
959
+ [
960
+ 0.5709035856958357
961
+ ]
962
+ ],
963
+ [
964
+ [
965
+ 0.46713858452060203
966
+ ]
967
+ ],
968
+ [
969
+ [
970
+ 0.4175728969710178
971
+ ]
972
+ ]
973
+ ],
974
+ "q90": [
975
+ [
976
+ [
977
+ 0.8343439786006075
978
+ ]
979
+ ],
980
+ [
981
+ [
982
+ 0.690909751674796
983
+ ]
984
+ ],
985
+ [
986
+ [
987
+ 0.5484166622355998
988
+ ]
989
+ ]
990
+ ],
991
+ "q99": [
992
+ [
993
+ [
994
+ 0.918171023545689
995
+ ]
996
+ ],
997
+ [
998
+ [
999
+ 0.7388306446154792
1000
+ ]
1001
+ ],
1002
+ [
1003
+ [
1004
+ 0.626358481729294
1005
+ ]
1006
+ ]
1007
+ ]
1008
+ }
1009
+ }
meta/tasks.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1fa1f63ccf592a5b3052286660a66b199d2449249058a79181724ed38cc0b574
3
+ size 2136
videos/observation.images.agentview/chunk-000/file-000.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6ff2d8502885a847769e5d3a48fac046f7bb5565a2c5f5c41b42d6e4a7660356
3
+ size 62557722
videos/observation.images.agentview/chunk-000/file-001.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:381f48ec7b7dbc504db9fc9a77393be367c6589edbce548f4e98bb71324bc6ed
3
+ size 66024568
videos/observation.images.robot0_eye_in_hand/chunk-000/file-000.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63f08860d951ac4fe4f3178f16a3671f27f2b20ff1bff24bf9805056a275f49a
3
+ size 34157420
videos/observation.images.robot0_eye_in_hand/chunk-000/file-001.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2d6f3304d5642b24ad8c35ae4a0e6d1818a08aa10fef988cb9e8f24abfbdf6f
3
+ size 36918271