abhisb commited on
Commit
a43d612
·
verified ·
1 Parent(s): 2385743

Upload README.md with huggingface_hub

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