jannick-st commited on
Commit
1779cea
·
verified ·
1 Parent(s): 468b05c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +219 -0
README.md ADDED
@@ -0,0 +1,219 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 12,
30
+ "total_frames": 3600,
31
+ "total_tasks": 1,
32
+ "total_videos": 36,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 10,
36
+ "splits": {
37
+ "train": "0:12"
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
+ "next.reward": {
43
+ "dtype": "int64",
44
+ "shape": [
45
+ 1
46
+ ],
47
+ "names": null
48
+ },
49
+ "next.done": {
50
+ "dtype": "bool",
51
+ "shape": [
52
+ 1
53
+ ],
54
+ "names": null
55
+ },
56
+ "action": {
57
+ "dtype": "float32",
58
+ "shape": [
59
+ 9
60
+ ],
61
+ "names": [
62
+ "main_waist",
63
+ "main_shoulder",
64
+ "main_shoulder_shadow",
65
+ "main_elbow",
66
+ "main_elbow_shadow",
67
+ "main_forearm_roll",
68
+ "main_wrist_angle",
69
+ "main_wrist_rotate",
70
+ "main_gripper"
71
+ ]
72
+ },
73
+ "observation.state": {
74
+ "dtype": "float32",
75
+ "shape": [
76
+ 9
77
+ ],
78
+ "names": [
79
+ "main_waist",
80
+ "main_shoulder",
81
+ "main_shoulder_shadow",
82
+ "main_elbow",
83
+ "main_elbow_shadow",
84
+ "main_forearm_roll",
85
+ "main_wrist_angle",
86
+ "main_wrist_rotate",
87
+ "main_gripper"
88
+ ]
89
+ },
90
+ "observation.joint_vel": {
91
+ "dtype": "float32",
92
+ "shape": [
93
+ 9
94
+ ],
95
+ "names": [
96
+ "main_waist",
97
+ "main_shoulder",
98
+ "main_shoulder_shadow",
99
+ "main_elbow",
100
+ "main_elbow_shadow",
101
+ "main_forearm_roll",
102
+ "main_wrist_angle",
103
+ "main_wrist_rotate",
104
+ "main_gripper"
105
+ ]
106
+ },
107
+ "observation.images.cam_low": {
108
+ "dtype": "video",
109
+ "shape": [
110
+ 128,
111
+ 128
112
+ ],
113
+ "names": [
114
+ "height",
115
+ "width",
116
+ "channels"
117
+ ],
118
+ "info": {
119
+ "video.fps": 10.0,
120
+ "video.height": 480,
121
+ "video.width": 640,
122
+ "video.channels": 3,
123
+ "video.codec": "av1",
124
+ "video.pix_fmt": "yuv420p",
125
+ "video.is_depth_map": false,
126
+ "has_audio": false
127
+ }
128
+ },
129
+ "observation.images.cam_top": {
130
+ "dtype": "video",
131
+ "shape": [
132
+ 128,
133
+ 128
134
+ ],
135
+ "names": [
136
+ "height",
137
+ "width",
138
+ "channels"
139
+ ],
140
+ "info": {
141
+ "video.fps": 10.0,
142
+ "video.height": 480,
143
+ "video.width": 640,
144
+ "video.channels": 3,
145
+ "video.codec": "av1",
146
+ "video.pix_fmt": "yuv420p",
147
+ "video.is_depth_map": false,
148
+ "has_audio": false
149
+ }
150
+ },
151
+ "observation.images.cam_right_wrist": {
152
+ "dtype": "video",
153
+ "shape": [
154
+ 128,
155
+ 128
156
+ ],
157
+ "names": [
158
+ "height",
159
+ "width",
160
+ "channels"
161
+ ],
162
+ "info": {
163
+ "video.fps": 10.0,
164
+ "video.height": 480,
165
+ "video.width": 640,
166
+ "video.channels": 3,
167
+ "video.codec": "av1",
168
+ "video.pix_fmt": "yuv420p",
169
+ "video.is_depth_map": false,
170
+ "has_audio": false
171
+ }
172
+ },
173
+ "timestamp": {
174
+ "dtype": "float32",
175
+ "shape": [
176
+ 1
177
+ ],
178
+ "names": null
179
+ },
180
+ "frame_index": {
181
+ "dtype": "int64",
182
+ "shape": [
183
+ 1
184
+ ],
185
+ "names": null
186
+ },
187
+ "episode_index": {
188
+ "dtype": "int64",
189
+ "shape": [
190
+ 1
191
+ ],
192
+ "names": null
193
+ },
194
+ "index": {
195
+ "dtype": "int64",
196
+ "shape": [
197
+ 1
198
+ ],
199
+ "names": null
200
+ },
201
+ "task_index": {
202
+ "dtype": "int64",
203
+ "shape": [
204
+ 1
205
+ ],
206
+ "names": null
207
+ }
208
+ }
209
+ }
210
+ ```
211
+
212
+
213
+ ## Citation
214
+
215
+ **BibTeX:**
216
+
217
+ ```bibtex
218
+ [More Information Needed]
219
+ ```