Vertax commited on
Commit
9c9eff8
·
verified ·
1 Parent(s): 465de05

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +247 -0
README.md ADDED
@@ -0,0 +1,247 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "bi_arx5",
29
+ "total_episodes": 1,
30
+ "total_frames": 456,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 500,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:1"
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
+ "action": {
43
+ "dtype": "float32",
44
+ "names": [
45
+ "left_joint_1.pos",
46
+ "left_joint_2.pos",
47
+ "left_joint_3.pos",
48
+ "left_joint_4.pos",
49
+ "left_joint_5.pos",
50
+ "left_joint_6.pos",
51
+ "left_gripper.pos",
52
+ "right_joint_1.pos",
53
+ "right_joint_2.pos",
54
+ "right_joint_3.pos",
55
+ "right_joint_4.pos",
56
+ "right_joint_5.pos",
57
+ "right_joint_6.pos",
58
+ "right_gripper.pos"
59
+ ],
60
+ "shape": [
61
+ 14
62
+ ]
63
+ },
64
+ "observation.state": {
65
+ "dtype": "float32",
66
+ "names": [
67
+ "left_joint_1.pos",
68
+ "left_joint_2.pos",
69
+ "left_joint_3.pos",
70
+ "left_joint_4.pos",
71
+ "left_joint_5.pos",
72
+ "left_joint_6.pos",
73
+ "left_gripper.pos",
74
+ "right_joint_1.pos",
75
+ "right_joint_2.pos",
76
+ "right_joint_3.pos",
77
+ "right_joint_4.pos",
78
+ "right_joint_5.pos",
79
+ "right_joint_6.pos",
80
+ "right_gripper.pos"
81
+ ],
82
+ "shape": [
83
+ 14
84
+ ]
85
+ },
86
+ "observation.images.head": {
87
+ "dtype": "video",
88
+ "shape": [
89
+ 480,
90
+ 640,
91
+ 3
92
+ ],
93
+ "names": [
94
+ "height",
95
+ "width",
96
+ "channels"
97
+ ],
98
+ "info": {
99
+ "video.height": 480,
100
+ "video.width": 640,
101
+ "video.codec": "h264",
102
+ "video.pix_fmt": "yuv420p",
103
+ "video.is_depth_map": false,
104
+ "video.fps": 30,
105
+ "video.channels": 3,
106
+ "has_audio": false
107
+ }
108
+ },
109
+ "observation.images.left_wrist": {
110
+ "dtype": "video",
111
+ "shape": [
112
+ 480,
113
+ 640,
114
+ 3
115
+ ],
116
+ "names": [
117
+ "height",
118
+ "width",
119
+ "channels"
120
+ ],
121
+ "info": {
122
+ "video.height": 480,
123
+ "video.width": 640,
124
+ "video.codec": "h264",
125
+ "video.pix_fmt": "yuv420p",
126
+ "video.is_depth_map": false,
127
+ "video.fps": 30,
128
+ "video.channels": 3,
129
+ "has_audio": false
130
+ }
131
+ },
132
+ "observation.images.right_wrist": {
133
+ "dtype": "video",
134
+ "shape": [
135
+ 480,
136
+ 640,
137
+ 3
138
+ ],
139
+ "names": [
140
+ "height",
141
+ "width",
142
+ "channels"
143
+ ],
144
+ "info": {
145
+ "video.height": 480,
146
+ "video.width": 640,
147
+ "video.codec": "h264",
148
+ "video.pix_fmt": "yuv420p",
149
+ "video.is_depth_map": false,
150
+ "video.fps": 30,
151
+ "video.channels": 3,
152
+ "has_audio": false
153
+ }
154
+ },
155
+ "observation.images.right_tactile_0": {
156
+ "dtype": "video",
157
+ "shape": [
158
+ 400,
159
+ 700,
160
+ 3
161
+ ],
162
+ "names": [
163
+ "height",
164
+ "width",
165
+ "channels"
166
+ ],
167
+ "info": {
168
+ "video.height": 400,
169
+ "video.width": 700,
170
+ "video.codec": "h264",
171
+ "video.pix_fmt": "yuv420p",
172
+ "video.is_depth_map": false,
173
+ "video.fps": 30,
174
+ "video.channels": 3,
175
+ "has_audio": false
176
+ }
177
+ },
178
+ "observation.images.left_tactile_0": {
179
+ "dtype": "video",
180
+ "shape": [
181
+ 400,
182
+ 700,
183
+ 3
184
+ ],
185
+ "names": [
186
+ "height",
187
+ "width",
188
+ "channels"
189
+ ],
190
+ "info": {
191
+ "video.height": 400,
192
+ "video.width": 700,
193
+ "video.codec": "h264",
194
+ "video.pix_fmt": "yuv420p",
195
+ "video.is_depth_map": false,
196
+ "video.fps": 30,
197
+ "video.channels": 3,
198
+ "has_audio": false
199
+ }
200
+ },
201
+ "timestamp": {
202
+ "dtype": "float32",
203
+ "shape": [
204
+ 1
205
+ ],
206
+ "names": null
207
+ },
208
+ "frame_index": {
209
+ "dtype": "int64",
210
+ "shape": [
211
+ 1
212
+ ],
213
+ "names": null
214
+ },
215
+ "episode_index": {
216
+ "dtype": "int64",
217
+ "shape": [
218
+ 1
219
+ ],
220
+ "names": null
221
+ },
222
+ "index": {
223
+ "dtype": "int64",
224
+ "shape": [
225
+ 1
226
+ ],
227
+ "names": null
228
+ },
229
+ "task_index": {
230
+ "dtype": "int64",
231
+ "shape": [
232
+ 1
233
+ ],
234
+ "names": null
235
+ }
236
+ }
237
+ }
238
+ ```
239
+
240
+
241
+ ## Citation
242
+
243
+ **BibTeX:**
244
+
245
+ ```bibtex
246
+ [More Information Needed]
247
+ ```