eunyoung927 commited on
Commit
8afe51b
·
verified ·
1 Parent(s): 8455e24

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +273 -0
README.md ADDED
@@ -0,0 +1,273 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - lerobot
8
+ - lerobot-v3
9
+ - ur7e
10
+ - h264
11
+ - 10fps
12
+ - downsampled
13
+ - stack-block
14
+ - robotics
15
+ configs:
16
+ - config_name: default
17
+ data_files: data/*/*.parquet
18
+ ---
19
+
20
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
21
+
22
+
23
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=CoRL2026-CSI/UR7e-CaP-Stack_Block-100epi_10fps">
24
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
25
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
26
+ </a>
27
+
28
+
29
+ ## Dataset Description
30
+
31
+ 10fps downsampled LeRobot v3 dataset for the UR7e stack-block task. It is derived from CoRL2026-CSI/UR7e-CaP-Stack_Block-100epi by keeping source frames 0, 3, 6, ... in each clean forward-success episode. Numeric observations and absolute 7D UR7e actions are copied from retained source frames without interpolation.
32
+
33
+ - **Homepage:** https://huggingface.co/datasets/CoRL2026-CSI/UR7e-CaP-Stack_Block-100epi
34
+ - **Paper:** [More Information Needed]
35
+ - **License:** apache-2.0
36
+
37
+ ## Dataset Structure
38
+
39
+ [meta/info.json](meta/info.json):
40
+ ```json
41
+ {
42
+ "codebase_version": "v3.0",
43
+ "robot_type": "ur7e",
44
+ "total_episodes": 100,
45
+ "total_frames": 69932,
46
+ "total_tasks": 1,
47
+ "chunks_size": 1000,
48
+ "data_files_size_in_mb": 100,
49
+ "video_files_size_in_mb": 200,
50
+ "fps": 10,
51
+ "splits": {
52
+ "train": "0:100"
53
+ },
54
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
55
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
56
+ "features": {
57
+ "observation.state": {
58
+ "dtype": "float32",
59
+ "shape": [
60
+ 7
61
+ ],
62
+ "names": [
63
+ "shoulder_pan.pos",
64
+ "shoulder_lift.pos",
65
+ "elbow.pos",
66
+ "wrist_1.pos",
67
+ "wrist_2.pos",
68
+ "wrist_3.pos",
69
+ "gripper.pos"
70
+ ]
71
+ },
72
+ "action": {
73
+ "dtype": "float32",
74
+ "shape": [
75
+ 7
76
+ ],
77
+ "names": [
78
+ "shoulder_pan.pos",
79
+ "shoulder_lift.pos",
80
+ "elbow.pos",
81
+ "wrist_1.pos",
82
+ "wrist_2.pos",
83
+ "wrist_3.pos",
84
+ "gripper.pos"
85
+ ]
86
+ },
87
+ "observation.images.realsense_topview": {
88
+ "dtype": "video",
89
+ "shape": [
90
+ 480,
91
+ 640,
92
+ 3
93
+ ],
94
+ "names": [
95
+ "height",
96
+ "width",
97
+ "channels"
98
+ ],
99
+ "info": {
100
+ "video.height": 480,
101
+ "video.width": 640,
102
+ "video.codec": "h264",
103
+ "video.pix_fmt": "yuv420p",
104
+ "video.is_depth_map": false,
105
+ "video.fps": 10,
106
+ "video.channels": 3,
107
+ "has_audio": false
108
+ }
109
+ },
110
+ "observation.images.realsense_wrist": {
111
+ "dtype": "video",
112
+ "shape": [
113
+ 480,
114
+ 640,
115
+ 3
116
+ ],
117
+ "names": [
118
+ "height",
119
+ "width",
120
+ "channels"
121
+ ],
122
+ "info": {
123
+ "video.height": 480,
124
+ "video.width": 640,
125
+ "video.codec": "h264",
126
+ "video.pix_fmt": "yuv420p",
127
+ "video.is_depth_map": false,
128
+ "video.fps": 10,
129
+ "video.channels": 3,
130
+ "has_audio": false
131
+ }
132
+ },
133
+ "skill.type": {
134
+ "dtype": "string",
135
+ "shape": [
136
+ 1
137
+ ],
138
+ "names": null
139
+ },
140
+ "skill.progress": {
141
+ "dtype": "float32",
142
+ "shape": [
143
+ 1
144
+ ],
145
+ "names": null
146
+ },
147
+ "skill.goal_position.joint": {
148
+ "dtype": "float32",
149
+ "shape": [
150
+ 7
151
+ ],
152
+ "names": [
153
+ "shoulder_pan.pos",
154
+ "shoulder_lift.pos",
155
+ "elbow.pos",
156
+ "wrist_1.pos",
157
+ "wrist_2.pos",
158
+ "wrist_3.pos",
159
+ "gripper.pos"
160
+ ]
161
+ },
162
+ "skill.goal_position.world_xyzrpy": {
163
+ "dtype": "float32",
164
+ "shape": [
165
+ 6
166
+ ],
167
+ "names": [
168
+ "x",
169
+ "y",
170
+ "z",
171
+ "roll",
172
+ "pitch",
173
+ "yaw"
174
+ ]
175
+ },
176
+ "skill.goal_position.robot_xyzrpy": {
177
+ "dtype": "float32",
178
+ "shape": [
179
+ 6
180
+ ],
181
+ "names": [
182
+ "x",
183
+ "y",
184
+ "z",
185
+ "roll",
186
+ "pitch",
187
+ "yaw"
188
+ ]
189
+ },
190
+ "skill.goal_position.gripper": {
191
+ "dtype": "float32",
192
+ "shape": [
193
+ 1
194
+ ],
195
+ "names": [
196
+ "gripper.pos"
197
+ ]
198
+ },
199
+ "skill.natural_language": {
200
+ "dtype": "string",
201
+ "shape": [
202
+ 1
203
+ ],
204
+ "names": null
205
+ },
206
+ "observation.ee_pos.robot_xyzrpy": {
207
+ "dtype": "float32",
208
+ "shape": [
209
+ 6
210
+ ],
211
+ "names": [
212
+ "x",
213
+ "y",
214
+ "z",
215
+ "roll",
216
+ "pitch",
217
+ "yaw"
218
+ ]
219
+ },
220
+ "observation.gripper_binary": {
221
+ "dtype": "float32",
222
+ "shape": [
223
+ 1
224
+ ],
225
+ "names": null
226
+ },
227
+ "timestamp": {
228
+ "dtype": "float32",
229
+ "shape": [
230
+ 1
231
+ ],
232
+ "names": null
233
+ },
234
+ "frame_index": {
235
+ "dtype": "int64",
236
+ "shape": [
237
+ 1
238
+ ],
239
+ "names": null
240
+ },
241
+ "episode_index": {
242
+ "dtype": "int64",
243
+ "shape": [
244
+ 1
245
+ ],
246
+ "names": null
247
+ },
248
+ "index": {
249
+ "dtype": "int64",
250
+ "shape": [
251
+ 1
252
+ ],
253
+ "names": null
254
+ },
255
+ "task_index": {
256
+ "dtype": "int64",
257
+ "shape": [
258
+ 1
259
+ ],
260
+ "names": null
261
+ }
262
+ }
263
+ }
264
+ ```
265
+
266
+
267
+ ## Citation
268
+
269
+ **BibTeX:**
270
+
271
+ ```bibtex
272
+ [More Information Needed]
273
+ ```