brian4dwell commited on
Commit
375ff9d
·
verified ·
1 Parent(s): bf811d6

Upload README.md with huggingface_hub

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