jccj commited on
Commit
e3e21d2
·
verified ·
1 Parent(s): 1166ac8

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +282 -0
README.md ADDED
@@ -0,0 +1,282 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v2.1",
28
+ "robot_type": null,
29
+ "total_episodes": 45,
30
+ "total_frames": 7749,
31
+ "total_tasks": 1,
32
+ "total_videos": 225,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 10,
36
+ "splits": {
37
+ "train": "0:45"
38
+ },
39
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
40
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
41
+ "features": {
42
+ "observation.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 46
46
+ ],
47
+ "names": [
48
+ "joint_pos_left_0",
49
+ "joint_pos_left_1",
50
+ "joint_pos_left_2",
51
+ "joint_pos_left_3",
52
+ "joint_pos_left_4",
53
+ "joint_pos_left_5",
54
+ "joint_pos_left_6",
55
+ "joint_pos_right_0",
56
+ "joint_pos_right_1",
57
+ "joint_pos_right_2",
58
+ "joint_pos_right_3",
59
+ "joint_pos_right_4",
60
+ "joint_pos_right_5",
61
+ "joint_pos_right_6",
62
+ "tcp_left_pos_x",
63
+ "tcp_left_pos_y",
64
+ "tcp_left_pos_z",
65
+ "tcp_left_quat_x",
66
+ "tcp_left_quat_y",
67
+ "tcp_left_quat_z",
68
+ "tcp_left_quat_w",
69
+ "tcp_right_pos_x",
70
+ "tcp_right_pos_y",
71
+ "tcp_right_pos_z",
72
+ "tcp_right_quat_x",
73
+ "tcp_right_quat_y",
74
+ "tcp_right_quat_z",
75
+ "tcp_right_quat_w",
76
+ "gripper_left_0",
77
+ "gripper_left_1",
78
+ "gripper_right_0",
79
+ "gripper_right_1",
80
+ "last_command_left_0",
81
+ "last_command_left_1",
82
+ "last_command_left_2",
83
+ "last_command_left_3",
84
+ "last_command_left_4",
85
+ "last_command_left_5",
86
+ "last_command_left_6",
87
+ "last_command_right_0",
88
+ "last_command_right_1",
89
+ "last_command_right_2",
90
+ "last_command_right_3",
91
+ "last_command_right_4",
92
+ "last_command_right_5",
93
+ "last_command_right_6"
94
+ ]
95
+ },
96
+ "action": {
97
+ "dtype": "float32",
98
+ "shape": [
99
+ 17
100
+ ],
101
+ "names": [
102
+ "tcp_left_x",
103
+ "tcp_left_y",
104
+ "tcp_left_z",
105
+ "tcp_left_quat_x",
106
+ "tcp_left_quat_y",
107
+ "tcp_left_quat_z",
108
+ "tcp_left_quat_w",
109
+ "tcp_right_x",
110
+ "tcp_right_y",
111
+ "tcp_right_z",
112
+ "tcp_right_quat_x",
113
+ "tcp_right_quat_y",
114
+ "tcp_right_quat_z",
115
+ "tcp_right_quat_w",
116
+ "gripper_left",
117
+ "gripper_right",
118
+ "reward"
119
+ ]
120
+ },
121
+ "observation.images.rgb_static": {
122
+ "dtype": "video",
123
+ "shape": [
124
+ 512,
125
+ 512,
126
+ 3
127
+ ],
128
+ "names": [
129
+ "height",
130
+ "width",
131
+ "channel"
132
+ ],
133
+ "info": {
134
+ "video.height": 512,
135
+ "video.width": 512,
136
+ "video.codec": "av1",
137
+ "video.pix_fmt": "yuv420p",
138
+ "video.is_depth_map": false,
139
+ "video.fps": 10,
140
+ "video.channels": 3,
141
+ "has_audio": false
142
+ }
143
+ },
144
+ "observation.images.rgb_left": {
145
+ "dtype": "video",
146
+ "shape": [
147
+ 512,
148
+ 512,
149
+ 3
150
+ ],
151
+ "names": [
152
+ "height",
153
+ "width",
154
+ "channel"
155
+ ],
156
+ "info": {
157
+ "video.height": 512,
158
+ "video.width": 512,
159
+ "video.codec": "av1",
160
+ "video.pix_fmt": "yuv420p",
161
+ "video.is_depth_map": false,
162
+ "video.fps": 10,
163
+ "video.channels": 3,
164
+ "has_audio": false
165
+ }
166
+ },
167
+ "observation.images.rgb_right": {
168
+ "dtype": "video",
169
+ "shape": [
170
+ 512,
171
+ 512,
172
+ 3
173
+ ],
174
+ "names": [
175
+ "height",
176
+ "width",
177
+ "channel"
178
+ ],
179
+ "info": {
180
+ "video.height": 512,
181
+ "video.width": 512,
182
+ "video.codec": "av1",
183
+ "video.pix_fmt": "yuv420p",
184
+ "video.is_depth_map": false,
185
+ "video.fps": 10,
186
+ "video.channels": 3,
187
+ "has_audio": false
188
+ }
189
+ },
190
+ "observation.images.depth_left": {
191
+ "dtype": "video",
192
+ "shape": [
193
+ 512,
194
+ 512,
195
+ 3
196
+ ],
197
+ "names": [
198
+ "height",
199
+ "width",
200
+ "channel"
201
+ ],
202
+ "info": {
203
+ "video.height": 512,
204
+ "video.width": 512,
205
+ "video.codec": "av1",
206
+ "video.pix_fmt": "yuv420p",
207
+ "video.is_depth_map": false,
208
+ "video.fps": 10,
209
+ "video.channels": 3,
210
+ "has_audio": false
211
+ }
212
+ },
213
+ "observation.images.depth_right": {
214
+ "dtype": "video",
215
+ "shape": [
216
+ 512,
217
+ 512,
218
+ 3
219
+ ],
220
+ "names": [
221
+ "height",
222
+ "width",
223
+ "channel"
224
+ ],
225
+ "info": {
226
+ "video.height": 512,
227
+ "video.width": 512,
228
+ "video.codec": "av1",
229
+ "video.pix_fmt": "yuv420p",
230
+ "video.is_depth_map": false,
231
+ "video.fps": 10,
232
+ "video.channels": 3,
233
+ "has_audio": false
234
+ }
235
+ },
236
+ "timestamp": {
237
+ "dtype": "float32",
238
+ "shape": [
239
+ 1
240
+ ],
241
+ "names": null
242
+ },
243
+ "frame_index": {
244
+ "dtype": "int64",
245
+ "shape": [
246
+ 1
247
+ ],
248
+ "names": null
249
+ },
250
+ "episode_index": {
251
+ "dtype": "int64",
252
+ "shape": [
253
+ 1
254
+ ],
255
+ "names": null
256
+ },
257
+ "index": {
258
+ "dtype": "int64",
259
+ "shape": [
260
+ 1
261
+ ],
262
+ "names": null
263
+ },
264
+ "task_index": {
265
+ "dtype": "int64",
266
+ "shape": [
267
+ 1
268
+ ],
269
+ "names": null
270
+ }
271
+ }
272
+ }
273
+ ```
274
+
275
+
276
+ ## Citation
277
+
278
+ **BibTeX:**
279
+
280
+ ```bibtex
281
+ [More Information Needed]
282
+ ```