wojsza05 commited on
Commit
71b407a
·
verified ·
1 Parent(s): 7ec758e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +243 -0
README.md ADDED
@@ -0,0 +1,243 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "simulation_ur5e",
29
+ "total_episodes": 3,
30
+ "total_frames": 352,
31
+ "total_tasks": 1,
32
+ "total_videos": 9,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 25,
36
+ "splits": {
37
+ "train": "0:3"
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.pose": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 6
46
+ ],
47
+ "names": [
48
+ "x",
49
+ "y",
50
+ "z",
51
+ "roll",
52
+ "pitch",
53
+ "yaw"
54
+ ]
55
+ },
56
+ "observation.state.gripper": {
57
+ "dtype": "float32",
58
+ "shape": [
59
+ 1
60
+ ],
61
+ "names": [
62
+ "gripper"
63
+ ]
64
+ },
65
+ "observation.state.joints": {
66
+ "dtype": "float32",
67
+ "shape": [
68
+ 6
69
+ ],
70
+ "names": [
71
+ "base",
72
+ "shoulder",
73
+ "elbow",
74
+ "wrist1",
75
+ "wrist2",
76
+ "wrist3"
77
+ ]
78
+ },
79
+ "observation.images.side": {
80
+ "dtype": "video",
81
+ "shape": [
82
+ 3,
83
+ 480,
84
+ 640
85
+ ],
86
+ "names": [
87
+ "channels",
88
+ "height",
89
+ "width"
90
+ ],
91
+ "info": {
92
+ "video.height": 480,
93
+ "video.width": 640,
94
+ "video.codec": "av1",
95
+ "video.pix_fmt": "yuv420p",
96
+ "video.is_depth_map": false,
97
+ "video.fps": 25,
98
+ "video.channels": 3,
99
+ "has_audio": false
100
+ }
101
+ },
102
+ "observation.images.wrist_left": {
103
+ "dtype": "video",
104
+ "shape": [
105
+ 3,
106
+ 480,
107
+ 640
108
+ ],
109
+ "names": [
110
+ "channels",
111
+ "height",
112
+ "width"
113
+ ],
114
+ "info": {
115
+ "video.height": 480,
116
+ "video.width": 640,
117
+ "video.codec": "av1",
118
+ "video.pix_fmt": "yuv420p",
119
+ "video.is_depth_map": false,
120
+ "video.fps": 25,
121
+ "video.channels": 3,
122
+ "has_audio": false
123
+ }
124
+ },
125
+ "observation.images.wrist_right": {
126
+ "dtype": "video",
127
+ "shape": [
128
+ 3,
129
+ 480,
130
+ 640
131
+ ],
132
+ "names": [
133
+ "channels",
134
+ "height",
135
+ "width"
136
+ ],
137
+ "info": {
138
+ "video.height": 480,
139
+ "video.width": 640,
140
+ "video.codec": "av1",
141
+ "video.pix_fmt": "yuv420p",
142
+ "video.is_depth_map": false,
143
+ "video.fps": 25,
144
+ "video.channels": 3,
145
+ "has_audio": false
146
+ }
147
+ },
148
+ "observation.timestamps": {
149
+ "dtype": "float32",
150
+ "shape": [
151
+ 4
152
+ ],
153
+ "names": [
154
+ "robot",
155
+ "camera_side",
156
+ "camera_wrist_left",
157
+ "camera_wrist_right"
158
+ ]
159
+ },
160
+ "action.pose": {
161
+ "dtype": "float32",
162
+ "shape": [
163
+ 6
164
+ ],
165
+ "names": [
166
+ "dx",
167
+ "dy",
168
+ "dz",
169
+ "droll",
170
+ "dpitch",
171
+ "dyaw"
172
+ ]
173
+ },
174
+ "action.gripper": {
175
+ "dtype": "float32",
176
+ "shape": [
177
+ 1
178
+ ],
179
+ "names": [
180
+ "gripper"
181
+ ]
182
+ },
183
+ "action.joints": {
184
+ "dtype": "float32",
185
+ "shape": [
186
+ 6
187
+ ],
188
+ "names": [
189
+ "base",
190
+ "shoulder",
191
+ "elbow",
192
+ "wrist1",
193
+ "wrist2",
194
+ "wrist3"
195
+ ]
196
+ },
197
+ "timestamp": {
198
+ "dtype": "float32",
199
+ "shape": [
200
+ 1
201
+ ],
202
+ "names": null
203
+ },
204
+ "frame_index": {
205
+ "dtype": "int64",
206
+ "shape": [
207
+ 1
208
+ ],
209
+ "names": null
210
+ },
211
+ "episode_index": {
212
+ "dtype": "int64",
213
+ "shape": [
214
+ 1
215
+ ],
216
+ "names": null
217
+ },
218
+ "index": {
219
+ "dtype": "int64",
220
+ "shape": [
221
+ 1
222
+ ],
223
+ "names": null
224
+ },
225
+ "task_index": {
226
+ "dtype": "int64",
227
+ "shape": [
228
+ 1
229
+ ],
230
+ "names": null
231
+ }
232
+ }
233
+ }
234
+ ```
235
+
236
+
237
+ ## Citation
238
+
239
+ **BibTeX:**
240
+
241
+ ```bibtex
242
+ [More Information Needed]
243
+ ```