Creative-Intelligence commited on
Commit
a500f18
1 Parent(s): f09c9d0

Upload README.md with huggingface_hub

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