m1b commited on
Commit
57eb448
·
verified ·
1 Parent(s): 0876116

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +197 -1
README.md CHANGED
@@ -1,9 +1,205 @@
1
  ---
 
2
  task_categories:
3
  - robotics
4
  tags:
5
  - LeRobot
6
- - lerobot
 
 
 
7
  ---
 
8
  This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
3
  task_categories:
4
  - robotics
5
  tags:
6
  - LeRobot
7
+ - koch
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:** mit
22
+
23
+ ## Dataset Structure
24
+
25
+ [meta/info.json](meta/info.json):
26
+ ```json
27
+ {
28
+ "codebase_version": "v2.0",
29
+ "robot_type": "koch",
30
+ "total_episodes": 100,
31
+ "total_frames": 72130,
32
+ "total_tasks": 1,
33
+ "total_videos": 200,
34
+ "total_chunks": 1,
35
+ "chunks_size": 1000,
36
+ "fps": 30,
37
+ "splits": {
38
+ "train": "0:100"
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
+ 6
47
+ ],
48
+ "names": {
49
+ "motors": [
50
+ "shoulder_pan",
51
+ "shoulder_lift",
52
+ "elbow_flex",
53
+ "wrist_flex",
54
+ "wrist_roll",
55
+ "gripper"
56
+ ]
57
+ }
58
+ },
59
+ "next.reward": {
60
+ "dtype": "float32",
61
+ "shape": [
62
+ 1
63
+ ],
64
+ "names": null
65
+ },
66
+ "next.success": {
67
+ "dtype": "bool",
68
+ "shape": [
69
+ 1
70
+ ],
71
+ "names": null
72
+ },
73
+ "observation.state": {
74
+ "dtype": "float32",
75
+ "shape": [
76
+ 6
77
+ ],
78
+ "names": {
79
+ "motors": [
80
+ "shoulder_pan",
81
+ "shoulder_lift",
82
+ "elbow_flex",
83
+ "wrist_flex",
84
+ "wrist_roll",
85
+ "gripper"
86
+ ]
87
+ }
88
+ },
89
+ "observation.velocity": {
90
+ "dtype": "float32",
91
+ "shape": [
92
+ 6
93
+ ],
94
+ "names": {
95
+ "motors": [
96
+ "shoulder_pan",
97
+ "shoulder_lift",
98
+ "elbow_flex",
99
+ "wrist_flex",
100
+ "wrist_roll",
101
+ "gripper"
102
+ ]
103
+ }
104
+ },
105
+ "observation.images.image_front": {
106
+ "dtype": "video",
107
+ "shape": [
108
+ 240,
109
+ 320,
110
+ 3
111
+ ],
112
+ "names": [
113
+ "height",
114
+ "width",
115
+ "channel"
116
+ ],
117
+ "video_info": {
118
+ "video.fps": 30.0,
119
+ "video.codec": "av1",
120
+ "video.pix_fmt": "yuv420p",
121
+ "video.is_depth_map": false,
122
+ "has_audio": false
123
+ }
124
+ },
125
+ "observation.images.image_top": {
126
+ "dtype": "video",
127
+ "shape": [
128
+ 240,
129
+ 320,
130
+ 3
131
+ ],
132
+ "names": [
133
+ "height",
134
+ "width",
135
+ "channel"
136
+ ],
137
+ "video_info": {
138
+ "video.fps": 30.0,
139
+ "video.codec": "av1",
140
+ "video.pix_fmt": "yuv420p",
141
+ "video.is_depth_map": false,
142
+ "has_audio": false
143
+ }
144
+ },
145
+ "seed": {
146
+ "dtype": "int64",
147
+ "shape": [
148
+ 1
149
+ ],
150
+ "names": null
151
+ },
152
+ "episode_index": {
153
+ "dtype": "int64",
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
+ "timestamp": {
167
+ "dtype": "float32",
168
+ "shape": [
169
+ 1
170
+ ],
171
+ "names": null
172
+ },
173
+ "next.done": {
174
+ "dtype": "bool",
175
+ "shape": [
176
+ 1
177
+ ],
178
+ "names": null
179
+ },
180
+ "index": {
181
+ "dtype": "int64",
182
+ "shape": [
183
+ 1
184
+ ],
185
+ "names": null
186
+ },
187
+ "task_index": {
188
+ "dtype": "int64",
189
+ "shape": [
190
+ 1
191
+ ],
192
+ "names": null
193
+ }
194
+ }
195
+ }
196
+ ```
197
+
198
+
199
+ ## Citation
200
+
201
+ **BibTeX:**
202
+
203
+ ```bibtex
204
+ [More Information Needed]
205
+ ```