sk1700 commited on
Commit
4b52431
·
verified ·
1 Parent(s): e8d8007

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +263 -21
README.md CHANGED
@@ -1,32 +1,274 @@
1
  ---
2
- language:
3
- - en
4
  license: apache-2.0
5
- tags:
6
- - robotics
7
- - dataset
8
- - lerobot
9
- - ur5e
10
  task_categories:
11
  - robotics
12
- pretty_name: UR5e Dual RealSense Haptic Teleop Dataset (LeRobot v2.1)
 
13
  configs:
14
  - config_name: default
15
- data_files:
16
- - data/*/*.parquet
17
  ---
18
 
19
- # UR5e Dual RealSense Haptic Teleoperation Dataset (LeRobot v2.1)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
- - Control loop: ~500 Hz (RTDE)
22
- - Dataset sampling: fixed 30 Hz
23
- - Gripper: OnRobot RG6 — haptic btn1=open, btn2=close
24
- - Rotation: hold V + R (+Z) / E (-Z)
25
 
26
- State / action layout (7-dim, pi0-compatible):
27
- - dim 0-5 : UR5e joint positions (rad)
28
- - dim 6 : gripper width (mm, absolute) closed=10.6 open=160.2
29
 
30
- Definitions:
31
- - observation.state[t] = [q0..q5, gripper_mm] at time t
32
- - action[t] = [q0..q5, gripper_mm] at time t+1 (next-step absolute)
 
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
+
15
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=sk1700/UrCubeStack">
16
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
17
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
18
+ </a>
19
+
20
+
21
+ ## Dataset Description
22
+
23
+
24
+
25
+ - **Homepage:** [More Information Needed]
26
+ - **Paper:** [More Information Needed]
27
+ - **License:** apache-2.0
28
+
29
+ ## Dataset Structure
30
+
31
+ [meta/info.json](meta/info.json):
32
+ ```json
33
+ {
34
+ "codebase_version": "v3.0",
35
+ "robot_type": "ur5e",
36
+ "total_episodes": 1,
37
+ "total_frames": 2011,
38
+ "total_tasks": 1,
39
+ "chunks_size": 1000,
40
+ "fps": 30,
41
+ "splits": {
42
+ "train": "0:1"
43
+ },
44
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
45
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
46
+ "camera_keys": [
47
+ "observation.images.wrist",
48
+ "observation.images.front"
49
+ ],
50
+ "features": {
51
+ "action": {
52
+ "dtype": "float32",
53
+ "shape": [
54
+ 7
55
+ ],
56
+ "names": [
57
+ "shoulder_pan.next_pos",
58
+ "shoulder_lift.next_pos",
59
+ "elbow_flex.next_pos",
60
+ "wrist_1.next_pos",
61
+ "wrist_2.next_pos",
62
+ "wrist_3.next_pos",
63
+ "gripper.next_pos"
64
+ ],
65
+ "fps": 30
66
+ },
67
+ "observation.state": {
68
+ "dtype": "float32",
69
+ "shape": [
70
+ 7
71
+ ],
72
+ "names": [
73
+ "shoulder_pan.pos",
74
+ "shoulder_lift.pos",
75
+ "elbow_flex.pos",
76
+ "wrist_1.pos",
77
+ "wrist_2.pos",
78
+ "wrist_3.pos",
79
+ "gripper.pos"
80
+ ],
81
+ "fps": 30
82
+ },
83
+ "observation.images.wrist": {
84
+ "dtype": "video",
85
+ "shape": [
86
+ 480,
87
+ 640,
88
+ 3
89
+ ],
90
+ "names": [
91
+ "height",
92
+ "width",
93
+ "channels"
94
+ ],
95
+ "info": {
96
+ "video.height": 480,
97
+ "video.width": 640,
98
+ "video.codec": "avc1",
99
+ "video.pix_fmt": "yuv420p",
100
+ "video.is_depth_map": false,
101
+ "video.fps": 30,
102
+ "video.channels": 3,
103
+ "has_audio": false
104
+ }
105
+ },
106
+ "observation.images.front": {
107
+ "dtype": "video",
108
+ "shape": [
109
+ 480,
110
+ 640,
111
+ 3
112
+ ],
113
+ "names": [
114
+ "height",
115
+ "width",
116
+ "channels"
117
+ ],
118
+ "info": {
119
+ "video.height": 480,
120
+ "video.width": 640,
121
+ "video.codec": "avc1",
122
+ "video.pix_fmt": "yuv420p",
123
+ "video.is_depth_map": false,
124
+ "video.fps": 30,
125
+ "video.channels": 3,
126
+ "has_audio": false
127
+ }
128
+ },
129
+ "timestamp": {
130
+ "dtype": "float32",
131
+ "shape": [
132
+ 1
133
+ ],
134
+ "names": null,
135
+ "fps": 30
136
+ },
137
+ "frame_index": {
138
+ "dtype": "int64",
139
+ "shape": [
140
+ 1
141
+ ],
142
+ "names": null,
143
+ "fps": 30
144
+ },
145
+ "episode_index": {
146
+ "dtype": "int64",
147
+ "shape": [
148
+ 1
149
+ ],
150
+ "names": null,
151
+ "fps": 30
152
+ },
153
+ "index": {
154
+ "dtype": "int64",
155
+ "shape": [
156
+ 1
157
+ ],
158
+ "names": null,
159
+ "fps": 30
160
+ },
161
+ "task_index": {
162
+ "dtype": "int64",
163
+ "shape": [
164
+ 1
165
+ ],
166
+ "names": null,
167
+ "fps": 30
168
+ }
169
+ },
170
+ "stats": {
171
+ "action": {
172
+ "min": [
173
+ -0.4719284176826477,
174
+ -1.083202600479126,
175
+ 1.131264567375183,
176
+ -2.1201283931732178,
177
+ -1.5940574407577515,
178
+ -0.6380365490913391,
179
+ 45.79999923706055
180
+ ],
181
+ "max": [
182
+ -0.24826937913894653,
183
+ -0.7765448689460754,
184
+ 1.5499972105026245,
185
+ -1.8114920854568481,
186
+ -1.5860241651535034,
187
+ -0.13784343004226685,
188
+ 150.8000030517578
189
+ ],
190
+ "mean": [
191
+ -0.38336625041681877,
192
+ -0.9233003909584303,
193
+ 1.3056504370145452,
194
+ -1.9878923144878764,
195
+ -1.5891635341468822,
196
+ -0.38939836376760206,
197
+ 68.38020866276435
198
+ ],
199
+ "std": [
200
+ 0.08732317680810911,
201
+ 0.06663771363537135,
202
+ 0.09076540114269227,
203
+ 0.061248604605212614,
204
+ 0.003087044900837268,
205
+ 0.1465308571965129,
206
+ 29.48416036189623
207
+ ]
208
+ },
209
+ "observation.state": {
210
+ "min": [
211
+ -0.4719284176826477,
212
+ -1.083426833152771,
213
+ 1.131264567375183,
214
+ -2.1201283931732178,
215
+ -1.5940574407577515,
216
+ -0.6380365490913391,
217
+ 45.79999923706055
218
+ ],
219
+ "max": [
220
+ -0.24826937913894653,
221
+ -0.7765448689460754,
222
+ 1.5504931211471558,
223
+ -1.8114920854568481,
224
+ -1.5860241651535034,
225
+ -0.13784343004226685,
226
+ 150.8000030517578
227
+ ],
228
+ "mean": [
229
+ -0.3833687315824197,
230
+ -0.9233364531615669,
231
+ 1.3057277204384559,
232
+ -1.9879336561627912,
233
+ -1.5891635526418093,
234
+ -0.38934873452772256,
235
+ 68.39249110779082
236
+ ],
237
+ "std": [
238
+ 0.08732260307097349,
239
+ 0.06670470247547453,
240
+ 0.09090756557370962,
241
+ 0.06127760702371306,
242
+ 0.0030870510550819598,
243
+ 0.14652196435216963,
244
+ 29.485769828618427
245
+ ]
246
+ },
247
+ "timestamp": {
248
+ "min": [
249
+ 0.0
250
+ ],
251
+ "max": [
252
+ 67.0
253
+ ],
254
+ "mean": [
255
+ 33.5
256
+ ],
257
+ "std": [
258
+ 19.350854873657227
259
+ ]
260
+ }
261
+ },
262
+ "data_files_size_in_mb": 100,
263
+ "video_files_size_in_mb": 200
264
+ }
265
+ ```
266
+
267
 
268
+ ## Citation
 
 
 
269
 
270
+ **BibTeX:**
 
 
271
 
272
+ ```bibtex
273
+ [More Information Needed]
274
+ ```