eyefly2 commited on
Commit
ebbcff7
·
verified ·
1 Parent(s): cf4e2b7

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +219 -0
README.md ADDED
@@ -0,0 +1,219 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "ur10e",
29
+ "total_episodes": 17,
30
+ "total_frames": 7349,
31
+ "total_tasks": 1,
32
+ "total_videos": 51,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 50,
36
+ "splits": {
37
+ "train": "0:17"
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
+ "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.joints": {
88
+ "dtype": "float64",
89
+ "shape": [
90
+ 6
91
+ ]
92
+ },
93
+ "observation.images.side": {
94
+ "dtype": "video",
95
+ "shape": [
96
+ 3,
97
+ 300,
98
+ 355
99
+ ],
100
+ "info": {
101
+ "video.height": 300,
102
+ "video.width": 355,
103
+ "video.codec": "av1",
104
+ "video.pix_fmt": "yuv420p",
105
+ "video.is_depth_map": false,
106
+ "video.fps": 50,
107
+ "video.channels": 3,
108
+ "has_audio": false
109
+ }
110
+ },
111
+ "observation.images.wrist_left": {
112
+ "dtype": "video",
113
+ "shape": [
114
+ 3,
115
+ 360,
116
+ 270
117
+ ],
118
+ "info": {
119
+ "video.height": 360,
120
+ "video.width": 270,
121
+ "video.codec": "av1",
122
+ "video.pix_fmt": "yuv420p",
123
+ "video.is_depth_map": false,
124
+ "video.fps": 50,
125
+ "video.channels": 3,
126
+ "has_audio": false
127
+ }
128
+ },
129
+ "observation.images.wrist_right": {
130
+ "dtype": "video",
131
+ "shape": [
132
+ 3,
133
+ 360,
134
+ 270
135
+ ],
136
+ "info": {
137
+ "video.height": 360,
138
+ "video.width": 270,
139
+ "video.codec": "av1",
140
+ "video.pix_fmt": "yuv420p",
141
+ "video.is_depth_map": false,
142
+ "video.fps": 50,
143
+ "video.channels": 3,
144
+ "has_audio": false
145
+ }
146
+ },
147
+ "action.pose": {
148
+ "dtype": "float64",
149
+ "shape": [
150
+ 6
151
+ ],
152
+ "names": [
153
+ "dx",
154
+ "dy",
155
+ "dz",
156
+ "droll",
157
+ "dpitch",
158
+ "dyaw"
159
+ ]
160
+ },
161
+ "action.tool": {
162
+ "dtype": "float64",
163
+ "shape": [
164
+ 1
165
+ ]
166
+ },
167
+ "action.joints": {
168
+ "dtype": "float64",
169
+ "shape": [
170
+ 6
171
+ ]
172
+ },
173
+ "timestamp": {
174
+ "dtype": "float32",
175
+ "shape": [
176
+ 1
177
+ ],
178
+ "names": null
179
+ },
180
+ "frame_index": {
181
+ "dtype": "int64",
182
+ "shape": [
183
+ 1
184
+ ],
185
+ "names": null
186
+ },
187
+ "episode_index": {
188
+ "dtype": "int64",
189
+ "shape": [
190
+ 1
191
+ ],
192
+ "names": null
193
+ },
194
+ "index": {
195
+ "dtype": "int64",
196
+ "shape": [
197
+ 1
198
+ ],
199
+ "names": null
200
+ },
201
+ "task_index": {
202
+ "dtype": "int64",
203
+ "shape": [
204
+ 1
205
+ ],
206
+ "names": null
207
+ }
208
+ }
209
+ }
210
+ ```
211
+
212
+
213
+ ## Citation
214
+
215
+ **BibTeX:**
216
+
217
+ ```bibtex
218
+ [More Information Needed]
219
+ ```