sk1700 commited on
Commit
8b0189d
·
verified ·
1 Parent(s): 5a59d22

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +250 -29
README.md CHANGED
@@ -1,43 +1,264 @@
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 (action = q[t+1] absolute, 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
 
24
- Definitions:
25
- - `observation.state[t] = q_actual[t]` (UR joint positions, rad)
26
- - `action[t] = q_actual[t+1]` (next-step absolute joint positions at 30 Hz)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
 
28
- Temporal alignment:
29
- - Camera frames are stored in timestamped ring buffers (depth=8).
30
- - At each 30 Hz sample, the frame whose capture timestamp is closest to the
31
- RTDE packet timestamp is selected for both cameras independently.
32
- - This eliminates grab-latest race conditions and cross-camera temporal skew.
33
 
34
- Visualizer-friendly naming:
35
- - observation.state names: ['shoulder_pan.pos', 'shoulder_lift.pos', 'elbow_flex.pos', 'wrist_1.pos', 'wrist_2.pos', 'wrist_3.pos']
36
- - action names: ['shoulder_pan.next_pos', 'shoulder_lift.next_pos', 'elbow_flex.next_pos', 'wrist_1.next_pos', 'wrist_2.next_pos', 'wrist_3.next_pos']
37
 
38
- Videos:
39
- - `videos/chunk-000/observation.images.wrist/episode_XXXXXX.mp4`
40
- - `videos/chunk-000/observation.images.front/episode_XXXXXX.mp4`
41
 
42
- Per-episode Parquet schema (STRICT order):
43
- `action`, `observation.state`, `timestamp`, `frame_index`, `episode_index`, `index`, `task_index`
 
 
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/iros105">
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": 50,
37
+ "total_frames": 17478,
38
+ "total_tasks": 1,
39
+ "chunks_size": 1000,
40
+ "fps": 30,
41
+ "splits": {
42
+ "train": "0:50"
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
+ 6
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
+ ],
64
+ "fps": 30
65
+ },
66
+ "observation.state": {
67
+ "dtype": "float32",
68
+ "shape": [
69
+ 6
70
+ ],
71
+ "names": [
72
+ "shoulder_pan.pos",
73
+ "shoulder_lift.pos",
74
+ "elbow_flex.pos",
75
+ "wrist_1.pos",
76
+ "wrist_2.pos",
77
+ "wrist_3.pos"
78
+ ],
79
+ "fps": 30
80
+ },
81
+ "observation.images.wrist": {
82
+ "dtype": "video",
83
+ "shape": [
84
+ 480,
85
+ 640,
86
+ 3
87
+ ],
88
+ "names": [
89
+ "height",
90
+ "width",
91
+ "channels"
92
+ ],
93
+ "info": {
94
+ "video.height": 480,
95
+ "video.width": 640,
96
+ "video.codec": "avc1",
97
+ "video.pix_fmt": "yuv420p",
98
+ "video.is_depth_map": false,
99
+ "video.fps": 30,
100
+ "video.channels": 3,
101
+ "has_audio": false
102
+ }
103
+ },
104
+ "observation.images.front": {
105
+ "dtype": "video",
106
+ "shape": [
107
+ 480,
108
+ 640,
109
+ 3
110
+ ],
111
+ "names": [
112
+ "height",
113
+ "width",
114
+ "channels"
115
+ ],
116
+ "info": {
117
+ "video.height": 480,
118
+ "video.width": 640,
119
+ "video.codec": "avc1",
120
+ "video.pix_fmt": "yuv420p",
121
+ "video.is_depth_map": false,
122
+ "video.fps": 30,
123
+ "video.channels": 3,
124
+ "has_audio": false
125
+ }
126
+ },
127
+ "timestamp": {
128
+ "dtype": "float32",
129
+ "shape": [
130
+ 1
131
+ ],
132
+ "names": null,
133
+ "fps": 30
134
+ },
135
+ "frame_index": {
136
+ "dtype": "int64",
137
+ "shape": [
138
+ 1
139
+ ],
140
+ "names": null,
141
+ "fps": 30
142
+ },
143
+ "episode_index": {
144
+ "dtype": "int64",
145
+ "shape": [
146
+ 1
147
+ ],
148
+ "names": null,
149
+ "fps": 30
150
+ },
151
+ "index": {
152
+ "dtype": "int64",
153
+ "shape": [
154
+ 1
155
+ ],
156
+ "names": null,
157
+ "fps": 30
158
+ },
159
+ "task_index": {
160
+ "dtype": "int64",
161
+ "shape": [
162
+ 1
163
+ ],
164
+ "names": null,
165
+ "fps": 30
166
+ }
167
+ },
168
+ "stats": {
169
+ "action": {
170
+ "min": [
171
+ -0.30254632234573364,
172
+ -1.4072192907333374,
173
+ 1.0823930501937866,
174
+ -2.013207197189331,
175
+ -1.5903314352035522,
176
+ 2.8244521617889404
177
+ ],
178
+ "max": [
179
+ 0.031140876933932304,
180
+ -1.0834665298461914,
181
+ 1.6135510206222534,
182
+ -1.552892804145813,
183
+ -1.5486167669296265,
184
+ 3.15798020362854
185
+ ],
186
+ "mean": [
187
+ -0.10987341712288169,
188
+ -1.2516482719527677,
189
+ 1.4809414866123665,
190
+ -1.8546782564497577,
191
+ -1.5823052629397054,
192
+ 3.0176943912701444
193
+ ],
194
+ "std": [
195
+ 0.047909772589394446,
196
+ 0.03447625380652925,
197
+ 0.09335724005742366,
198
+ 0.10732952673998902,
199
+ 0.004689665563059866,
200
+ 0.04845456964445402
201
+ ]
202
+ },
203
+ "observation.state": {
204
+ "min": [
205
+ -0.30254632234573364,
206
+ -1.4072192907333374,
207
+ 1.0823930501937866,
208
+ -2.013207197189331,
209
+ -1.5903362035751343,
210
+ 2.8244521617889404
211
+ ],
212
+ "max": [
213
+ 0.031173110008239746,
214
+ -1.0834665298461914,
215
+ 1.6135510206222534,
216
+ -1.552892804145813,
217
+ -1.5486167669296265,
218
+ 3.15798020362854
219
+ ],
220
+ "mean": [
221
+ -0.10988727426043932,
222
+ -1.251643259262845,
223
+ 1.4808954989450422,
224
+ -1.8546374517606234,
225
+ -1.5823044220224536,
226
+ 3.0176804350393427
227
+ ],
228
+ "std": [
229
+ 0.04792405214948042,
230
+ 0.03452482871097724,
231
+ 0.09342847540141033,
232
+ 0.10736714459432727,
233
+ 0.004690087116714692,
234
+ 0.048468938056558
235
+ ]
236
+ },
237
+ "timestamp": {
238
+ "min": [
239
+ 0.0
240
+ ],
241
+ "max": [
242
+ 37.93333435058594
243
+ ],
244
+ "mean": [
245
+ 6.762758731842041
246
+ ],
247
+ "std": [
248
+ 5.766101837158203
249
+ ]
250
+ }
251
+ },
252
+ "data_files_size_in_mb": 100,
253
+ "video_files_size_in_mb": 200
254
+ }
255
+ ```
256
 
 
 
 
 
 
257
 
258
+ ## Citation
 
 
259
 
260
+ **BibTeX:**
 
 
261
 
262
+ ```bibtex
263
+ [More Information Needed]
264
+ ```