Robomaster commited on
Commit
b5e0317
1 Parent(s): b7014fe

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +180 -1
README.md CHANGED
@@ -1,9 +1,188 @@
1
  ---
 
2
  task_categories:
3
  - robotics
4
  tags:
5
  - LeRobot
6
- - tutorial
 
 
 
7
  ---
 
8
  This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
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:** 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": "koch",
30
+ "total_episodes": 80,
31
+ "total_frames": 31478,
32
+ "total_tasks": 1,
33
+ "total_videos": 240,
34
+ "total_chunks": 1,
35
+ "chunks_size": 1000,
36
+ "fps": 30,
37
+ "splits": {
38
+ "train": "0:80"
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.state": {
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
+ "observation.images.android": {
60
+ "dtype": "video",
61
+ "shape": [
62
+ 480,
63
+ 640,
64
+ 3
65
+ ],
66
+ "names": [
67
+ "height",
68
+ "width",
69
+ "channel"
70
+ ],
71
+ "video_info": {
72
+ "video.fps": 30.0,
73
+ "video.codec": "av1",
74
+ "video.pix_fmt": "yuv420p",
75
+ "video.is_depth_map": false,
76
+ "has_audio": false
77
+ }
78
+ },
79
+ "observation.images.webcam": {
80
+ "dtype": "video",
81
+ "shape": [
82
+ 480,
83
+ 640,
84
+ 3
85
+ ],
86
+ "names": [
87
+ "height",
88
+ "width",
89
+ "channel"
90
+ ],
91
+ "video_info": {
92
+ "video.fps": 30.0,
93
+ "video.codec": "av1",
94
+ "video.pix_fmt": "yuv420p",
95
+ "video.is_depth_map": false,
96
+ "has_audio": false
97
+ }
98
+ },
99
+ "observation.images.handcam": {
100
+ "dtype": "video",
101
+ "shape": [
102
+ 480,
103
+ 640,
104
+ 3
105
+ ],
106
+ "names": [
107
+ "height",
108
+ "width",
109
+ "channel"
110
+ ],
111
+ "video_info": {
112
+ "video.fps": 30.0,
113
+ "video.codec": "av1",
114
+ "video.pix_fmt": "yuv420p",
115
+ "video.is_depth_map": false,
116
+ "has_audio": false
117
+ }
118
+ },
119
+ "action": {
120
+ "dtype": "float32",
121
+ "shape": [
122
+ 6
123
+ ],
124
+ "names": {
125
+ "motors": [
126
+ "shoulder_pan",
127
+ "shoulder_lift",
128
+ "elbow_flex",
129
+ "wrist_flex",
130
+ "wrist_roll",
131
+ "gripper"
132
+ ]
133
+ }
134
+ },
135
+ "episode_index": {
136
+ "dtype": "int64",
137
+ "shape": [
138
+ 1
139
+ ],
140
+ "names": null
141
+ },
142
+ "frame_index": {
143
+ "dtype": "int64",
144
+ "shape": [
145
+ 1
146
+ ],
147
+ "names": null
148
+ },
149
+ "timestamp": {
150
+ "dtype": "float32",
151
+ "shape": [
152
+ 1
153
+ ],
154
+ "names": null
155
+ },
156
+ "next.done": {
157
+ "dtype": "bool",
158
+ "shape": [
159
+ 1
160
+ ],
161
+ "names": null
162
+ },
163
+ "index": {
164
+ "dtype": "int64",
165
+ "shape": [
166
+ 1
167
+ ],
168
+ "names": null
169
+ },
170
+ "task_index": {
171
+ "dtype": "int64",
172
+ "shape": [
173
+ 1
174
+ ],
175
+ "names": null
176
+ }
177
+ }
178
+ }
179
+ ```
180
+
181
+
182
+ ## Citation
183
+
184
+ **BibTeX:**
185
+
186
+ ```bibtex
187
+ [More Information Needed]
188
+ ```