bayley-bot commited on
Commit
5dee232
·
verified ·
1 Parent(s): d88c2ca

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +191 -0
README.md ADDED
@@ -0,0 +1,191 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 50,
30
+ "total_frames": 18162,
31
+ "total_tasks": 1,
32
+ "total_videos": 150,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:50"
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
+ "action": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 9
46
+ ],
47
+ "names": [
48
+ "left_waist",
49
+ "left_shoulder",
50
+ "left_shoulder_shadow",
51
+ "left_elbow",
52
+ "left_elbow_shadow",
53
+ "left_forearm_roll",
54
+ "left_wrist_angle",
55
+ "left_wrist_rotate",
56
+ "left_gripper"
57
+ ]
58
+ },
59
+ "observation.state": {
60
+ "dtype": "float32",
61
+ "shape": [
62
+ 9
63
+ ],
64
+ "names": [
65
+ "left_waist",
66
+ "left_shoulder",
67
+ "left_shoulder_shadow",
68
+ "left_elbow",
69
+ "left_elbow_shadow",
70
+ "left_forearm_roll",
71
+ "left_wrist_angle",
72
+ "left_wrist_rotate",
73
+ "left_gripper"
74
+ ]
75
+ },
76
+ "observation.images.left": {
77
+ "dtype": "video",
78
+ "shape": [
79
+ 480,
80
+ 640,
81
+ 3
82
+ ],
83
+ "names": [
84
+ "height",
85
+ "width",
86
+ "channels"
87
+ ],
88
+ "info": {
89
+ "video.fps": 30.0,
90
+ "video.height": 480,
91
+ "video.width": 640,
92
+ "video.channels": 3,
93
+ "video.codec": "h264",
94
+ "video.pix_fmt": "yuv420p",
95
+ "video.is_depth_map": false,
96
+ "has_audio": false
97
+ }
98
+ },
99
+ "observation.images.wrist": {
100
+ "dtype": "video",
101
+ "shape": [
102
+ 480,
103
+ 640,
104
+ 3
105
+ ],
106
+ "names": [
107
+ "height",
108
+ "width",
109
+ "channels"
110
+ ],
111
+ "info": {
112
+ "video.fps": 30.0,
113
+ "video.height": 480,
114
+ "video.width": 640,
115
+ "video.channels": 3,
116
+ "video.codec": "h264",
117
+ "video.pix_fmt": "yuv420p",
118
+ "video.is_depth_map": false,
119
+ "has_audio": false
120
+ }
121
+ },
122
+ "observation.images.right": {
123
+ "dtype": "video",
124
+ "shape": [
125
+ 480,
126
+ 640,
127
+ 3
128
+ ],
129
+ "names": [
130
+ "height",
131
+ "width",
132
+ "channels"
133
+ ],
134
+ "info": {
135
+ "video.fps": 30.0,
136
+ "video.height": 480,
137
+ "video.width": 640,
138
+ "video.channels": 3,
139
+ "video.codec": "h264",
140
+ "video.pix_fmt": "yuv420p",
141
+ "video.is_depth_map": false,
142
+ "has_audio": false
143
+ }
144
+ },
145
+ "timestamp": {
146
+ "dtype": "float32",
147
+ "shape": [
148
+ 1
149
+ ],
150
+ "names": null
151
+ },
152
+ "frame_index": {
153
+ "dtype": "int64",
154
+ "shape": [
155
+ 1
156
+ ],
157
+ "names": null
158
+ },
159
+ "episode_index": {
160
+ "dtype": "int64",
161
+ "shape": [
162
+ 1
163
+ ],
164
+ "names": null
165
+ },
166
+ "index": {
167
+ "dtype": "int64",
168
+ "shape": [
169
+ 1
170
+ ],
171
+ "names": null
172
+ },
173
+ "task_index": {
174
+ "dtype": "int64",
175
+ "shape": [
176
+ 1
177
+ ],
178
+ "names": null
179
+ }
180
+ }
181
+ }
182
+ ```
183
+
184
+
185
+ ## Citation
186
+
187
+ **BibTeX:**
188
+
189
+ ```bibtex
190
+ [More Information Needed]
191
+ ```