Robomaster commited on
Commit
e2ac756
1 Parent(s): 3b8a6f3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +179 -0
README.md CHANGED
@@ -1,8 +1,187 @@
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
+ configs:
8
+ - config_name: default
9
+ data_files: data/*/*.parquet
10
  ---
11
+
12
  This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
13
 
14
+ ## Dataset Description
15
+
16
+
17
+
18
+ - **Homepage:** [More Information Needed]
19
+ - **Paper:** [More Information Needed]
20
+ - **License:** apache-2.0
21
+
22
+ ## Dataset Structure
23
+
24
+ [meta/info.json](meta/info.json):
25
+ ```json
26
+ {
27
+ "codebase_version": "v2.0",
28
+ "robot_type": "unknown",
29
+ "total_episodes": 80,
30
+ "total_frames": 33117,
31
+ "total_tasks": 1,
32
+ "total_videos": 240,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:80"
38
+ },
39
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
40
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
41
+ "features": {
42
+ "observation.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 6
46
+ ],
47
+ "names": {
48
+ "motors": [
49
+ "motor_0",
50
+ "motor_1",
51
+ "motor_2",
52
+ "motor_3",
53
+ "motor_4",
54
+ "motor_5"
55
+ ]
56
+ }
57
+ },
58
+ "observation.images.android": {
59
+ "dtype": "video",
60
+ "shape": [
61
+ 480,
62
+ 640,
63
+ 3
64
+ ],
65
+ "names": [
66
+ "height",
67
+ "width",
68
+ "channel"
69
+ ],
70
+ "video_info": {
71
+ "video.fps": 30.0,
72
+ "video.codec": "av1",
73
+ "video.pix_fmt": "yuv420p",
74
+ "video.is_depth_map": false,
75
+ "has_audio": false
76
+ }
77
+ },
78
+ "observation.images.webcam": {
79
+ "dtype": "video",
80
+ "shape": [
81
+ 480,
82
+ 640,
83
+ 3
84
+ ],
85
+ "names": [
86
+ "height",
87
+ "width",
88
+ "channel"
89
+ ],
90
+ "video_info": {
91
+ "video.fps": 30.0,
92
+ "video.codec": "av1",
93
+ "video.pix_fmt": "yuv420p",
94
+ "video.is_depth_map": false,
95
+ "has_audio": false
96
+ }
97
+ },
98
+ "observation.images.handcam": {
99
+ "dtype": "video",
100
+ "shape": [
101
+ 480,
102
+ 640,
103
+ 3
104
+ ],
105
+ "names": [
106
+ "height",
107
+ "width",
108
+ "channel"
109
+ ],
110
+ "video_info": {
111
+ "video.fps": 30.0,
112
+ "video.codec": "av1",
113
+ "video.pix_fmt": "yuv420p",
114
+ "video.is_depth_map": false,
115
+ "has_audio": false
116
+ }
117
+ },
118
+ "action": {
119
+ "dtype": "float32",
120
+ "shape": [
121
+ 6
122
+ ],
123
+ "names": {
124
+ "motors": [
125
+ "motor_0",
126
+ "motor_1",
127
+ "motor_2",
128
+ "motor_3",
129
+ "motor_4",
130
+ "motor_5"
131
+ ]
132
+ }
133
+ },
134
+ "episode_index": {
135
+ "dtype": "int64",
136
+ "shape": [
137
+ 1
138
+ ],
139
+ "names": null
140
+ },
141
+ "frame_index": {
142
+ "dtype": "int64",
143
+ "shape": [
144
+ 1
145
+ ],
146
+ "names": null
147
+ },
148
+ "timestamp": {
149
+ "dtype": "float32",
150
+ "shape": [
151
+ 1
152
+ ],
153
+ "names": null
154
+ },
155
+ "next.done": {
156
+ "dtype": "bool",
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
+ ```