thomas0829 commited on
Commit
0b654b0
·
verified ·
1 Parent(s): 849f64c

Upload 3 episodes (4302 frames)

Browse files
.gitattributes CHANGED
@@ -1,6 +1,5 @@
1
  *.7z filter=lfs diff=lfs merge=lfs -text
2
  *.arrow filter=lfs diff=lfs merge=lfs -text
3
- *.avro filter=lfs diff=lfs merge=lfs -text
4
  *.bin filter=lfs diff=lfs merge=lfs -text
5
  *.bz2 filter=lfs diff=lfs merge=lfs -text
6
  *.ckpt filter=lfs diff=lfs merge=lfs -text
@@ -10,7 +9,6 @@
10
  *.joblib filter=lfs diff=lfs merge=lfs -text
11
  *.lfs.* filter=lfs diff=lfs merge=lfs -text
12
  *.lz4 filter=lfs diff=lfs merge=lfs -text
13
- *.mds filter=lfs diff=lfs merge=lfs -text
14
  *.mlmodel filter=lfs diff=lfs merge=lfs -text
15
  *.model filter=lfs diff=lfs merge=lfs -text
16
  *.msgpack filter=lfs diff=lfs merge=lfs -text
 
1
  *.7z filter=lfs diff=lfs merge=lfs -text
2
  *.arrow filter=lfs diff=lfs merge=lfs -text
 
3
  *.bin filter=lfs diff=lfs merge=lfs -text
4
  *.bz2 filter=lfs diff=lfs merge=lfs -text
5
  *.ckpt filter=lfs diff=lfs merge=lfs -text
 
9
  *.joblib filter=lfs diff=lfs merge=lfs -text
10
  *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
  *.lz4 filter=lfs diff=lfs merge=lfs -text
 
12
  *.mlmodel filter=lfs diff=lfs merge=lfs -text
13
  *.model filter=lfs diff=lfs merge=lfs -text
14
  *.msgpack filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - **Homepage:** [More Information Needed]
