wxj77 commited on
Commit
f7f55ab
·
verified ·
1 Parent(s): e1e005f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +207 -0
README.md ADDED
@@ -0,0 +1,207 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - aloha
8
+ - robotics
9
+ - hdf5
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.1",
31
+ "robot_type": "aloha-stationary",
32
+ "total_episodes": 0,
33
+ "total_frames": 0,
34
+ "total_tasks": 0,
35
+ "total_videos": 0,
36
+ "total_chunks": 0,
37
+ "chunks_size": 1000,
38
+ "fps": 50,
39
+ "splits": {},
40
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
41
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
42
+ "features": {
43
+ "action": {
44
+ "dtype": "float64",
45
+ "shape": [
46
+ 14
47
+ ],
48
+ "names": [
49
+ "action_0",
50
+ "action_1",
51
+ "action_2",
52
+ "action_3",
53
+ "action_4",
54
+ "action_5",
55
+ "action_6",
56
+ "action_7",
57
+ "action_8",
58
+ "action_9",
59
+ "action_10",
60
+ "action_11",
61
+ "action_12",
62
+ "action_13"
63
+ ]
64
+ },
65
+ "observation.images.cam_high": {
66
+ "dtype": "image",
67
+ "shape": [
68
+ 480,
69
+ 640,
70
+ 3
71
+ ],
72
+ "names": [
73
+ "channel",
74
+ "height",
75
+ "width"
76
+ ]
77
+ },
78
+ "observation.images.cam_left_wrist": {
79
+ "dtype": "image",
80
+ "shape": [
81
+ 480,
82
+ 640,
83
+ 3
84
+ ],
85
+ "names": [
86
+ "channel",
87
+ "height",
88
+ "width"
89
+ ]
90
+ },
91
+ "observation.images.cam_low": {
92
+ "dtype": "image",
93
+ "shape": [
94
+ 480,
95
+ 640,
96
+ 3
97
+ ],
98
+ "names": [
99
+ "channel",
100
+ "height",
101
+ "width"
102
+ ]
103
+ },
104
+ "observation.images.cam_right_wrist": {
105
+ "dtype": "image",
106
+ "shape": [
107
+ 480,
108
+ 640,
109
+ 3
110
+ ],
111
+ "names": [
112
+ "channel",
113
+ "height",
114
+ "width"
115
+ ]
116
+ },
117
+ "observation.state": {
118
+ "dtype": "float64",
119
+ "shape": [
120
+ 14
121
+ ],
122
+ "names": [
123
+ "qpos_0",
124
+ "qpos_1",
125
+ "qpos_2",
126
+ "qpos_3",
127
+ "qpos_4",
128
+ "qpos_5",
129
+ "qpos_6",
130
+ "qpos_7",
131
+ "qpos_8",
132
+ "qpos_9",
133
+ "qpos_10",
134
+ "qpos_11",
135
+ "qpos_12",
136
+ "qpos_13"
137
+ ]
138
+ },
139
+ "observation.qvel": {
140
+ "dtype": "float64",
141
+ "shape": [
142
+ 14
143
+ ],
144
+ "names": [
145
+ "qvel_0",
146
+ "qvel_1",
147
+ "qvel_2",
148
+ "qvel_3",
149
+ "qvel_4",
150
+ "qvel_5",
151
+ "qvel_6",
152
+ "qvel_7",
153
+ "qvel_8",
154
+ "qvel_9",
155
+ "qvel_10",
156
+ "qvel_11",
157
+ "qvel_12",
158
+ "qvel_13"
159
+ ]
160
+ },
161
+ "timestamp": {
162
+ "dtype": "float32",
163
+ "shape": [
164
+ 1
165
+ ],
166
+ "names": null
167
+ },
168
+ "frame_index": {
169
+ "dtype": "int64",
170
+ "shape": [
171
+ 1
172
+ ],
173
+ "names": null
174
+ },
175
+ "episode_index": {
176
+ "dtype": "int64",
177
+ "shape": [
178
+ 1
179
+ ],
180
+ "names": null
181
+ },
182
+ "index": {
183
+ "dtype": "int64",
184
+ "shape": [
185
+ 1
186
+ ],
187
+ "names": null
188
+ },
189
+ "task_index": {
190
+ "dtype": "int64",
191
+ "shape": [
192
+ 1
193
+ ],
194
+ "names": null
195
+ }
196
+ }
197
+ }
198
+ ```
199
+
200
+
201
+ ## Citation
202
+
203
+ **BibTeX:**
204
+
205
+ ```bibtex
206
+ [More Information Needed]
207
+ ```