continuallearning commited on
Commit
8f44d8a
·
verified ·
1 Parent(s): 9d8cee1

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +228 -0
README.md ADDED
@@ -0,0 +1,228 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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=continuallearning/real_5_stack_lego">
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": "franka",
36
+ "total_episodes": 0,
37
+ "total_frames": 0,
38
+ "total_tasks": 0,
39
+ "chunks_size": 1000,
40
+ "data_files_size_in_mb": 0,
41
+ "video_files_size_in_mb": 0,
42
+ "fps": 15,
43
+ "splits": {},
44
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
45
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
46
+ "features": {
47
+ "observation.images.primary": {
48
+ "dtype": "video",
49
+ "shape": [
50
+ 256,
51
+ 256,
52
+ 3
53
+ ],
54
+ "names": [
55
+ "height",
56
+ "width",
57
+ "channels"
58
+ ],
59
+ "video_info": {
60
+ "video.fps": 15.0,
61
+ "video.codec": "av1",
62
+ "video.pix_fmt": "yuv420p",
63
+ "video.is_depth_map": false,
64
+ "has_audio": false
65
+ }
66
+ },
67
+ "observation.images.wrist": {
68
+ "dtype": "video",
69
+ "shape": [
70
+ 256,
71
+ 256,
72
+ 3
73
+ ],
74
+ "names": [
75
+ "height",
76
+ "width",
77
+ "channels"
78
+ ],
79
+ "video_info": {
80
+ "video.fps": 15.0,
81
+ "video.codec": "av1",
82
+ "video.pix_fmt": "yuv420p",
83
+ "video.is_depth_map": false,
84
+ "has_audio": false
85
+ }
86
+ },
87
+ "observation.state.cartesian": {
88
+ "dtype": "float32",
89
+ "shape": [
90
+ 6
91
+ ],
92
+ "names": [
93
+ "x",
94
+ "y",
95
+ "z",
96
+ "roll",
97
+ "pitch",
98
+ "yaw"
99
+ ]
100
+ },
101
+ "observation.state.gripper": {
102
+ "dtype": "float32",
103
+ "shape": [
104
+ 1
105
+ ],
106
+ "names": [
107
+ "gripper"
108
+ ]
109
+ },
110
+ "observation.state.joints": {
111
+ "dtype": "float32",
112
+ "shape": [
113
+ 7
114
+ ],
115
+ "names": [
116
+ "joint_0",
117
+ "joint_1",
118
+ "joint_2",
119
+ "joint_3",
120
+ "joint_4",
121
+ "joint_5",
122
+ "joint_6"
123
+ ]
124
+ },
125
+ "observation.state.target": {
126
+ "dtype": "float32",
127
+ "shape": [
128
+ 6
129
+ ],
130
+ "names": [
131
+ "target_x",
132
+ "target_y",
133
+ "target_z",
134
+ "target_roll",
135
+ "target_pitch",
136
+ "target_yaw"
137
+ ]
138
+ },
139
+ "observation.state": {
140
+ "dtype": "float32",
141
+ "shape": [
142
+ 20
143
+ ],
144
+ "names": [
145
+ "x",
146
+ "y",
147
+ "z",
148
+ "roll",
149
+ "pitch",
150
+ "yaw",
151
+ "gripper",
152
+ "joint_0",
153
+ "joint_1",
154
+ "joint_2",
155
+ "joint_3",
156
+ "joint_4",
157
+ "joint_5",
158
+ "joint_6",
159
+ "target_x",
160
+ "target_y",
161
+ "target_z",
162
+ "target_roll",
163
+ "target_pitch",
164
+ "target_yaw"
165
+ ]
166
+ },
167
+ "action": {
168
+ "dtype": "float32",
169
+ "shape": [
170
+ 7
171
+ ],
172
+ "names": [
173
+ "x",
174
+ "y",
175
+ "z",
176
+ "roll",
177
+ "pitch",
178
+ "yaw",
179
+ "gripper"
180
+ ]
181
+ },
182
+ "timestamp": {
183
+ "dtype": "float32",
184
+ "shape": [
185
+ 1
186
+ ],
187
+ "names": null
188
+ },
189
+ "frame_index": {
190
+ "dtype": "int64",
191
+ "shape": [
192
+ 1
193
+ ],
194
+ "names": null
195
+ },
196
+ "episode_index": {
197
+ "dtype": "int64",
198
+ "shape": [
199
+ 1
200
+ ],
201
+ "names": null
202
+ },
203
+ "index": {
204
+ "dtype": "int64",
205
+ "shape": [
206
+ 1
207
+ ],
208
+ "names": null
209
+ },
210
+ "task_index": {
211
+ "dtype": "int64",
212
+ "shape": [
213
+ 1
214
+ ],
215
+ "names": null
216
+ }
217
+ }
218
+ }
219
+ ```
220
+
221
+
222
+ ## Citation
223
+
224
+ **BibTeX:**
225
+
226
+ ```bibtex
227
+ [More Information Needed]
228
+ ```