ConnorJiang commited on
Commit
b632e49
·
verified ·
1 Parent(s): ebebe38

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +199 -0
README.md CHANGED
@@ -1,8 +1,207 @@
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": 50,
30
+ "total_frames": 44780,
31
+ "total_tasks": 1,
32
+ "total_videos": 150,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:50"
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
+ 16
46
+ ],
47
+ "names": {
48
+ "motors": [
49
+ "motor_0",
50
+ "motor_1",
51
+ "motor_2",
52
+ "motor_3",
53
+ "motor_4",
54
+ "motor_5",
55
+ "motor_6",
56
+ "motor_7",
57
+ "motor_8",
58
+ "motor_9",
59
+ "motor_10",
60
+ "motor_11",
61
+ "motor_12",
62
+ "motor_13",
63
+ "motor_14",
64
+ "motor_15"
65
+ ]
66
+ }
67
+ },
68
+ "action": {
69
+ "dtype": "float32",
70
+ "shape": [
71
+ 16
72
+ ],
73
+ "names": {
74
+ "motors": [
75
+ "motor_0",
76
+ "motor_1",
77
+ "motor_2",
78
+ "motor_3",
79
+ "motor_4",
80
+ "motor_5",
81
+ "motor_6",
82
+ "motor_7",
83
+ "motor_8",
84
+ "motor_9",
85
+ "motor_10",
86
+ "motor_11",
87
+ "motor_12",
88
+ "motor_13",
89
+ "motor_14",
90
+ "motor_15"
91
+ ]
92
+ }
93
+ },
94
+ "observation.images.cam_high": {
95
+ "dtype": "video",
96
+ "shape": [
97
+ 480,
98
+ 640,
99
+ 3
100
+ ],
101
+ "names": [
102
+ "height",
103
+ "width",
104
+ "channel"
105
+ ],
106
+ "video_info": {
107
+ "video.fps": 30.0,
108
+ "video.codec": "av1",
109
+ "video.pix_fmt": "yuv420p",
110
+ "video.is_depth_map": false,
111
+ "has_audio": false
112
+ }
113
+ },
114
+ "observation.images.cam_left_wrist": {
115
+ "dtype": "video",
116
+ "shape": [
117
+ 480,
118
+ 640,
119
+ 3
120
+ ],
121
+ "names": [
122
+ "height",
123
+ "width",
124
+ "channel"
125
+ ],
126
+ "video_info": {
127
+ "video.fps": 30.0,
128
+ "video.codec": "av1",
129
+ "video.pix_fmt": "yuv420p",
130
+ "video.is_depth_map": false,
131
+ "has_audio": false
132
+ }
133
+ },
134
+ "observation.images.cam_right_wrist": {
135
+ "dtype": "video",
136
+ "shape": [
137
+ 480,
138
+ 640,
139
+ 3
140
+ ],
141
+ "names": [
142
+ "height",
143
+ "width",
144
+ "channel"
145
+ ],
146
+ "video_info": {
147
+ "video.fps": 30.0,
148
+ "video.codec": "av1",
149
+ "video.pix_fmt": "yuv420p",
150
+ "video.is_depth_map": false,
151
+ "has_audio": false
152
+ }
153
+ },
154
+ "episode_index": {
155
+ "dtype": "int64",
156
+ "shape": [
157
+ 1
158
+ ],
159
+ "names": null
160
+ },
161
+ "frame_index": {
162
+ "dtype": "int64",
163
+ "shape": [
164
+ 1
165
+ ],
166
+ "names": null
167
+ },
168
+ "timestamp": {
169
+ "dtype": "float32",
170
+ "shape": [
171
+ 1
172
+ ],
173
+ "names": null
174
+ },
175
+ "next.done": {
176
+ "dtype": "bool",
177
+ "shape": [
178
+ 1
179
+ ],
180
+ "names": null
181
+ },
182
+ "index": {
183
+ "dtype": "int64",
184
+ "shape": [
185
+ 1
186
+ ],
187
+ "names": null
188
+ },
189
+ "task_index": {
190
+ "dtype": "int64",
191
+ "shape": [
192
+ 1
193
+ ],
194
+ "names": null
195
+ }
196
+ }
197
+ }
198
+ ```
199
+
200
+
201
+ ## Citation
202
+
203
+ **BibTeX:**
204
+
205
+ ```bibtex
206
+ [More Information Needed]
207
+ ```