andlyu commited on
Commit
8c3a557
·
verified ·
1 Parent(s): f7ffa8b

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": "v2.1",
28
+ "robot_type": "so100_follower",
29
+ "total_episodes": 0,
30
+ "total_frames": 0,
31
+ "total_tasks": 0,
32
+ "total_videos": 0,
33
+ "total_chunks": 0,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {},
37
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
38
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
39
+ "features": {
40
+ "action": {
41
+ "dtype": "float32",
42
+ "shape": [
43
+ 6
44
+ ],
45
+ "names": [
46
+ "shoulder_pan.pos",
47
+ "shoulder_lift.pos",
48
+ "elbow_flex.pos",
49
+ "wrist_flex.pos",
50
+ "wrist_roll.pos",
51
+ "gripper.pos"
52
+ ]
53
+ },
54
+ "observation.state": {
55
+ "dtype": "float32",
56
+ "shape": [
57
+ 6
58
+ ],
59
+ "names": [
60
+ "shoulder_pan.pos",
61
+ "shoulder_lift.pos",
62
+ "elbow_flex.pos",
63
+ "wrist_flex.pos",
64
+ "wrist_roll.pos",
65
+ "gripper.pos"
66
+ ]
67
+ },
68
+ "observation.images.cam_l_plate": {
69
+ "dtype": "video",
70
+ "shape": [
71
+ 480,
72
+ 640,
73
+ 3
74
+ ],
75
+ "names": [
76
+ "height",
77
+ "width",
78
+ "channels"
79
+ ]
80
+ },
81
+ "observation.images.cam_l_shell": {
82
+ "dtype": "video",
83
+ "shape": [
84
+ 480,
85
+ 640,
86
+ 3
87
+ ],
88
+ "names": [
89
+ "height",
90
+ "width",
91
+ "channels"
92
+ ]
93
+ },
94
+ "observation.images.cam_r_plate": {
95
+ "dtype": "video",
96
+ "shape": [
97
+ 480,
98
+ 640,
99
+ 3
100
+ ],
101
+ "names": [
102
+ "height",
103
+ "width",
104
+ "channels"
105
+ ]
106
+ },
107
+ "observation.images.cam_r_shell": {
108
+ "dtype": "video",
109
+ "shape": [
110
+ 480,
111
+ 640,
112
+ 3
113
+ ],
114
+ "names": [
115
+ "height",
116
+ "width",
117
+ "channels"
118
+ ]
119
+ },
120
+ "observation.images.plate_berry": {
121
+ "dtype": "video",
122
+ "shape": [
123
+ 480,
124
+ 640,
125
+ 3
126
+ ],
127
+ "names": [
128
+ "height",
129
+ "width",
130
+ "channels"
131
+ ]
132
+ },
133
+ "observation.images.shell_location": {
134
+ "dtype": "video",
135
+ "shape": [
136
+ 480,
137
+ 640,
138
+ 3
139
+ ],
140
+ "names": [
141
+ "height",
142
+ "width",
143
+ "channels"
144
+ ]
145
+ },
146
+ "observation.images.gripper_l": {
147
+ "dtype": "video",
148
+ "shape": [
149
+ 480,
150
+ 640,
151
+ 3
152
+ ],
153
+ "names": [
154
+ "height",
155
+ "width",
156
+ "channels"
157
+ ]
158
+ },
159
+ "observation.images.gripper_r": {
160
+ "dtype": "video",
161
+ "shape": [
162
+ 480,
163
+ 640,
164
+ 3
165
+ ],
166
+ "names": [
167
+ "height",
168
+ "width",
169
+ "channels"
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
+ ```