PL2011 commited on
Commit
17d1f38
·
verified ·
1 Parent(s): 6df7bd0

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +224 -0
README.md ADDED
@@ -0,0 +1,224 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
15
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=PL2011/suction-plate">
16
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
17
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
18
+ </a>
19
+
20
+
21
+ ## Dataset Description
22
+
23
+
24
+
25
+ - **Homepage:** [More Information Needed]
26
+ - **Paper:** [More Information Needed]
27
+ - **License:** apache-2.0
28
+
29
+ ## Dataset Structure
30
+
31
+ [meta/info.json](meta/info.json):
32
+ ```json
33
+ {
34
+ "codebase_version": "v3.0",
35
+ "robot_type": "romoya_lebai_follower",
36
+ "total_episodes": 1,
37
+ "total_frames": 304,
38
+ "total_tasks": 1,
39
+ "chunks_size": 1000,
40
+ "data_files_size_in_mb": 100,
41
+ "video_files_size_in_mb": 200,
42
+ "fps": 30,
43
+ "splits": {
44
+ "train": "0:1"
45
+ },
46
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
47
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
48
+ "features": {
49
+ "action": {
50
+ "dtype": "float32",
51
+ "names": [
52
+ "joint1.pos",
53
+ "joint2.pos",
54
+ "joint3.pos",
55
+ "joint4.pos",
56
+ "joint5.pos",
57
+ "joint6.pos",
58
+ "gripper.pos",
59
+ "gripper.force",
60
+ "DO_0",
61
+ "DO_1"
62
+ ],
63
+ "shape": [
64
+ 10
65
+ ]
66
+ },
67
+ "observation.state": {
68
+ "dtype": "float32",
69
+ "names": [
70
+ "joint1.pos",
71
+ "joint2.pos",
72
+ "joint3.pos",
73
+ "joint4.pos",
74
+ "joint5.pos",
75
+ "joint6.pos",
76
+ "gripper.pos",
77
+ "gripper.force",
78
+ "DO_0",
79
+ "DO_1",
80
+ "joint1.effort",
81
+ "joint2.effort",
82
+ "joint3.effort",
83
+ "joint4.effort",
84
+ "joint5.effort",
85
+ "joint6.effort",
86
+ "joint1.vel",
87
+ "joint2.vel",
88
+ "joint3.vel",
89
+ "joint4.vel",
90
+ "joint5.vel",
91
+ "joint6.vel",
92
+ "joint1.acc",
93
+ "joint2.acc",
94
+ "joint3.acc",
95
+ "joint4.acc",
96
+ "joint5.acc",
97
+ "joint6.acc",
98
+ "tcp.x",
99
+ "tcp.y",
100
+ "tcp.z",
101
+ "tcp.rx",
102
+ "tcp.ry",
103
+ "tcp.rz"
104
+ ],
105
+ "shape": [
106
+ 34
107
+ ]
108
+ },
109
+ "observation.images.wrist": {
110
+ "dtype": "video",
111
+ "shape": [
112
+ 360,
113
+ 640,
114
+ 3
115
+ ],
116
+ "names": [
117
+ "height",
118
+ "width",
119
+ "channels"
120
+ ],
121
+ "info": {
122
+ "video.height": 360,
123
+ "video.width": 640,
124
+ "video.codec": "av1",
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.top": {
133
+ "dtype": "video",
134
+ "shape": [
135
+ 360,
136
+ 640,
137
+ 3
138
+ ],
139
+ "names": [
140
+ "height",
141
+ "width",
142
+ "channels"
143
+ ],
144
+ "info": {
145
+ "video.height": 360,
146
+ "video.width": 640,
147
+ "video.codec": "av1",
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.side": {
156
+ "dtype": "video",
157
+ "shape": [
158
+ 360,
159
+ 640,
160
+ 3
161
+ ],
162
+ "names": [
163
+ "height",
164
+ "width",
165
+ "channels"
166
+ ],
167
+ "info": {
168
+ "video.height": 360,
169
+ "video.width": 640,
170
+ "video.codec": "av1",
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
+ "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
+ }
215
+ ```
216
+
217
+
218
+ ## Citation
219
+
220
+ **BibTeX:**
221
+
222
+ ```bibtex
223
+ [More Information Needed]
224
+ ```