ankile commited on
Commit
fc011c4
·
verified ·
1 Parent(s): 93dff2d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +246 -0
README.md ADDED
@@ -0,0 +1,246 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v3.0",
28
+ "robot_type": "panda",
29
+ "total_episodes": 236,
30
+ "total_frames": 50671,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 500,
35
+ "fps": 20,
36
+ "splits": {
37
+ "train": "0:236"
38
+ },
39
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
40
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
41
+ "features": {
42
+ "observation.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 9
46
+ ],
47
+ "names": [
48
+ "eef_pos_x",
49
+ "eef_pos_y",
50
+ "eef_pos_z",
51
+ "eef_quat_x",
52
+ "eef_quat_y",
53
+ "eef_quat_z",
54
+ "eef_quat_w",
55
+ "gripper_qpos_left",
56
+ "gripper_qpos_right"
57
+ ]
58
+ },
59
+ "observation.environment_state": {
60
+ "dtype": "float32",
61
+ "shape": [
62
+ 14
63
+ ],
64
+ "names": [
65
+ "nut_to_eef_pos_x",
66
+ "nut_to_eef_pos_y",
67
+ "nut_to_eef_pos_z",
68
+ "nut_to_eef_quat_x",
69
+ "nut_to_eef_quat_y",
70
+ "nut_to_eef_quat_z",
71
+ "nut_to_eef_quat_w",
72
+ "nut_pos_x",
73
+ "nut_pos_y",
74
+ "nut_pos_z",
75
+ "nut_quat_x",
76
+ "nut_quat_y",
77
+ "nut_quat_z",
78
+ "nut_quat_w"
79
+ ]
80
+ },
81
+ "action": {
82
+ "dtype": "float32",
83
+ "shape": [
84
+ 7
85
+ ],
86
+ "names": [
87
+ "delta_eef_pos_x",
88
+ "delta_eef_pos_y",
89
+ "delta_eef_pos_z",
90
+ "delta_eef_rot_x",
91
+ "delta_eef_rot_y",
92
+ "delta_eef_rot_z",
93
+ "gripper_action"
94
+ ]
95
+ },
96
+ "source": {
97
+ "dtype": "int64",
98
+ "shape": [
99
+ 1
100
+ ],
101
+ "names": [
102
+ "source_id"
103
+ ]
104
+ },
105
+ "success": {
106
+ "dtype": "int64",
107
+ "shape": [
108
+ 1
109
+ ],
110
+ "names": [
111
+ "success_flag"
112
+ ]
113
+ },
114
+ "intervention": {
115
+ "dtype": "int64",
116
+ "shape": [
117
+ 1
118
+ ],
119
+ "names": [
120
+ "intervention_flag"
121
+ ]
122
+ },
123
+ "is_valid": {
124
+ "dtype": "int64",
125
+ "shape": [
126
+ 1
127
+ ],
128
+ "names": [
129
+ "is_valid_flag"
130
+ ]
131
+ },
132
+ "reward": {
133
+ "dtype": "float32",
134
+ "shape": [
135
+ 1
136
+ ],
137
+ "names": [
138
+ "reward"
139
+ ]
140
+ },
141
+ "done": {
142
+ "dtype": "int64",
143
+ "shape": [
144
+ 1
145
+ ],
146
+ "names": [
147
+ "done_flag"
148
+ ]
149
+ },
150
+ "q_value": {
151
+ "dtype": "float32",
152
+ "shape": [
153
+ 1
154
+ ],
155
+ "names": [
156
+ "q_value"
157
+ ]
158
+ },
159
+ "v_value": {
160
+ "dtype": "float32",
161
+ "shape": [
162
+ 1
163
+ ],
164
+ "names": [
165
+ "v_value"
166
+ ]
167
+ },
168
+ "advantage": {
169
+ "dtype": "float32",
170
+ "shape": [
171
+ 1
172
+ ],
173
+ "names": [
174
+ "advantage"
175
+ ]
176
+ },
177
+ "observation.images.agentview": {
178
+ "dtype": "video",
179
+ "shape": [
180
+ 256,
181
+ 256,
182
+ 3
183
+ ],
184
+ "names": [
185
+ "height",
186
+ "width",
187
+ "channels"
188
+ ],
189
+ "info": {
190
+ "video.height": 256,
191
+ "video.width": 256,
192
+ "video.codec": "av1",
193
+ "video.pix_fmt": "yuv420p",
194
+ "video.is_depth_map": false,
195
+ "video.fps": 20,
196
+ "video.channels": 3,
197
+ "has_audio": false
198
+ }
199
+ },
200
+ "timestamp": {
201
+ "dtype": "float32",
202
+ "shape": [
203
+ 1
204
+ ],
205
+ "names": null
206
+ },
207
+ "frame_index": {
208
+ "dtype": "int64",
209
+ "shape": [
210
+ 1
211
+ ],
212
+ "names": null
213
+ },
214
+ "episode_index": {
215
+ "dtype": "int64",
216
+ "shape": [
217
+ 1
218
+ ],
219
+ "names": null
220
+ },
221
+ "index": {
222
+ "dtype": "int64",
223
+ "shape": [
224
+ 1
225
+ ],
226
+ "names": null
227
+ },
228
+ "task_index": {
229
+ "dtype": "int64",
230
+ "shape": [
231
+ 1
232
+ ],
233
+ "names": null
234
+ }
235
+ }
236
+ }
237
+ ```
238
+
239
+
240
+ ## Citation
241
+
242
+ **BibTeX:**
243
+
244
+ ```bibtex
245
+ [More Information Needed]
246
+ ```