Pi-robot commited on
Commit
8f1851c
·
verified ·
1 Parent(s): 1d63228

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +245 -0
README.md ADDED
@@ -0,0 +1,245 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "agilex",
29
+ "total_episodes": 50,
30
+ "total_frames": 12500,
31
+ "total_tasks": 1,
32
+ "total_videos": 150,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 25,
36
+ "splits": {
37
+ "train": "0:50"
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
+ "action": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 14
46
+ ],
47
+ "names": [
48
+ "joint0",
49
+ "joint1",
50
+ "joint2",
51
+ "joint3",
52
+ "joint4",
53
+ "joint5",
54
+ "joint6",
55
+ "joint7",
56
+ "joint8",
57
+ "joint9",
58
+ "joint10",
59
+ "joint11",
60
+ "joint12",
61
+ "joint13"
62
+ ]
63
+ },
64
+ "observation.state": {
65
+ "dtype": "float32",
66
+ "shape": [
67
+ 14
68
+ ],
69
+ "names": [
70
+ "joint0",
71
+ "joint1",
72
+ "joint2",
73
+ "joint3",
74
+ "joint4",
75
+ "joint5",
76
+ "joint6",
77
+ "joint7",
78
+ "joint8",
79
+ "joint9",
80
+ "joint10",
81
+ "joint11",
82
+ "joint12",
83
+ "joint13"
84
+ ]
85
+ },
86
+ "observation.velocity": {
87
+ "dtype": "float32",
88
+ "shape": [
89
+ 14
90
+ ],
91
+ "names": [
92
+ "vel_joint0",
93
+ "vel_joint1",
94
+ "vel_joint2",
95
+ "vel_joint3",
96
+ "vel_joint4",
97
+ "vel_joint5",
98
+ "vel_joint6",
99
+ "vel_joint7",
100
+ "vel_joint8",
101
+ "vel_joint9",
102
+ "vel_joint10",
103
+ "vel_joint11",
104
+ "vel_joint12",
105
+ "vel_joint13"
106
+ ]
107
+ },
108
+ "observation.effort": {
109
+ "dtype": "float32",
110
+ "shape": [
111
+ 14
112
+ ],
113
+ "names": [
114
+ "effort_joint0",
115
+ "effort_joint1",
116
+ "effort_joint2",
117
+ "effort_joint3",
118
+ "effort_joint4",
119
+ "effort_joint5",
120
+ "effort_joint6",
121
+ "effort_joint7",
122
+ "effort_joint8",
123
+ "effort_joint9",
124
+ "effort_joint10",
125
+ "effort_joint11",
126
+ "effort_joint12",
127
+ "effort_joint13"
128
+ ]
129
+ },
130
+ "observation.images.cam_high": {
131
+ "shape": [
132
+ 480,
133
+ 640,
134
+ 3
135
+ ],
136
+ "names": [
137
+ "height",
138
+ "width",
139
+ "channels"
140
+ ],
141
+ "dtype": "video",
142
+ "info": {
143
+ "video.fps": 25.0,
144
+ "video.height": 480,
145
+ "video.width": 640,
146
+ "video.channels": 3,
147
+ "video.codec": "h264",
148
+ "video.pix_fmt": "yuv420p",
149
+ "video.is_depth_map": false,
150
+ "has_audio": false
151
+ }
152
+ },
153
+ "observation.images.cam_left_wrist": {
154
+ "shape": [
155
+ 480,
156
+ 640,
157
+ 3
158
+ ],
159
+ "names": [
160
+ "height",
161
+ "width",
162
+ "channels"
163
+ ],
164
+ "dtype": "video",
165
+ "info": {
166
+ "video.fps": 25.0,
167
+ "video.height": 480,
168
+ "video.width": 640,
169
+ "video.channels": 3,
170
+ "video.codec": "h264",
171
+ "video.pix_fmt": "yuv420p",
172
+ "video.is_depth_map": false,
173
+ "has_audio": false
174
+ }
175
+ },
176
+ "observation.images.cam_right_wrist": {
177
+ "shape": [
178
+ 480,
179
+ 640,
180
+ 3
181
+ ],
182
+ "names": [
183
+ "height",
184
+ "width",
185
+ "channels"
186
+ ],
187
+ "dtype": "video",
188
+ "info": {
189
+ "video.fps": 25.0,
190
+ "video.height": 480,
191
+ "video.width": 640,
192
+ "video.channels": 3,
193
+ "video.codec": "h264",
194
+ "video.pix_fmt": "yuv420p",
195
+ "video.is_depth_map": false,
196
+ "has_audio": false
197
+ }
198
+ },
199
+ "timestamp": {
200
+ "dtype": "float32",
201
+ "shape": [
202
+ 1
203
+ ],
204
+ "names": null
205
+ },
206
+ "frame_index": {
207
+ "dtype": "int64",
208
+ "shape": [
209
+ 1
210
+ ],
211
+ "names": null
212
+ },
213
+ "episode_index": {
214
+ "dtype": "int64",
215
+ "shape": [
216
+ 1
217
+ ],
218
+ "names": null
219
+ },
220
+ "index": {
221
+ "dtype": "int64",
222
+ "shape": [
223
+ 1
224
+ ],
225
+ "names": null
226
+ },
227
+ "task_index": {
228
+ "dtype": "int64",
229
+ "shape": [
230
+ 1
231
+ ],
232
+ "names": null
233
+ }
234
+ }
235
+ }
236
+ ```
237
+
238
+
239
+ ## Citation
240
+
241
+ **BibTeX:**
242
+
243
+ ```bibtex
244
+ [More Information Needed]
245
+ ```