Deason11 commited on
Commit
6afcf64
·
verified ·
1 Parent(s): 6003533

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
+ - 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": "lekiwi",
30
+ "total_episodes": 2,
31
+ "total_frames": 249,
32
+ "total_tasks": 1,
33
+ "total_videos": 6,
34
+ "total_chunks": 1,
35
+ "chunks_size": 1000,
36
+ "fps": 30,
37
+ "splits": {
38
+ "train": "0:2"
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
+ 10
47
+ ],
48
+ "names": [
49
+ "shoulder_pan",
50
+ "shoulder_lift",
51
+ "elbow_flex",
52
+ "wrist_flex",
53
+ "wrist_roll",
54
+ "wrist_angle",
55
+ "gripper",
56
+ "x_mm",
57
+ "y_mm",
58
+ "theta"
59
+ ]
60
+ },
61
+ "observation.state": {
62
+ "dtype": "float32",
63
+ "shape": [
64
+ 10
65
+ ],
66
+ "names": [
67
+ "shoulder_pan",
68
+ "shoulder_lift",
69
+ "elbow_flex",
70
+ "wrist_flex",
71
+ "wrist_roll",
72
+ "wrist_angle",
73
+ "gripper",
74
+ "x_mm",
75
+ "y_mm",
76
+ "theta"
77
+ ]
78
+ },
79
+ "observation.images.L_OverheadCamera": {
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": "h264",
97
+ "video.pix_fmt": "yuv420p",
98
+ "video.is_depth_map": false,
99
+ "has_audio": false
100
+ }
101
+ },
102
+ "observation.images.wrist": {
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": "h264",
120
+ "video.pix_fmt": "yuv420p",
121
+ "video.is_depth_map": false,
122
+ "has_audio": false
123
+ }
124
+ },
125
+ "observation.images.R_OverheadCamera": {
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": "h264",
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
+ ```