elijahgalahad commited on
Commit
d8735dc
·
verified ·
1 Parent(s): 2c20c57

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +226 -0
README.md ADDED
@@ -0,0 +1,226 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "franka",
29
+ "total_episodes": 436,
30
+ "total_frames": 53455,
31
+ "total_tasks": 10,
32
+ "chunks_size": 1000,
33
+ "fps": 20,
34
+ "splits": {
35
+ "train": "0:436"
36
+ },
37
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
38
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
39
+ "features": {
40
+ "images.cam_front": {
41
+ "dtype": "video",
42
+ "shape": [
43
+ 256,
44
+ 256,
45
+ 3
46
+ ],
47
+ "names": [
48
+ "height",
49
+ "width",
50
+ "rgb"
51
+ ],
52
+ "info": {
53
+ "video.height": 256,
54
+ "video.width": 256,
55
+ "video.codec": "av1",
56
+ "video.pix_fmt": "yuv420p",
57
+ "video.is_depth_map": false,
58
+ "video.fps": 20,
59
+ "video.channels": 3,
60
+ "has_audio": false
61
+ }
62
+ },
63
+ "images.cam_wrist": {
64
+ "dtype": "video",
65
+ "shape": [
66
+ 256,
67
+ 256,
68
+ 3
69
+ ],
70
+ "names": [
71
+ "height",
72
+ "width",
73
+ "rgb"
74
+ ],
75
+ "info": {
76
+ "video.height": 256,
77
+ "video.width": 256,
78
+ "video.codec": "av1",
79
+ "video.pix_fmt": "yuv420p",
80
+ "video.is_depth_map": false,
81
+ "video.fps": 20,
82
+ "video.channels": 3,
83
+ "has_audio": false
84
+ }
85
+ },
86
+ "arm_state_cart_pos": {
87
+ "dtype": "float32",
88
+ "shape": [
89
+ 3
90
+ ],
91
+ "names": {
92
+ "axes": [
93
+ "x",
94
+ "y",
95
+ "z"
96
+ ]
97
+ }
98
+ },
99
+ "arm_state_cart_rot": {
100
+ "dtype": "float32",
101
+ "shape": [
102
+ 3
103
+ ],
104
+ "names": {
105
+ "axes": [
106
+ "axis_angle1",
107
+ "axis_angle2",
108
+ "axis_angle3"
109
+ ]
110
+ }
111
+ },
112
+ "arm_state_joint_pos": {
113
+ "dtype": "float32",
114
+ "shape": [
115
+ 7
116
+ ],
117
+ "names": {
118
+ "joints": [
119
+ "joint_0",
120
+ "joint_1",
121
+ "joint_2",
122
+ "joint_3",
123
+ "joint_4",
124
+ "joint_5",
125
+ "joint_6"
126
+ ]
127
+ }
128
+ },
129
+ "gripper_state_qpos": {
130
+ "dtype": "float32",
131
+ "shape": [
132
+ 2
133
+ ],
134
+ "names": {
135
+ "finger": [
136
+ "left",
137
+ "right"
138
+ ]
139
+ }
140
+ },
141
+ "arm_cmd_cart_pos": {
142
+ "dtype": "float32",
143
+ "shape": [
144
+ 3
145
+ ],
146
+ "names": {
147
+ "axes": [
148
+ "x",
149
+ "y",
150
+ "z"
151
+ ]
152
+ }
153
+ },
154
+ "arm_cmd_cart_rot": {
155
+ "dtype": "float32",
156
+ "shape": [
157
+ 3
158
+ ],
159
+ "names": {
160
+ "axes": [
161
+ "axis_angle1",
162
+ "axis_angle2",
163
+ "axis_angle3"
164
+ ]
165
+ }
166
+ },
167
+ "gripper_cmd_action": {
168
+ "dtype": "float32",
169
+ "shape": [
170
+ 1
171
+ ],
172
+ "names": {
173
+ "scalar": [
174
+ "command"
175
+ ]
176
+ }
177
+ },
178
+ "timestamp": {
179
+ "dtype": "float32",
180
+ "shape": [
181
+ 1
182
+ ],
183
+ "names": null
184
+ },
185
+ "frame_index": {
186
+ "dtype": "int64",
187
+ "shape": [
188
+ 1
189
+ ],
190
+ "names": null
191
+ },
192
+ "episode_index": {
193
+ "dtype": "int64",
194
+ "shape": [
195
+ 1
196
+ ],
197
+ "names": null
198
+ },
199
+ "index": {
200
+ "dtype": "int64",
201
+ "shape": [
202
+ 1
203
+ ],
204
+ "names": null
205
+ },
206
+ "task_index": {
207
+ "dtype": "int64",
208
+ "shape": [
209
+ 1
210
+ ],
211
+ "names": null
212
+ }
213
+ },
214
+ "total_chunks": 1,
215
+ "total_videos": 872
216
+ }
217
+ ```
218
+
219
+
220
+ ## Citation
221
+
222
+ **BibTeX:**
223
+
224
+ ```bibtex
225
+ [More Information Needed]
226
+ ```