satvikahuja commited on
Commit
a14a079
·
verified ·
1 Parent(s): 54d390a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +241 -0
README.md ADDED
@@ -0,0 +1,241 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "so100_follower",
29
+ "total_episodes": 1,
30
+ "total_frames": 699,
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
+ "shape": [
45
+ 6
46
+ ],
47
+ "names": [
48
+ "shoulder_pan.pos",
49
+ "shoulder_lift.pos",
50
+ "elbow_flex.pos",
51
+ "wrist_flex.pos",
52
+ "wrist_roll.pos",
53
+ "gripper.pos"
54
+ ]
55
+ },
56
+ "observation.state": {
57
+ "dtype": "float32",
58
+ "shape": [
59
+ 6
60
+ ],
61
+ "names": [
62
+ "shoulder_pan.pos",
63
+ "shoulder_lift.pos",
64
+ "elbow_flex.pos",
65
+ "wrist_flex.pos",
66
+ "wrist_roll.pos",
67
+ "gripper.pos"
68
+ ]
69
+ },
70
+ "observation.images.side": {
71
+ "dtype": "video",
72
+ "shape": [
73
+ 480,
74
+ 640,
75
+ 3
76
+ ],
77
+ "names": [
78
+ "height",
79
+ "width",
80
+ "channels"
81
+ ],
82
+ "info": {
83
+ "video.height": 480,
84
+ "video.width": 640,
85
+ "video.codec": "av1",
86
+ "video.pix_fmt": "yuv420p",
87
+ "video.is_depth_map": false,
88
+ "video.fps": 30,
89
+ "video.channels": 3,
90
+ "has_audio": false
91
+ }
92
+ },
93
+ "observation.images.wrist": {
94
+ "dtype": "video",
95
+ "shape": [
96
+ 480,
97
+ 640,
98
+ 3
99
+ ],
100
+ "names": [
101
+ "height",
102
+ "width",
103
+ "channels"
104
+ ],
105
+ "info": {
106
+ "video.height": 480,
107
+ "video.width": 640,
108
+ "video.codec": "av1",
109
+ "video.pix_fmt": "yuv420p",
110
+ "video.is_depth_map": false,
111
+ "video.fps": 30,
112
+ "video.channels": 3,
113
+ "has_audio": false
114
+ }
115
+ },
116
+ "observation.environment_state": {
117
+ "dtype": "float32",
118
+ "shape": [
119
+ 48
120
+ ],
121
+ "names": [
122
+ "poses.ee.m00",
123
+ "poses.ee.m01",
124
+ "poses.ee.m02",
125
+ "poses.ee.m03",
126
+ "poses.ee.m10",
127
+ "poses.ee.m11",
128
+ "poses.ee.m12",
129
+ "poses.ee.m13",
130
+ "poses.ee.m20",
131
+ "poses.ee.m21",
132
+ "poses.ee.m22",
133
+ "poses.ee.m23",
134
+ "poses.ee.m30",
135
+ "poses.ee.m31",
136
+ "poses.ee.m32",
137
+ "poses.ee.m33",
138
+ "poses.obj.m00",
139
+ "poses.obj.m01",
140
+ "poses.obj.m02",
141
+ "poses.obj.m03",
142
+ "poses.obj.m10",
143
+ "poses.obj.m11",
144
+ "poses.obj.m12",
145
+ "poses.obj.m13",
146
+ "poses.obj.m20",
147
+ "poses.obj.m21",
148
+ "poses.obj.m22",
149
+ "poses.obj.m23",
150
+ "poses.obj.m30",
151
+ "poses.obj.m31",
152
+ "poses.obj.m32",
153
+ "poses.obj.m33",
154
+ "poses.rel.m00",
155
+ "poses.rel.m01",
156
+ "poses.rel.m02",
157
+ "poses.rel.m03",
158
+ "poses.rel.m10",
159
+ "poses.rel.m11",
160
+ "poses.rel.m12",
161
+ "poses.rel.m13",
162
+ "poses.rel.m20",
163
+ "poses.rel.m21",
164
+ "poses.rel.m22",
165
+ "poses.rel.m23",
166
+ "poses.rel.m30",
167
+ "poses.rel.m31",
168
+ "poses.rel.m32",
169
+ "poses.rel.m33"
170
+ ]
171
+ },
172
+ "observation.images.top": {
173
+ "dtype": "video",
174
+ "shape": [
175
+ 480,
176
+ 640,
177
+ 3
178
+ ],
179
+ "names": [
180
+ "height",
181
+ "width",
182
+ "channels"
183
+ ],
184
+ "info": {
185
+ "video.height": 480,
186
+ "video.width": 640,
187
+ "video.codec": "av1",
188
+ "video.pix_fmt": "yuv420p",
189
+ "video.is_depth_map": false,
190
+ "video.fps": 30,
191
+ "video.channels": 3,
192
+ "has_audio": false
193
+ }
194
+ },
195
+ "timestamp": {
196
+ "dtype": "float32",
197
+ "shape": [
198
+ 1
199
+ ],
200
+ "names": null
201
+ },
202
+ "frame_index": {
203
+ "dtype": "int64",
204
+ "shape": [
205
+ 1
206
+ ],
207
+ "names": null
208
+ },
209
+ "episode_index": {
210
+ "dtype": "int64",
211
+ "shape": [
212
+ 1
213
+ ],
214
+ "names": null
215
+ },
216
+ "index": {
217
+ "dtype": "int64",
218
+ "shape": [
219
+ 1
220
+ ],
221
+ "names": null
222
+ },
223
+ "task_index": {
224
+ "dtype": "int64",
225
+ "shape": [
226
+ 1
227
+ ],
228
+ "names": null
229
+ }
230
+ }
231
+ }
232
+ ```
233
+
234
+
235
+ ## Citation
236
+
237
+ **BibTeX:**
238
+
239
+ ```bibtex
240
+ [More Information Needed]
241
+ ```