takuzennn commited on
Commit
7b833bc
·
verified ·
1 Parent(s): ccd5a98

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +196 -0
README.md CHANGED
@@ -1,8 +1,204 @@
1
  ---
 
2
  task_categories:
3
  - robotics
4
  tags:
5
  - LeRobot
 
 
 
 
6
  ---
 
7
  This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
3
  task_categories:
4
  - robotics
5
  tags:
6
  - LeRobot
7
+ - zenbot
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": "zenbot",
30
+ "total_episodes": 200,
31
+ "total_frames": 60000,
32
+ "total_tasks": 1,
33
+ "total_videos": 600,
34
+ "total_chunks": 1,
35
+ "chunks_size": 1000,
36
+ "fps": 10,
37
+ "splits": {
38
+ "train": "0:200"
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
+ "observation.image.camera1": {
44
+ "dtype": "video",
45
+ "shape": [
46
+ 480,
47
+ 640,
48
+ 3
49
+ ],
50
+ "names": [
51
+ "height",
52
+ "width",
53
+ "channels"
54
+ ],
55
+ "video_info": {
56
+ "video.fps": 10.0,
57
+ "video.codec": "h264",
58
+ "video.pix_fmt": "yuv420p",
59
+ "video.is_depth_map": false,
60
+ "has_audio": false
61
+ }
62
+ },
63
+ "observation.image.camera2": {
64
+ "dtype": "video",
65
+ "shape": [
66
+ 480,
67
+ 640,
68
+ 3
69
+ ],
70
+ "names": [
71
+ "height",
72
+ "width",
73
+ "channels"
74
+ ],
75
+ "video_info": {
76
+ "video.fps": 10.0,
77
+ "video.codec": "h264",
78
+ "video.pix_fmt": "yuv420p",
79
+ "video.is_depth_map": false,
80
+ "has_audio": false
81
+ }
82
+ },
83
+ "observation.image.camera3": {
84
+ "dtype": "video",
85
+ "shape": [
86
+ 480,
87
+ 640,
88
+ 3
89
+ ],
90
+ "names": [
91
+ "height",
92
+ "width",
93
+ "channels"
94
+ ],
95
+ "video_info": {
96
+ "video.fps": 10.0,
97
+ "video.codec": "h264",
98
+ "video.pix_fmt": "yuv420p",
99
+ "video.is_depth_map": false,
100
+ "has_audio": false
101
+ }
102
+ },
103
+ "observation.state": {
104
+ "dtype": "float32",
105
+ "shape": [
106
+ 14
107
+ ],
108
+ "names": {
109
+ "motors": [
110
+ "left_base",
111
+ "left_shoulder_lift",
112
+ "left_should_revolve",
113
+ "left_elbow_lift",
114
+ "left_elbow_revolve",
115
+ "left_wrist",
116
+ "left_gripper",
117
+ "right_base",
118
+ "right_shoulder_lift",
119
+ "right_should_revolve",
120
+ "right_elbow_lift",
121
+ "right_elbow_revolve",
122
+ "right_wrist",
123
+ "right_gripper"
124
+ ]
125
+ }
126
+ },
127
+ "action": {
128
+ "dtype": "float32",
129
+ "shape": [
130
+ 14
131
+ ],
132
+ "names": {
133
+ "motors": [
134
+ "left_base",
135
+ "left_shoulder_lift",
136
+ "left_should_revolve",
137
+ "left_elbow_lift",
138
+ "left_elbow_revolve",
139
+ "left_wrist",
140
+ "left_gripper",
141
+ "right_base",
142
+ "right_shoulder_lift",
143
+ "right_should_revolve",
144
+ "right_elbow_lift",
145
+ "right_elbow_revolve",
146
+ "right_wrist",
147
+ "right_gripper"
148
+ ]
149
+ }
150
+ },
151
+ "episode_index": {
152
+ "dtype": "int64",
153
+ "shape": [
154
+ 1
155
+ ],
156
+ "names": null
157
+ },
158
+ "frame_index": {
159
+ "dtype": "int64",
160
+ "shape": [
161
+ 1
162
+ ],
163
+ "names": null
164
+ },
165
+ "timestamp": {
166
+ "dtype": "float32",
167
+ "shape": [
168
+ 1
169
+ ],
170
+ "names": null
171
+ },
172
+ "next.done": {
173
+ "dtype": "bool",
174
+ "shape": [
175
+ 1
176
+ ],
177
+ "names": null
178
+ },
179
+ "index": {
180
+ "dtype": "int64",
181
+ "shape": [
182
+ 1
183
+ ],
184
+ "names": null
185
+ },
186
+ "task_index": {
187
+ "dtype": "int64",
188
+ "shape": [
189
+ 1
190
+ ],
191
+ "names": null
192
+ }
193
+ }
194
+ }
195
+ ```
196
+
197
+
198
+ ## Citation
199
+
200
+ **BibTeX:**
201
+
202
+ ```bibtex
203
+ [More Information Needed]
204
+ ```