vo2yager commited on
Commit
426831a
·
verified ·
1 Parent(s): 042b60e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +225 -0
README.md ADDED
@@ -0,0 +1,225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.0",
28
+ "robot_type": "aloha",
29
+ "total_episodes": 44,
30
+ "total_frames": 22000,
31
+ "total_tasks": 1,
32
+ "total_videos": 0,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 50,
36
+ "splits": {
37
+ "train": "0:44"
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": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 14
46
+ ],
47
+ "names": [
48
+ [
49
+ "right_waist",
50
+ "right_shoulder",
51
+ "right_elbow",
52
+ "right_forearm_roll",
53
+ "right_wrist_angle",
54
+ "right_wrist_rotate",
55
+ "right_gripper",
56
+ "left_waist",
57
+ "left_shoulder",
58
+ "left_elbow",
59
+ "left_forearm_roll",
60
+ "left_wrist_angle",
61
+ "left_wrist_rotate",
62
+ "left_gripper"
63
+ ]
64
+ ]
65
+ },
66
+ "action": {
67
+ "dtype": "float32",
68
+ "shape": [
69
+ 16
70
+ ],
71
+ "names": [
72
+ [
73
+ "right_waist",
74
+ "right_shoulder",
75
+ "right_elbow",
76
+ "right_forearm_roll",
77
+ "right_wrist_angle",
78
+ "right_wrist_rotate",
79
+ "right_gripper",
80
+ "left_waist",
81
+ "left_shoulder",
82
+ "left_elbow",
83
+ "left_forearm_roll",
84
+ "left_wrist_angle",
85
+ "left_wrist_rotate",
86
+ "left_gripper",
87
+ "linear",
88
+ "angular"
89
+ ]
90
+ ]
91
+ },
92
+ "observation.velocity": {
93
+ "dtype": "float32",
94
+ "shape": [
95
+ 14
96
+ ],
97
+ "names": [
98
+ [
99
+ "right_waist",
100
+ "right_shoulder",
101
+ "right_elbow",
102
+ "right_forearm_roll",
103
+ "right_wrist_angle",
104
+ "right_wrist_rotate",
105
+ "right_gripper",
106
+ "left_waist",
107
+ "left_shoulder",
108
+ "left_elbow",
109
+ "left_forearm_roll",
110
+ "left_wrist_angle",
111
+ "left_wrist_rotate",
112
+ "left_gripper"
113
+ ]
114
+ ]
115
+ },
116
+ "observation.effort": {
117
+ "dtype": "float32",
118
+ "shape": [
119
+ 14
120
+ ],
121
+ "names": [
122
+ [
123
+ "right_waist",
124
+ "right_shoulder",
125
+ "right_elbow",
126
+ "right_forearm_roll",
127
+ "right_wrist_angle",
128
+ "right_wrist_rotate",
129
+ "right_gripper",
130
+ "left_waist",
131
+ "left_shoulder",
132
+ "left_elbow",
133
+ "left_forearm_roll",
134
+ "left_wrist_angle",
135
+ "left_wrist_rotate",
136
+ "left_gripper"
137
+ ]
138
+ ]
139
+ },
140
+ "observation.images.cam_high": {
141
+ "dtype": "image",
142
+ "shape": [
143
+ 3,
144
+ 480,
145
+ 640
146
+ ],
147
+ "names": [
148
+ "channels",
149
+ "height",
150
+ "width"
151
+ ]
152
+ },
153
+ "observation.images.cam_left_wrist": {
154
+ "dtype": "image",
155
+ "shape": [
156
+ 3,
157
+ 480,
158
+ 640
159
+ ],
160
+ "names": [
161
+ "channels",
162
+ "height",
163
+ "width"
164
+ ]
165
+ },
166
+ "observation.images.cam_right_wrist": {
167
+ "dtype": "image",
168
+ "shape": [
169
+ 3,
170
+ 480,
171
+ 640
172
+ ],
173
+ "names": [
174
+ "channels",
175
+ "height",
176
+ "width"
177
+ ]
178
+ },
179
+ "timestamp": {
180
+ "dtype": "float32",
181
+ "shape": [
182
+ 1
183
+ ],
184
+ "names": null
185
+ },
186
+ "frame_index": {
187
+ "dtype": "int64",
188
+ "shape": [
189
+ 1
190
+ ],
191
+ "names": null
192
+ },
193
+ "episode_index": {
194
+ "dtype": "int64",
195
+ "shape": [
196
+ 1
197
+ ],
198
+ "names": null
199
+ },
200
+ "index": {
201
+ "dtype": "int64",
202
+ "shape": [
203
+ 1
204
+ ],
205
+ "names": null
206
+ },
207
+ "task_index": {
208
+ "dtype": "int64",
209
+ "shape": [
210
+ 1
211
+ ],
212
+ "names": null
213
+ }
214
+ }
215
+ }
216
+ ```
217
+
218
+
219
+ ## Citation
220
+
221
+ **BibTeX:**
222
+
223
+ ```bibtex
224
+ [More Information Needed]
225
+ ```