eyefly2 commited on
Commit
951f4d7
·
verified ·
1 Parent(s): 3951462

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +218 -0
README.md ADDED
@@ -0,0 +1,218 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "abb",
29
+ "total_episodes": 2,
30
+ "total_frames": 930,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 500,
35
+ "fps": 15,
36
+ "splits": {
37
+ "train": "0:2"
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.pose": {
43
+ "dtype": "float64",
44
+ "shape": [
45
+ 6
46
+ ],
47
+ "names": [
48
+ "x",
49
+ "y",
50
+ "z",
51
+ "roll",
52
+ "pitch",
53
+ "yaw"
54
+ ]
55
+ },
56
+ "observation.state.tool": {
57
+ "dtype": "float64",
58
+ "shape": [
59
+ 1
60
+ ],
61
+ "names": [
62
+ "tool"
63
+ ]
64
+ },
65
+ "observation.state.tcp_force": {
66
+ "dtype": "float64",
67
+ "shape": [
68
+ 3
69
+ ],
70
+ "names": [
71
+ "x",
72
+ "y",
73
+ "z"
74
+ ]
75
+ },
76
+ "observation.state.tcp_torque": {
77
+ "dtype": "float64",
78
+ "shape": [
79
+ 3
80
+ ],
81
+ "names": [
82
+ "x",
83
+ "y",
84
+ "z"
85
+ ]
86
+ },
87
+ "observation.state.suction_channels": {
88
+ "dtype": "float64",
89
+ "shape": [
90
+ 3
91
+ ],
92
+ "names": [
93
+ "ch0",
94
+ "ch1",
95
+ "ch2"
96
+ ]
97
+ },
98
+ "observation.images.side": {
99
+ "dtype": "video",
100
+ "shape": [
101
+ 3,
102
+ 300,
103
+ 480
104
+ ],
105
+ "info": {
106
+ "video.height": 300,
107
+ "video.width": 480,
108
+ "video.codec": "av1",
109
+ "video.pix_fmt": "yuv420p",
110
+ "video.is_depth_map": false,
111
+ "video.fps": 15,
112
+ "video.channels": 3,
113
+ "has_audio": false
114
+ }
115
+ },
116
+ "observation.images.wrist_left": {
117
+ "dtype": "video",
118
+ "shape": [
119
+ 3,
120
+ 360,
121
+ 270
122
+ ],
123
+ "info": {
124
+ "video.height": 360,
125
+ "video.width": 270,
126
+ "video.codec": "av1",
127
+ "video.pix_fmt": "yuv420p",
128
+ "video.is_depth_map": false,
129
+ "video.fps": 15,
130
+ "video.channels": 3,
131
+ "has_audio": false
132
+ }
133
+ },
134
+ "observation.images.wrist_right": {
135
+ "dtype": "video",
136
+ "shape": [
137
+ 3,
138
+ 360,
139
+ 270
140
+ ],
141
+ "info": {
142
+ "video.height": 360,
143
+ "video.width": 270,
144
+ "video.codec": "av1",
145
+ "video.pix_fmt": "yuv420p",
146
+ "video.is_depth_map": false,
147
+ "video.fps": 15,
148
+ "video.channels": 3,
149
+ "has_audio": false
150
+ }
151
+ },
152
+ "action.pose": {
153
+ "dtype": "float64",
154
+ "shape": [
155
+ 6
156
+ ],
157
+ "names": [
158
+ "dx",
159
+ "dy",
160
+ "dz",
161
+ "droll",
162
+ "dpitch",
163
+ "dyaw"
164
+ ]
165
+ },
166
+ "action.tool": {
167
+ "dtype": "float64",
168
+ "shape": [
169
+ 1
170
+ ]
171
+ },
172
+ "timestamp": {
173
+ "dtype": "float32",
174
+ "shape": [
175
+ 1
176
+ ],
177
+ "names": null
178
+ },
179
+ "frame_index": {
180
+ "dtype": "int64",
181
+ "shape": [
182
+ 1
183
+ ],
184
+ "names": null
185
+ },
186
+ "episode_index": {
187
+ "dtype": "int64",
188
+ "shape": [
189
+ 1
190
+ ],
191
+ "names": null
192
+ },
193
+ "index": {
194
+ "dtype": "int64",
195
+ "shape": [
196
+ 1
197
+ ],
198
+ "names": null
199
+ },
200
+ "task_index": {
201
+ "dtype": "int64",
202
+ "shape": [
203
+ 1
204
+ ],
205
+ "names": null
206
+ }
207
+ }
208
+ }
209
+ ```
210
+
211
+
212
+ ## Citation
213
+
214
+ **BibTeX:**
215
+
216
+ ```bibtex
217
+ [More Information Needed]
218
+ ```