CSCSXX commited on
Commit
8b9f4ce
·
verified ·
1 Parent(s): d2a322b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +264 -0
README.md ADDED
@@ -0,0 +1,264 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - franka
8
+ - Franka_place_containter_plate
9
+ - dual-arm
10
+ - teleoperation
11
+ configs:
12
+ - config_name: default
13
+ data_files: data/*/*.parquet
14
+ ---
15
+
16
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
17
+
18
+ ## Dataset Description
19
+
20
+
21
+ # Franka Dual-Arm Franka Place Containter Plate Dataset
22
+
23
+ Move the container to the plate.
24
+
25
+ ## Hardware
26
+ - **Robot**: 2× Franka Emika Panda (7-DOF dual-arm setup)
27
+ - **Cameras**: 3× Intel RealSense D435 (256×256 RGB, front + wrist views)
28
+
29
+
30
+ ### State Space (38 dimensions)
31
+
32
+ **Left Arm (19 dimensions):**
33
+ - `tcp_pose` (6): End-effector pose [x, y, z, roll, pitch, yaw] in meters and radians
34
+ - `tcp_vel` (6): End-effector velocity [vx, vy, vz, wx, wy, wz] in m/s and rad/s
35
+ - `tcp_force` (3): Force at end-effector [fx, fy, fz] in Newtons
36
+ - `tcp_torque` (3): Torque at end-effector [tx, ty, tz] in Newton-meters
37
+ - `gripper_pose` (1): Gripper opening (0=closed, 1=open)
38
+
39
+ **Right Arm (19 dimensions):** Same structure as left arm
40
+
41
+
42
+
43
+ ### Action Space (14 dimensions)
44
+
45
+ **Left Arm (7 dimensions):**
46
+ - `delta_pose` (6): Incremental pose change [dx, dy, dz, droll, dpitch, dyaw]
47
+ - `gripper` (1): Target gripper state (0=closed, 1=open)
48
+
49
+ **Right Arm (7 dimensions):** Same structure as left arm
50
+
51
+
52
+
53
+ - **Homepage:** [More Information Needed]
54
+ - **Paper:** [More Information Needed]
55
+ - **License:** apache-2.0
56
+
57
+ ## Dataset Structure
58
+
59
+ [meta/info.json](meta/info.json):
60
+ ```json
61
+ {
62
+ "codebase_version": "v2.1",
63
+ "robot_type": "franka",
64
+ "total_episodes": 100,
65
+ "total_frames": 13278,
66
+ "total_tasks": 1,
67
+ "total_videos": 300,
68
+ "total_chunks": 1,
69
+ "chunks_size": 1000,
70
+ "fps": 10,
71
+ "splits": {
72
+ "train": "0:100"
73
+ },
74
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
75
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
76
+ "features": {
77
+ "image_front": {
78
+ "dtype": "video",
79
+ "shape": [
80
+ 256,
81
+ 256,
82
+ 3
83
+ ],
84
+ "names": [
85
+ "height",
86
+ "width",
87
+ "channel"
88
+ ],
89
+ "info": {
90
+ "video.height": 256,
91
+ "video.width": 256,
92
+ "video.codec": "av1",
93
+ "video.pix_fmt": "yuv420p",
94
+ "video.is_depth_map": false,
95
+ "video.fps": 10,
96
+ "video.channels": 3,
97
+ "has_audio": false
98
+ }
99
+ },
100
+ "image_wrist_left": {
101
+ "dtype": "video",
102
+ "shape": [
103
+ 256,
104
+ 256,
105
+ 3
106
+ ],
107
+ "names": [
108
+ "height",
109
+ "width",
110
+ "channel"
111
+ ],
112
+ "info": {
113
+ "video.height": 256,
114
+ "video.width": 256,
115
+ "video.codec": "av1",
116
+ "video.pix_fmt": "yuv420p",
117
+ "video.is_depth_map": false,
118
+ "video.fps": 10,
119
+ "video.channels": 3,
120
+ "has_audio": false
121
+ }
122
+ },
123
+ "image_wrist_right": {
124
+ "dtype": "video",
125
+ "shape": [
126
+ 256,
127
+ 256,
128
+ 3
129
+ ],
130
+ "names": [
131
+ "height",
132
+ "width",
133
+ "channel"
134
+ ],
135
+ "info": {
136
+ "video.height": 256,
137
+ "video.width": 256,
138
+ "video.codec": "av1",
139
+ "video.pix_fmt": "yuv420p",
140
+ "video.is_depth_map": false,
141
+ "video.fps": 10,
142
+ "video.channels": 3,
143
+ "has_audio": false
144
+ }
145
+ },
146
+ "state": {
147
+ "dtype": "float32",
148
+ "shape": [
149
+ 38
150
+ ],
151
+ "names": {
152
+ "dims": [
153
+ "left/tcp_x",
154
+ "left/tcp_y",
155
+ "left/tcp_z",
156
+ "left/tcp_roll",
157
+ "left/tcp_pitch",
158
+ "left/tcp_yaw",
159
+ "left/tcp_vx",
160
+ "left/tcp_vy",
161
+ "left/tcp_vz",
162
+ "left/tcp_wx",
163
+ "left/tcp_wy",
164
+ "left/tcp_wz",
165
+ "left/gripper_pos",
166
+ "left/force_x",
167
+ "left/force_y",
168
+ "left/force_z",
169
+ "left/torque_x",
170
+ "left/torque_y",
171
+ "left/torque_z",
172
+ "right/tcp_x",
173
+ "right/tcp_y",
174
+ "right/tcp_z",
175
+ "right/tcp_roll",
176
+ "right/tcp_pitch",
177
+ "right/tcp_yaw",
178
+ "right/tcp_vx",
179
+ "right/tcp_vy",
180
+ "right/tcp_vz",
181
+ "right/tcp_wx",
182
+ "right/tcp_wy",
183
+ "right/tcp_wz",
184
+ "right/gripper_pos",
185
+ "right/force_x",
186
+ "right/force_y",
187
+ "right/force_z",
188
+ "right/torque_x",
189
+ "right/torque_y",
190
+ "right/torque_z"
191
+ ]
192
+ }
193
+ },
194
+ "actions": {
195
+ "dtype": "float32",
196
+ "shape": [
197
+ 14
198
+ ],
199
+ "names": {
200
+ "dims": [
201
+ "left/delta_x",
202
+ "left/delta_y",
203
+ "left/delta_z",
204
+ "left/delta_roll",
205
+ "left/delta_pitch",
206
+ "left/delta_yaw",
207
+ "left/gripper",
208
+ "right/delta_x",
209
+ "right/delta_y",
210
+ "right/delta_z",
211
+ "right/delta_roll",
212
+ "right/delta_pitch",
213
+ "right/delta_yaw",
214
+ "right/gripper"
215
+ ]
216
+ }
217
+ },
218
+ "timestamp": {
219
+ "dtype": "float32",
220
+ "shape": [
221
+ 1
222
+ ],
223
+ "names": null
224
+ },
225
+ "frame_index": {
226
+ "dtype": "int64",
227
+ "shape": [
228
+ 1
229
+ ],
230
+ "names": null
231
+ },
232
+ "episode_index": {
233
+ "dtype": "int64",
234
+ "shape": [
235
+ 1
236
+ ],
237
+ "names": null
238
+ },
239
+ "index": {
240
+ "dtype": "int64",
241
+ "shape": [
242
+ 1
243
+ ],
244
+ "names": null
245
+ },
246
+ "task_index": {
247
+ "dtype": "int64",
248
+ "shape": [
249
+ 1
250
+ ],
251
+ "names": null
252
+ }
253
+ }
254
+ }
255
+ ```
256
+
257
+
258
+ ## Citation
259
+
260
+ **BibTeX:**
261
+
262
+ ```bibtex
263
+ [More Information Needed]
264
+ ```