17
+ - **Paper:** [More Information Needed]
18
+ - **License:** apache-2.0
19
+
20
+ ## Dataset Structure
21
+
22
+ [meta/info.json](meta/info.json):
23
+ ```json
24
+ {
25
+ "codebase_version": "v3.0",
26
+ "robot_type": "yam",
27
+ "total_episodes": 3,
28
+ "total_frames": 4302,
29
+ "total_tasks": 1,
30
+ "chunks_size": 1000,
31
+ "data_files_size_in_mb": 100,
32
+ "video_files_size_in_mb": 200,
33
+ "fps": 30,
34
+ "splits": {
35
+ "train": "0:3"
36
+ },
37
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
38
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
39
+ "features": {
40
+ "observation.state": {
41
+ "dtype": "float32",
42
+ "shape": [
43
+ 14
44
+ ],
45
+ "names": {
46
+ "motors": [
47
+ "left_joint_0",
48
+ "left_joint_1",
49
+ "left_joint_2",
50
+ "left_joint_3",
51
+ "left_joint_4",
52
+ "left_joint_5",
53
+ "left_gripper",
54
+ "right_joint_0",
55
+ "right_joint_1",
56
+ "right_joint_2",
57
+ "right_joint_3",
58
+ "right_joint_4",
59
+ "right_joint_5",
60
+ "right_gripper"
61
+ ]
62
+ }
63
+ },
64
+ "action": {
65
+ "dtype": "float32",
66
+ "shape": [
67
+ 14
68
+ ],
69
+ "names": {
70
+ "motors": [
71
+ "left_joint_0",
72
+ "left_joint_1",
73
+ "left_joint_2",
74
+ "left_joint_3",
75
+ "left_joint_4",
76
+ "left_joint_5",
77
+ "left_gripper",
78
+ "right_joint_0",
79
+ "right_joint_1",
80
+ "right_joint_2",
81
+ "right_joint_3",
82
+ "right_joint_4",
83
+ "right_joint_5",
84
+ "right_gripper"
85
+ ]
86
+ }
87
+ },
88
+ "observation.images.left_camera": {
89
+ "dtype": "video",
90
+ "shape": [
91
+ 360,
92
+ 640,
93
+ 3
94
+ ],
95
+ "names": [
96
+ "height",
97
+ "width",
98
+ "channel"
99
+ ],
100
+ "info": {
101
+ "video.height": 360,
102
+ "video.width": 640,
103
+ "video.codec": "h264",
104
+ "video.pix_fmt": "yuv420p",
105
+ "video.is_depth_map": false,
106
+ "video.fps": 30,
107
+ "video.channels": 3,
108
+ "has_audio": false
109
+ }
110
+ },
111
+ "observation.images.front_camera": {
112
+ "dtype": "video",
113
+ "shape": [
114
+ 360,
115
+ 640,
116
+ 3
117
+ ],
118
+ "names": [
119
+ "height",
120
+ "width",
121
+ "channel"
122
+ ],
123
+ "info": {
124
+ "video.height": 360,
125
+ "video.width": 640,
126
+ "video.codec": "h264",
127
+ "video.pix_fmt": "yuv420p",
128
+ "video.is_depth_map": false,
129
+ "video.fps": 30,
130
+ "video.channels": 3,
131
+ "has_audio": false
132
+ }
133
+ },
134
+ "observation.images.right_camera": {
135
+ "dtype": "video",
136
+ "shape": [
137
+ 360,
138
+ 640,
139
+ 3
140
+ ],
141
+ "names": [
142
+ "height",
143
+ "width",
144
+ "channel"
145
+ ],
146
+ "info": {
147
+ "video.height": 360,
148
+ "video.width": 640,
149
+ "video.codec": "h264",
150
+ "video.pix_fmt": "yuv420p",
151
+ "video.is_depth_map": false,
152
+ "video.fps": 30,
153
+ "video.channels": 3,
154
+ "has_audio": false
155
+ }
156
+ },
157
+ "timestamp": {
158
+ "dtype": "float32",
159
+ "shape": [
160
+ 1
161
+ ],
162
+ "names": null
163
+ },
164
+ "frame_index": {
165
+ "dtype": "int64",
166
+ "shape": [
167
+ 1
168
+ ],
169
+ "names": null
170
+ },
171
+ "episode_index": {
172
+ "dtype": "int64",
173
+ "shape": [
174
+ 1
175
+ ],
176
+ "names": null
177
+ },
178
+ "index": {
179
+ "dtype": "int64",
180
+ "shape": [
181
+ 1
182
+ ],
183
+ "names": null
184
+ },
185
+ "task_index": {
186
+ "dtype": "int64",
187
+ "shape": [
188
+ 1
189
+ ],
190
+ "names": null
191
+ }
192
+ }
193
+ }
194
+ ```
195
+
196
+ ## Citation
197
+
198
+ **BibTeX:**
199
+
200
+ ```bibtex
201
+ [More Information Needed]
202
+ ```
data/chunk-000/file-000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f80014a73f136fba1e4d571f0702bc37a8bd88ece136674d7a95107313200f4
3
+ size 583536
meta/episodes/chunk-000/file-000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5aae26564fc8ee9236a6733f900b2927d935a6b6d2eec4cabeeeabc41e40d353
3
+ size 116013
meta/info.json ADDED
@@ -0,0 +1,170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "codebase_version": "v3.0",
3
+ "robot_type": "yam",
4
+ "total_episodes": 3,
5
+ "total_frames": 4302,
6
+ "total_tasks": 1,
7
+ "chunks_size": 1000,
8
+ "data_files_size_in_mb": 100,
9
+ "video_files_size_in_mb": 200,
10
+ "fps": 30,
11
+ "splits": {
12
+ "train": "0:3"
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
+ 14
21
+ ],
22
+ "names": {
23
+ "motors": [
24
+ "left_joint_0",
25
+ "left_joint_1",
26
+ "left_joint_2",
27
+ "left_joint_3",
28
+ "left_joint_4",
29
+ "left_joint_5",
30
+ "left_gripper",
31
+ "right_joint_0",
32
+ "right_joint_1",
33
+ "right_joint_2",
34
+ "right_joint_3",
35
+ "right_joint_4",
36
+ "right_joint_5",
37
+ "right_gripper"
38
+ ]
39
+ }
40
+ },
41
+ "action": {
42
+ "dtype": "float32",
43
+ "shape": [
44
+ 14
45
+ ],
46
+ "names": {
47
+ "motors": [
48
+ "left_joint_0",
49
+ "left_joint_1",
50
+ "left_joint_2",
51
+ "left_joint_3",
52
+ "left_joint_4",
53
+ "left_joint_5",
54
+ "left_gripper",
55
+ "right_joint_0",
56
+ "right_joint_1",
57
+ "right_joint_2",
58
+ "right_joint_3",
59
+ "right_joint_4",
60
+ "right_joint_5",
61
+ "right_gripper"
62
+ ]
63
+ }
64
+ },
65
+ "observation.images.left_camera": {
66
+ "dtype": "video",
67
+ "shape": [
68
+ 360,
69
+ 640,
70
+ 3
71
+ ],
72
+ "names": [
73
+ "height",
74
+ "width",
75
+ "channel"
76
+ ],
77
+ "info": {
78
+ "video.height": 360,
79
+ "video.width": 640,
80
+ "video.codec": "h264",
81
+ "video.pix_fmt": "yuv420p",
82
+ "video.is_depth_map": false,
83
+ "video.fps": 30,
84
+ "video.channels": 3,
85
+ "has_audio": false
86
+ }
87
+ },
88
+ "observation.images.front_camera": {
89
+ "dtype": "video",
90
+ "shape": [
91
+ 360,
92
+ 640,
93
+ 3
94
+ ],
95
+ "names": [
96
+ "height",
97
+ "width",
98
+ "channel"
99
+ ],
100
+ "info": {
101
+ "video.height": 360,
102
+ "video.width": 640,
103
+ "video.codec": "h264",
104
+ "video.pix_fmt": "yuv420p",
105
+ "video.is_depth_map": false,
106
+ "video.fps": 30,
107
+ "video.channels": 3,
108
+ "has_audio": false
109
+ }
110
+ },
111
+ "observation.images.right_camera": {
112
+ "dtype": "video",
113
+ "shape": [
114
+ 360,
115
+ 640,
116
+ 3
117
+ ],
118
+ "names": [
119
+ "height",
120
+ "width",
121
+ "channel"
122
+ ],
123
+ "info": {
124
+ "video.height": 360,
125
+ "video.width": 640,
126
+ "video.codec": "h264",
127
+ "video.pix_fmt": "yuv420p",
128
+ "video.is_depth_map": false,
129
+ "video.fps": 30,
130
+ "video.channels": 3,
131
+ "has_audio": false
132
+ }
133
+ },
134
+ "timestamp": {
135
+ "dtype": "float32",
136
+ "shape": [
137
+ 1
138
+ ],
139
+ "names": null
140
+ },
141
+ "frame_index": {
142
+ "dtype": "int64",
143
+ "shape": [
144
+ 1
145
+ ],
146
+ "names": null
147
+ },
148
+ "episode_index": {
149
+ "dtype": "int64",
150
+ "shape": [
151
+ 1
152
+ ],
153
+ "names": null
154
+ },
155
+ "index": {
156
+ "dtype": "int64",
157
+ "shape": [
158
+ 1
159
+ ],
160
+ "names": null
161
+ },
162
+ "task_index": {
163
+ "dtype": "int64",
164
+ "shape": [
165
+ 1
166
+ ],
167
+ "names": null
168
+ }
169
+ }
170
+ }
meta/stats.json ADDED
@@ -0,0 +1,934 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "timestamp": {
3
+ "min": [
4
+ 0.0
5
+ ],
6
+ "max": [
7
+ 53.03333333333333
8
+ ],
9
+ "mean": [
10
+ 24.0306446613978
11
+ ],
12
+ "std": [
13
+ 14.059370902490684
14
+ ],
15
+ "count": [
16
+ 4302
17
+ ],
18
+ "q01": [
19
+ 0.46131162420069577
20
+ ],
21
+ "q10": [
22
+ 4.794558034322555
23
+ ],
24
+ "q50": [
25
+ 24.021032403533205
26
+ ],
27
+ "q90": [
28
+ 43.26673128847304
29
+ ],
30
+ "q99": [
31
+ 47.599977698594905
32
+ ]
33
+ },
34
+ "observation.state": {
35
+ "min": [
36
+ -0.7432459592819214,
37
+ 0.00476844422519207,
38
+ -0.052379757165908813,
39
+ -1.2662627696990967,
40
+ -0.1709790825843811,
41
+ -0.33357998728752136,
42
+ 0.0,
43
+ -0.4773537516593933,
44
+ 0.00476844422519207,
45
+ 0.010872052982449532,
46
+ -0.9758300185203552,
47
+ -0.5729710459709167,
48
+ -0.6972259283065796,
49
+ 0.0
50
+ ],
51
+ "max": [
52
+ 0.9410649538040161,
53
+ 2.613168478012085,
54
+ 2.3590381145477295,
55
+ 0.45026180148124695,
56
+ 1.355224370956421,
57
+ 0.9702105522155762,
58
+ 0.9970083236694336,
59
+ 0.7805103063583374,
60
+ 2.2680227756500244,
61
+ 1.7457696199417114,
62
+ 0.24515724182128906,
63
+ 0.6879611611366272,
64
+ 0.005305043887346983,
65
+ 1.0006030797958374
66
+ ],
67
+ "mean": [
68
+ -0.0648753341618165,
69
+ 1.4305872446101857,
70
+ 0.9909318287890215,
71
+ -0.5863472109670032,
72
+ 0.3461624851813154,
73
+ 0.04760536882309361,
74
+ 0.4666087451589656,
75
+ 0.1272728925303269,
76
+ 1.1560526783108322,
77
+ 0.7996769673543883,
78
+ -0.4451725993916801,
79
+ -0.11725031527348975,
80
+ -0.20673241630813124,
81
+ 0.6057073359210122
82
+ ],
83
+ "std": [
84
+ 0.33944736900659866,
85
+ 0.7348975701154452,
86
+ 0.629500473358268,
87
+ 0.4002210445530886,
88
+ 0.2615307989122759,
89
+ 0.2467467214140109,
90
+ 0.37799371205123944,
91
+ 0.19838989465615275,
92
+ 0.6296086117725168,
93
+ 0.43122168579023645,
94
+ 0.3061061771616198,
95
+ 0.28944950247156365,
96
+ 0.15760837125005808,
97
+ 0.4508237856803616
98
+ ],
99
+ "count": [
100
+ 4302
101
+ ],
102
+ "q01": [
103
+ -0.601105183605786,
104
+ 0.047622101316661176,
105
+ -0.051421832603231084,
106
+ -1.2417348220231976,
107
+ -0.11906565743591399,
108
+ -0.22865927459316882,
109
+ -1.000000013351432e-10,
110
+ -0.3304620976799425,
111
+ 0.03487535076472592,
112
+ 0.03303047438860434,
113
+ -0.9220620834334182,
114
+ -0.45761103034319905,
115
+ -0.5213925777315428,
116
+ -1.000000013351432e-10
117
+ ],
118
+ "q10": [
119
+ -0.338613159046346,
120
+ 0.325247294971051,
121
+ 0.14435120961312353,
122
+ -0.9839271462534483,
123
+ 0.020163988920018174,
124
+ -0.12072017406346618,
125
+ 0.01638923272955592,
126
+ -0.08128285219212303,
127
+ 0.22726678019698118,
128
+ 0.18432353628902176,
129
+ -0.7784388476136339,
130
+ -0.41142172028860413,
131
+ -0.42032002189557316,
132
+ 0.005009603708457146
133
+ ],
134
+ "q50": [
135
+ -0.1309327862529852,
136
+ 1.6258616822090664,
137
+ 0.9334027349865752,
138
+ -0.7005036915251955,
139
+ 0.3362823762981241,
140
+ -0.015565288266379778,
141
+ 0.6198504652221091,
142
+ 0.13145259967187237,
143
+ 1.3136563511129757,
144
+ 0.776745962880479,
145
+ -0.557354612377901,
146
+ -0.1793116421186331,
147
+ -0.18474684035914488,
148
+ 0.8347281859179735
149
+ ],
150
+ "q90": [
151
+ 0.4662812557402238,
152
+ 2.2353575207432277,
153
+ 1.8700744364587867,
154
+ 0.05852342969446487,
155
+ 0.6668229846913335,
156
+ 0.2989705615667674,
157
+ 0.899568868065361,
158
+ 0.3556624048259725,
159
+ 1.9383238884528147,
160
+ 1.3919359743992303,
161
+ 0.0677787890029786,
162
+ 0.3033398609311874,
163
+ -0.04706428221085457,
164
+ 0.999963657710436
165
+ ],
166
+ "q99": [
167
+ 0.9034790517417156,
168
+ 2.491903976055147,
169
+ 2.2004699018266463,
170
+ 0.2050545568479487,
171
+ 1.0220772449575177,
172
+ 0.8734050868547725,
173
+ 0.9268758507211378,
174
+ 0.6181574283905331,
175
+ 2.20091477816934,
176
+ 1.661562185022566,
177
+ 0.16128018970211738,
178
+ 0.6181055331147034,
179
+ -0.03250078462723425,
180
+ 1.0000020426249827
181
+ ]
182
+ },
183
+ "index": {
184
+ "min": [
185
+ 0
186
+ ],
187
+ "max": [
188
+ 4301
189
+ ],
190
+ "mean": [
191
+ 2150.5
192
+ ],
193
+ "std": [
194
+ 1241.8803954756136
195
+ ],
196
+ "count": [
197
+ 4302
198
+ ],
199
+ "q01": [
200
+ 1443.420008886931
201
+ ],
202
+ "q10": [
203
+ 1573.4174011900639
204
+ ],
205
+ "q50": [
206
+ 2150.211632264063
207
+ ],
208
+ "q90": [
209
+ 2727.5825988099355
210
+ ],
211
+ "q99": [
212
+ 2857.5799911130684
213
+ ]
214
+ },
215
+ "observation.images.front_camera": {
216
+ "min": [
217
+ [
218
+ [
219
+ 0.0
220
+ ]
221
+ ],
222
+ [
223
+ [
224
+ 0.0
225
+ ]
226
+ ],
227
+ [
228
+ [
229
+ 0.0
230
+ ]
231
+ ]
232
+ ],
233
+ "max": [
234
+ [
235
+ [
236
+ 1.0
237
+ ]
238
+ ],
239
+ [
240
+ [
241
+ 1.0
242
+ ]
243
+ ],
244
+ [
245
+ [
246
+ 1.0
247
+ ]
248
+ ]
249
+ ],
250
+ "mean": [
251
+ [
252
+ [
253
+ 0.47149987592935927
254
+ ]
255
+ ],
256
+ [
257
+ [
258
+ 0.4225943939578378
259
+ ]
260
+ ],
261
+ [
262
+ [
263
+ 0.3812999302395265
264
+ ]
265
+ ]
266
+ ],
267
+ "std": [
268
+ [
269
+ [
270
+ 0.007977081492959158
271
+ ]
272
+ ],
273
+ [
274
+ [
275
+ 0.010254073426936778
276
+ ]
277
+ ],
278
+ [
279
+ [
280
+ 0.02454275176826724
281
+ ]
282
+ ]
283
+ ],
284
+ "count": [
285
+ 698
286
+ ],
287
+ "q01": [
288
+ [
289
+ [
290
+ 0.00425763938625393
291
+ ]
292
+ ],
293
+ [
294
+ [
295
+ 0.040647304720985086
296
+ ]
297
+ ],
298
+ [
299
+ [
300
+ 0.026313757072135895
301
+ ]
302
+ ]
303
+ ],
304
+ "q10": [
305
+ [
306
+ [
307
+ 0.1904121390312964
308
+ ]
309
+ ],
310
+ [
311
+ [
312
+ 0.18073126692153668
313
+ ]
314
+ ],
315
+ [
316
+ [
317
+ 0.1254296720748569
318
+ ]
319
+ ]
320
+ ],
321
+ "q50": [
322
+ [
323
+ [
324
+ 0.4649846395681452
325
+ ]
326
+ ],
327
+ [
328
+ [
329
+ 0.4016106661359179
330
+ ]
331
+ ],
332
+ [
333
+ [
334
+ 0.3531992542573265
335
+ ]
336
+ ]
337
+ ],
338
+ "q90": [
339
+ [
340
+ [
341
+ 0.738222511119073
342
+ ]
343
+ ],
344
+ [
345
+ [
346
+ 0.6891369266157708
347
+ ]
348
+ ],
349
+ [
350
+ [
351
+ 0.6732692161495483
352
+ ]
353
+ ]
354
+ ],
355
+ "q99": [
356
+ [
357
+ [
358
+ 0.9960915709831613
359
+ ]
360
+ ],
361
+ [
362
+ [
363
+ 0.999883202366644
364
+ ]
365
+ ],
366
+ [
367
+ [
368
+ 0.9960283754834154
369
+ ]
370
+ ]
371
+ ]
372
+ },
373
+ "observation.images.left_camera": {
374
+ "min": [
375
+ [
376
+ [
377
+ 0.0
378
+ ]
379
+ ],
380
+ [
381
+ [
382
+ 0.0
383
+ ]
384
+ ],
385
+ [
386
+ [
387
+ 0.0
388
+ ]
389
+ ]
390
+ ],
391
+ "max": [
392
+ [
393
+ [
394
+ 1.0
395
+ ]
396
+ ],
397
+ [
398
+ [
399
+ 1.0
400
+ ]
401
+ ],
402
+ [
403
+ [
404
+ 1.0
405
+ ]
406
+ ]
407
+ ],
408
+ "mean": [
409
+ [
410
+ [
411
+ 0.4506862046712986
412
+ ]
413
+ ],
414
+ [
415
+ [
416
+ 0.4214688976752752
417
+ ]
418
+ ],
419
+ [
420
+ [
421
+ 0.3929308341292582
422
+ ]
423
+ ]
424
+ ],
425
+ "std": [
426
+ [
427
+ [
428
+ 0.003743195846645726
429
+ ]
430
+ ],
431
+ [
432
+ [
433
+ 0.012241605529086399
434
+ ]
435
+ ],
436
+ [
437
+ [
438
+ 0.02381561554644229
439
+ ]
440
+ ]
441
+ ],
442
+ "count": [
443
+ 698
444
+ ],
445
+ "q01": [
446
+ [
447
+ [
448
+ 0.0051808596976225885
449
+ ]
450
+ ],
451
+ [
452
+ [
453
+ 0.048104841038613066
454
+ ]
455
+ ],
456
+ [
457
+ [
458
+ 0.03527510172242428
459
+ ]
460
+ ]
461
+ ],
462
+ "q10": [
463
+ [
464
+ [
465
+ 0.17518317429585356
466
+ ]
467
+ ],
468
+ [
469
+ [
470
+ 0.1864666093734371
471
+ ]
472
+ ],
473
+ [
474
+ [
475
+ 0.1467420995202228
476
+ ]
477
+ ]
478
+ ],
479
+ "q50": [
480
+ [
481
+ [
482
+ 0.45628764625016527
483
+ ]
484
+ ],
485
+ [
486
+ [
487
+ 0.4161573355677731
488
+ ]
489
+ ],
490
+ [
491
+ [
492
+ 0.383252828564317
493
+ ]
494
+ ]
495
+ ],
496
+ "q90": [
497
+ [
498
+ [
499
+ 0.6872982069337996
500
+ ]
501
+ ],
502
+ [
503
+ [
504
+ 0.648256879722247
505
+ ]
506
+ ],
507
+ [
508
+ [
509
+ 0.6385929954742497
510
+ ]
511
+ ]
512
+ ],
513
+ "q99": [
514
+ [
515
+ [
516
+ 0.9754278874162681
517
+ ]
518
+ ],
519
+ [
520
+ [
521
+ 0.973675272713843
522
+ ]
523
+ ],
524
+ [
525
+ [
526
+ 0.9692204359726396
527
+ ]
528
+ ]
529
+ ]
530
+ },
531
+ "observation.images.right_camera": {
532
+ "min": [
533
+ [
534
+ [
535
+ 0.0
536
+ ]
537
+ ],
538
+ [
539
+ [
540
+ 0.00392156862745098
541
+ ]
542
+ ],
543
+ [
544
+ [
545
+ 0.0
546
+ ]
547
+ ]
548
+ ],
549
+ "max": [
550
+ [
551
+ [
552
+ 1.0
553
+ ]
554
+ ],
555
+ [
556
+ [
557
+ 1.0
558
+ ]
559
+ ],
560
+ [
561
+ [
562
+ 1.0
563
+ ]
564
+ ]
565
+ ],
566
+ "mean": [
567
+ [
568
+ [
569
+ 0.4242199448626952
570
+ ]
571
+ ],
572
+ [
573
+ [
574
+ 0.397691359065116
575
+ ]
576
+ ],
577
+ [
578
+ [
579
+ 0.38905879504778673
580
+ ]
581
+ ]
582
+ ],
583
+ "std": [
584
+ [
585
+ [
586
+ 0.011835930771386763
587
+ ]
588
+ ],
589
+ [
590
+ [
591
+ 0.0008833962499661693
592
+ ]
593
+ ],
594
+ [
595
+ [
596
+ 0.011817405198708308
597
+ ]
598
+ ]
599
+ ],
600
+ "count": [
601
+ 698
602
+ ],
603
+ "q01": [
604
+ [
605
+ [
606
+ 0.0580904554011303
607
+ ]
608
+ ],
609
+ [
610
+ [
611
+ 0.0943141611069463
612
+ ]
613
+ ],
614
+ [
615
+ [
616
+ 0.07385126177010559
617
+ ]
618
+ ]
619
+ ],
620
+ "q10": [
621
+ [
622
+ [
623
+ 0.1498476994975704
624
+ ]
625
+ ],
626
+ [
627
+ [
628
+ 0.17784444466552488
629
+ ]
630
+ ],
631
+ [
632
+ [
633
+ 0.16530938620776084
634
+ ]
635
+ ]
636
+ ],
637
+ "q50": [
638
+ [
639
+ [
640
+ 0.42538821540445076
641
+ ]
642
+ ],
643
+ [
644
+ [
645
+ 0.36474020284505476
646
+ ]
647
+ ],
648
+ [
649
+ [
650
+ 0.3431320902588316
651
+ ]
652
+ ]
653
+ ],
654
+ "q90": [
655
+ [
656
+ [
657
+ 0.6593931496669484
658
+ ]
659
+ ],
660
+ [
661
+ [
662
+ 0.6563671898631197
663
+ ]
664
+ ],
665
+ [
666
+ [
667
+ 0.7019510678627902
668
+ ]
669
+ ]
670
+ ],
671
+ "q99": [
672
+ [
673
+ [
674
+ 0.9601770685378453
675
+ ]
676
+ ],
677
+ [
678
+ [
679
+ 0.9808536940695799
680
+ ]
681
+ ],
682
+ [
683
+ [
684
+ 0.9921368404309383
685
+ ]
686
+ ]
687
+ ]
688
+ },
689
+ "task_index": {
690
+ "min": [
691
+ 0
692
+ ],
693
+ "max": [
694
+ 0
695
+ ],
696
+ "mean": [
697
+ 0.0
698
+ ],
699
+ "std": [
700
+ 0.0
701
+ ],
702
+ "count": [
703
+ 4302
704
+ ],
705
+ "q01": [
706
+ 3.999999999999417e-16
707
+ ],
708
+ "q10": [
709
+ 3.999999999999417e-15
710
+ ],
711
+ "q50": [
712
+ 1.9999999999997088e-14
713
+ ],
714
+ "q90": [
715
+ 3.599999999999476e-14
716
+ ],
717
+ "q99": [
718
+ 3.9599999999994235e-14
719
+ ]
720
+ },
721
+ "frame_index": {
722
+ "min": [
723
+ 0
724
+ ],
725
+ "max": [
726
+ 1591
727
+ ],
728
+ "mean": [
729
+ 720.919339841934
730
+ ],
731
+ "std": [
732
+ 421.7811270747204
733
+ ],
734
+ "count": [
735
+ 4302
736
+ ],
737
+ "q01": [
738
+ 13.839348728865195
739
+ ],
740
+ "q10": [
741
+ 143.8367410319981
742
+ ],
743
+ "q50": [
744
+ 720.6309721059972
745
+ ],
746
+ "q90": [
747
+ 1298.00193865187
748
+ ],
749
+ "q99": [
750
+ 1427.999330955003
751
+ ]
752
+ },
753
+ "episode_index": {
754
+ "min": [
755
+ 0
756
+ ],
757
+ "max": [
758
+ 2
759
+ ],
760
+ "mean": [
761
+ 0.9409576940957695
762
+ ],
763
+ "std": [
764
+ 0.823160114571502
765
+ ],
766
+ "count": [
767
+ 4302
768
+ ],
769
+ "q01": [
770
+ 0.9409576940957698
771
+ ],
772
+ "q10": [
773
+ 0.9409576940957735
774
+ ],
775
+ "q50": [
776
+ 0.9409576940957894
777
+ ],
778
+ "q90": [
779
+ 0.9409576940958053
780
+ ],
781
+ "q99": [
782
+ 0.940957694095809
783
+ ]
784
+ },
785
+ "action": {
786
+ "min": [
787
+ -0.7432459592819214,
788
+ 0.04534946009516716,
789
+ -0.052379757165908813,
790
+ -1.2662627696990967,
791
+ -0.16955158114433289,
792
+ -0.33357998728752136,
793
+ 0.0,
794
+ -0.4773537516593933,
795
+ 0.033012863248586655,
796
+ 0.030904026702046394,
797
+ -0.9758300185203552,
798
+ -0.5729710459709167,
799
+ -0.6972259283065796,
800
+ 0.0
801
+ ],
802
+ "max": [
803
+ 0.9410649538040161,
804
+ 2.613168478012085,
805
+ 2.3590381145477295,
806
+ 0.45026180148124695,
807
+ 1.355224370956421,
808
+ 0.9702105522155762,
809
+ 0.9347098469734192,
810
+ 0.7805103063583374,
811
+ 2.2680227756500244,
812
+ 1.7457696199417114,
813
+ 0.24515724182128906,
814
+ 0.6879611611366272,
815
+ 0.005305043887346983,
816
+ 1.0
817
+ ],
818
+ "mean": [
819
+ -0.06489374772968097,
820
+ 1.4305292555810352,
821
+ 0.9908276520901533,
822
+ -0.5862678620134715,
823
+ 0.34612776515706645,
824
+ 0.04757323899721577,
825
+ 0.4664618393145623,
826
+ 0.12738351451483287,
827
+ 1.1560780857397424,
828
+ 0.7997007510762943,
829
+ -0.4451625096914326,
830
+ -0.11703992116484516,
831
+ -0.20678693721151417,
832
+ 0.6056838976899063
833
+ ],
834
+ "std": [
835
+ 0.3393938116388993,
836
+ 0.7347910169923642,
837
+ 0.6295302457104124,
838
+ 0.4002754294173407,
839
+ 0.261427616592217,
840
+ 0.24667829747725833,
841
+ 0.37791482089643286,
842
+ 0.19836179087620553,
843
+ 0.6295795865704733,
844
+ 0.43117130625383643,
845
+ 0.3061040593560514,
846
+ 0.2896127939425275,
847
+ 0.15754706595115167,
848
+ 0.45087467995892627
849
+ ],
850
+ "count": [
851
+ 4302
852
+ ],
853
+ "q01": [
854
+ -0.6011121516135824,
855
+ 0.04779601371816845,
856
+ -0.051421832603231084,
857
+ -1.2417348220231976,
858
+ -0.119107802800091,
859
+ -0.22865927459316882,
860
+ -1.000000013351432e-10,
861
+ -0.33046820678669453,
862
+ 0.0349593206249755,
863
+ 0.033450899314236004,
864
+ -0.9220605824670921,
865
+ -0.45761103034319905,
866
+ -0.5213933232405398,
867
+ -1.000000013351432e-10
868
+ ],
869
+ "q10": [
870
+ -0.3386385253810262,
871
+ 0.3253245986548483,
872
+ 0.14402620165350835,
873
+ -0.9839271462534483,
874
+ 0.02067093547213754,
875
+ -0.12072227879189062,
876
+ 0.01640902117077003,
877
+ -0.08128291275938256,
878
+ 0.22728699443029224,
879
+ 0.18443751406554304,
880
+ -0.7784386912631008,
881
+ -0.4118520589462103,
882
+ -0.4203379457304131,
883
+ 0.005006478642617155
884
+ ],
885
+ "q50": [
886
+ -0.13088530162558487,
887
+ 1.6258077696277506,
888
+ 0.9334027349865752,
889
+ -0.7003688991263766,
890
+ 0.3362377080175833,
891
+ -0.015566841544415013,
892
+ 0.6127757242138857,
893
+ 0.1314825525979861,
894
+ 1.31366689002331,
895
+ 0.778071450402935,
896
+ -0.5573380793339888,
897
+ -0.17930950605725393,
898
+ -0.18530110307672032,
899
+ 0.834661341684826
900
+ ],
901
+ "q90": [
902
+ 0.4662769400646719,
903
+ 2.235277263370019,
904
+ 1.8700744364587867,
905
+ 0.05852641276366854,
906
+ 0.6663570259931973,
907
+ 0.2985747358849968,
908
+ 0.8995480931525941,
909
+ 0.35567123510677007,
910
+ 1.9385153336468064,
911
+ 1.3919242030019152,
912
+ 0.06777209584815365,
913
+ 0.3055775761357996,
914
+ -0.04706276992236153,
915
+ 0.99995738075835
916
+ ],
917
+ "q99": [
918
+ 0.9035193308995303,
919
+ 2.4920646562746986,
920
+ 2.2004699018266463,
921
+ 0.20510198097016186,
922
+ 1.0220847161502298,
923
+ 0.8734050868547725,
924
+ 0.9268234656158706,
925
+ 0.6181574283905331,
926
+ 2.195732258948156,
927
+ 1.6616333573854343,
928
+ 0.16127825076385416,
929
+ 0.6181055331147034,
930
+ -0.03247405905525536,
931
+ 0.999995738075835
932
+ ]
933
+ }
934
+ }
meta/tasks.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1cf5af8cbcbbba89fe73df41134c4ef842cd1d176989a44f2f3805572b7e795e
3
+ size 2152
videos/observation.images.front_camera/chunk-000/file-000.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d9ad587e89e1fbd65d5d1746d0fa15afef0f25c4e4fa389e1952d956b3c8ea3
3
+ size 32465088
videos/observation.images.left_camera/chunk-000/file-000.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04c5694ef34b259bff8b8f6d5d7239539146433054704f880064ec61f849f3b3
3
+ size 28607040
videos/observation.images.right_camera/chunk-000/file-000.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4aa8765c2df1cb86b054d00bd3a777cffcb8ac14b4babb7307b819a065e82842
3
+ size 38708164