Creative-Intelligence commited on
Commit
9c274e5
1 Parent(s): 93f8166

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +211 -0
README.md ADDED
@@ -0,0 +1,211 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - aloha
8
+ - tutorial
9
+ configs:
10
+ - config_name: default
11
+ data_files: data/*/*.parquet
12
+ ---
13
+
14
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
15
+
16
+ ## Dataset Description
17
+
18
+
19
+
20
+ - **Homepage:** [More Information Needed]
21
+ - **Paper:** [More Information Needed]
22
+ - **License:** apache-2.0
23
+
24
+ ## Dataset Structure
25
+
26
+ [meta/info.json](meta/info.json):
27
+ ```json
28
+ {
29
+ "codebase_version": "v2.0",
30
+ "robot_type": "aloha",
31
+ "total_episodes": 2,
32
+ "total_frames": 1320,
33
+ "total_tasks": 1,
34
+ "total_videos": 6,
35
+ "total_chunks": 1,
36
+ "chunks_size": 1000,
37
+ "fps": 30,
38
+ "splits": {
39
+ "train": "0:2"
40
+ },
41
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
42
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
43
+ "features": {
44
+ "action": {
45
+ "dtype": "float32",
46
+ "shape": [
47
+ 18
48
+ ],
49
+ "names": [
50
+ "left_waist",
51
+ "left_shoulder",
52
+ "left_shoulder_shadow",
53
+ "left_elbow",
54
+ "left_elbow_shadow",
55
+ "left_forearm_roll",
56
+ "left_wrist_angle",
57
+ "left_wrist_rotate",
58
+ "left_gripper",
59
+ "right_waist",
60
+ "right_shoulder",
61
+ "right_shoulder_shadow",
62
+ "right_elbow",
63
+ "right_elbow_shadow",
64
+ "right_forearm_roll",
65
+ "right_wrist_angle",
66
+ "right_wrist_rotate",
67
+ "right_gripper"
68
+ ]
69
+ },
70
+ "observation.state": {
71
+ "dtype": "float32",
72
+ "shape": [
73
+ 18
74
+ ],
75
+ "names": [
76
+ "left_waist",
77
+ "left_shoulder",
78
+ "left_shoulder_shadow",
79
+ "left_elbow",
80
+ "left_elbow_shadow",
81
+ "left_forearm_roll",
82
+ "left_wrist_angle",
83
+ "left_wrist_rotate",
84
+ "left_gripper",
85
+ "right_waist",
86
+ "right_shoulder",
87
+ "right_shoulder_shadow",
88
+ "right_elbow",
89
+ "right_elbow_shadow",
90
+ "right_forearm_roll",
91
+ "right_wrist_angle",
92
+ "right_wrist_rotate",
93
+ "right_gripper"
94
+ ]
95
+ },
96
+ "observation.images.cam_high": {
97
+ "dtype": "video",
98
+ "shape": [
99
+ 480,
100
+ 640,
101
+ 3
102
+ ],
103
+ "names": [
104
+ "height",
105
+ "width",
106
+ "channels"
107
+ ],
108
+ "info": {
109
+ "video.fps": 30.0,
110
+ "video.height": 480,
111
+ "video.width": 640,
112
+ "video.channels": 3,
113
+ "video.codec": "av1",
114
+ "video.pix_fmt": "yuv420p",
115
+ "video.is_depth_map": false,
116
+ "has_audio": false
117
+ }
118
+ },
119
+ "observation.images.cam_left_wrist": {
120
+ "dtype": "video",
121
+ "shape": [
122
+ 480,
123
+ 640,
124
+ 3
125
+ ],
126
+ "names": [
127
+ "height",
128
+ "width",
129
+ "channels"
130
+ ],
131
+ "info": {
132
+ "video.fps": 30.0,
133
+ "video.height": 480,
134
+ "video.width": 640,
135
+ "video.channels": 3,
136
+ "video.codec": "av1",
137
+ "video.pix_fmt": "yuv420p",
138
+ "video.is_depth_map": false,
139
+ "has_audio": false
140
+ }
141
+ },
142
+ "observation.images.cam_right_wrist": {
143
+ "dtype": "video",
144
+ "shape": [
145
+ 480,
146
+ 640,
147
+ 3
148
+ ],
149
+ "names": [
150
+ "height",
151
+ "width",
152
+ "channels"
153
+ ],
154
+ "info": {
155
+ "video.fps": 30.0,
156
+ "video.height": 480,
157
+ "video.width": 640,
158
+ "video.channels": 3,
159
+ "video.codec": "av1",
160
+ "video.pix_fmt": "yuv420p",
161
+ "video.is_depth_map": false,
162
+ "has_audio": false
163
+ }
164
+ },
165
+ "timestamp": {
166
+ "dtype": "float32",
167
+ "shape": [
168
+ 1
169
+ ],
170
+ "names": null
171
+ },
172
+ "frame_index": {
173
+ "dtype": "int64",
174
+ "shape": [
175
+ 1
176
+ ],
177
+ "names": null
178
+ },
179
+ "episode_index": {
180
+ "dtype": "int64",
181
+ "shape": [
182
+ 1
183
+ ],
184
+ "names": null
185
+ },
186
+ "index": {
187
+ "dtype": "int64",
188
+ "shape": [
189
+ 1
190
+ ],
191
+ "names": null
192
+ },
193
+ "task_index": {
194
+ "dtype": "int64",
195
+ "shape": [
196
+ 1
197
+ ],
198
+ "names": null
199
+ }
200
+ }
201
+ }
202
+ ```
203
+
204
+
205
+ ## Citation
206
+
207
+ **BibTeX:**
208
+
209
+ ```bibtex
210
+ [More Information Needed]
211
+ ```