n3puiol commited on
Commit
6eb12eb
·
verified ·
1 Parent(s): ab7f787

Upload README.md with huggingface_hub

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