DorianAtSchool commited on
Commit
a38df5f
·
verified ·
1 Parent(s): 01e90b6

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +218 -0
README.md ADDED
@@ -0,0 +1,218 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v3.0",
28
+ "robot_type": null,
29
+ "total_episodes": 10,
30
+ "total_frames": 1256,
31
+ "total_tasks": 7,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 200,
35
+ "fps": 15,
36
+ "splits": {
37
+ "train": "0:10"
38
+ },
39
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
40
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
41
+ "features": {
42
+ "action": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 7
46
+ ],
47
+ "names": [
48
+ "delta_x",
49
+ "delta_y",
50
+ "delta_z",
51
+ "delta_roll",
52
+ "delta_pitch",
53
+ "delta_yaw",
54
+ "gripper"
55
+ ]
56
+ },
57
+ "observation.state": {
58
+ "dtype": "float32",
59
+ "shape": [
60
+ 8
61
+ ],
62
+ "names": [
63
+ "eef_x",
64
+ "eef_y",
65
+ "eef_z",
66
+ "eef_axis_angle_x",
67
+ "eef_axis_angle_y",
68
+ "eef_axis_angle_z",
69
+ "gripper_left",
70
+ "gripper_right"
71
+ ]
72
+ },
73
+ "observation.images.wrist": {
74
+ "dtype": "video",
75
+ "shape": [
76
+ 224,
77
+ 224,
78
+ 3
79
+ ],
80
+ "names": [
81
+ "height",
82
+ "width",
83
+ "channels"
84
+ ],
85
+ "video_info": {
86
+ "video.height": 224,
87
+ "video.width": 224,
88
+ "video.codec": "av1",
89
+ "video.pix_fmt": "yuv420p",
90
+ "video.is_depth_map": false,
91
+ "video.fps": 15.0,
92
+ "video.channels": 3,
93
+ "has_audio": false
94
+ },
95
+ "info": {
96
+ "video.height": 224,
97
+ "video.width": 224,
98
+ "video.codec": "av1",
99
+ "video.pix_fmt": "yuv420p",
100
+ "video.is_depth_map": false,
101
+ "video.fps": 15,
102
+ "video.channels": 3,
103
+ "has_audio": false
104
+ }
105
+ },
106
+ "observation.images.side": {
107
+ "dtype": "video",
108
+ "shape": [
109
+ 224,
110
+ 224,
111
+ 3
112
+ ],
113
+ "names": [
114
+ "height",
115
+ "width",
116
+ "channels"
117
+ ],
118
+ "video_info": {
119
+ "video.height": 224,
120
+ "video.width": 224,
121
+ "video.codec": "av1",
122
+ "video.pix_fmt": "yuv420p",
123
+ "video.is_depth_map": false,
124
+ "video.fps": 15.0,
125
+ "video.channels": 3,
126
+ "has_audio": false
127
+ },
128
+ "info": {
129
+ "video.height": 224,
130
+ "video.width": 224,
131
+ "video.codec": "av1",
132
+ "video.pix_fmt": "yuv420p",
133
+ "video.is_depth_map": false,
134
+ "video.fps": 15,
135
+ "video.channels": 3,
136
+ "has_audio": false
137
+ }
138
+ },
139
+ "observation.images.top": {
140
+ "dtype": "video",
141
+ "shape": [
142
+ 224,
143
+ 224,
144
+ 3
145
+ ],
146
+ "names": [
147
+ "height",
148
+ "width",
149
+ "channels"
150
+ ],
151
+ "video_info": {
152
+ "video.height": 224,
153
+ "video.width": 224,
154
+ "video.codec": "av1",
155
+ "video.pix_fmt": "yuv420p",
156
+ "video.is_depth_map": false,
157
+ "video.fps": 15.0,
158
+ "video.channels": 3,
159
+ "has_audio": false
160
+ },
161
+ "info": {
162
+ "video.height": 224,
163
+ "video.width": 224,
164
+ "video.codec": "av1",
165
+ "video.pix_fmt": "yuv420p",
166
+ "video.is_depth_map": false,
167
+ "video.fps": 15,
168
+ "video.channels": 3,
169
+ "has_audio": false
170
+ }
171
+ },
172
+ "timestamp": {
173
+ "dtype": "float32",
174
+ "shape": [
175
+ 1
176
+ ],
177
+ "names": null
178
+ },
179
+ "frame_index": {
180
+ "dtype": "int64",
181
+ "shape": [
182
+ 1
183
+ ],
184
+ "names": null
185
+ },
186
+ "episode_index": {
187
+ "dtype": "int64",
188
+ "shape": [
189
+ 1
190
+ ],
191
+ "names": null
192
+ },
193
+ "index": {
194
+ "dtype": "int64",
195
+ "shape": [
196
+ 1
197
+ ],
198
+ "names": null
199
+ },
200
+ "task_index": {
201
+ "dtype": "int64",
202
+ "shape": [
203
+ 1
204
+ ],
205
+ "names": null
206
+ }
207
+ }
208
+ }
209
+ ```
210
+
211
+
212
+ ## Citation
213
+
214
+ **BibTeX:**
215
+
216
+ ```bibtex
217
+ [More Information Needed]
218
+ ```