aromanus commited on
Commit
de4e73c
·
verified ·
1 Parent(s): e917189

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +253 -0
README.md ADDED
@@ -0,0 +1,253 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "piper",
29
+ "total_episodes": 98,
30
+ "total_frames": 37649,
31
+ "total_tasks": 1,
32
+ "total_videos": 294,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 200,
36
+ "splits": {
37
+ "train": "0:98"
38
+ },
39
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
40
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
41
+ "features": {
42
+ "observation.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 14
46
+ ],
47
+ "names": [
48
+ [
49
+ "left_waist",
50
+ "left_shoulder",
51
+ "left_elbow",
52
+ "left_forearm_roll",
53
+ "left_wrist_angle",
54
+ "left_wrist_rotate",
55
+ "left_gripper",
56
+ "right_waist",
57
+ "right_shoulder",
58
+ "right_elbow",
59
+ "right_forearm_roll",
60
+ "right_wrist_angle",
61
+ "right_wrist_rotate",
62
+ "right_gripper"
63
+ ]
64
+ ]
65
+ },
66
+ "observation.velocity": {
67
+ "dtype": "float32",
68
+ "shape": [
69
+ 14
70
+ ],
71
+ "names": [
72
+ [
73
+ "left_waist",
74
+ "left_shoulder",
75
+ "left_elbow",
76
+ "left_forearm_roll",
77
+ "left_wrist_angle",
78
+ "left_wrist_rotate",
79
+ "left_gripper",
80
+ "right_waist",
81
+ "right_shoulder",
82
+ "right_elbow",
83
+ "right_forearm_roll",
84
+ "right_wrist_angle",
85
+ "right_wrist_rotate",
86
+ "right_gripper"
87
+ ]
88
+ ]
89
+ },
90
+ "observation.effort": {
91
+ "dtype": "float32",
92
+ "shape": [
93
+ 14
94
+ ],
95
+ "names": [
96
+ [
97
+ "left_waist",
98
+ "left_shoulder",
99
+ "left_elbow",
100
+ "left_forearm_roll",
101
+ "left_wrist_angle",
102
+ "left_wrist_rotate",
103
+ "left_gripper",
104
+ "right_waist",
105
+ "right_shoulder",
106
+ "right_elbow",
107
+ "right_forearm_roll",
108
+ "right_wrist_angle",
109
+ "right_wrist_rotate",
110
+ "right_gripper"
111
+ ]
112
+ ]
113
+ },
114
+ "action": {
115
+ "dtype": "float32",
116
+ "shape": [
117
+ 14
118
+ ],
119
+ "names": [
120
+ [
121
+ "left_waist",
122
+ "left_shoulder",
123
+ "left_elbow",
124
+ "left_forearm_roll",
125
+ "left_wrist_angle",
126
+ "left_wrist_rotate",
127
+ "left_gripper",
128
+ "right_waist",
129
+ "right_shoulder",
130
+ "right_elbow",
131
+ "right_forearm_roll",
132
+ "right_wrist_angle",
133
+ "right_wrist_rotate",
134
+ "right_gripper"
135
+ ]
136
+ ]
137
+ },
138
+ "observation.images.top_camera": {
139
+ "dtype": "video",
140
+ "shape": [
141
+ 3,
142
+ 480,
143
+ 640
144
+ ],
145
+ "names": [
146
+ "channels",
147
+ "height",
148
+ "width"
149
+ ],
150
+ "info": {
151
+ "video.height": 480,
152
+ "video.width": 640,
153
+ "video.codec": "av1",
154
+ "video.pix_fmt": "yuv420p",
155
+ "video.is_depth_map": false,
156
+ "video.fps": 200,
157
+ "video.channels": 3,
158
+ "has_audio": false
159
+ }
160
+ },
161
+ "observation.images.left_camera": {
162
+ "dtype": "video",
163
+ "shape": [
164
+ 3,
165
+ 480,
166
+ 640
167
+ ],
168
+ "names": [
169
+ "channels",
170
+ "height",
171
+ "width"
172
+ ],
173
+ "info": {
174
+ "video.height": 480,
175
+ "video.width": 640,
176
+ "video.codec": "av1",
177
+ "video.pix_fmt": "yuv420p",
178
+ "video.is_depth_map": false,
179
+ "video.fps": 200,
180
+ "video.channels": 3,
181
+ "has_audio": false
182
+ }
183
+ },
184
+ "observation.images.right_camera": {
185
+ "dtype": "video",
186
+ "shape": [
187
+ 3,
188
+ 480,
189
+ 640
190
+ ],
191
+ "names": [
192
+ "channels",
193
+ "height",
194
+ "width"
195
+ ],
196
+ "info": {
197
+ "video.height": 480,
198
+ "video.width": 640,
199
+ "video.codec": "av1",
200
+ "video.pix_fmt": "yuv420p",
201
+ "video.is_depth_map": false,
202
+ "video.fps": 200,
203
+ "video.channels": 3,
204
+ "has_audio": false
205
+ }
206
+ },
207
+ "timestamp": {
208
+ "dtype": "float32",
209
+ "shape": [
210
+ 1
211
+ ],
212
+ "names": null
213
+ },
214
+ "frame_index": {
215
+ "dtype": "int64",
216
+ "shape": [
217
+ 1
218
+ ],
219
+ "names": null
220
+ },
221
+ "episode_index": {
222
+ "dtype": "int64",
223
+ "shape": [
224
+ 1
225
+ ],
226
+ "names": null
227
+ },
228
+ "index": {
229
+ "dtype": "int64",
230
+ "shape": [
231
+ 1
232
+ ],
233
+ "names": null
234
+ },
235
+ "task_index": {
236
+ "dtype": "int64",
237
+ "shape": [
238
+ 1
239
+ ],
240
+ "names": null
241
+ }
242
+ }
243
+ }
244
+ ```
245
+
246
+
247
+ ## Citation
248
+
249
+ **BibTeX:**
250
+
251
+ ```bibtex
252
+ [More Information Needed]
253
+ ```