danielsanjosepro commited on
Commit
c5fe8da
·
verified ·
1 Parent(s): dacdd97

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +221 -0
README.md ADDED
@@ -0,0 +1,221 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.1",
28
+ "robot_type": null,
29
+ "total_episodes": 152,
30
+ "total_frames": 26960,
31
+ "total_tasks": 1,
32
+ "total_videos": 456,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 10,
36
+ "splits": {
37
+ "train": "0:152"
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
+ 32
46
+ ],
47
+ "names": [
48
+ "tcp_left_pos_x",
49
+ "tcp_left_pos_y",
50
+ "tcp_left_pos_z",
51
+ "tcp_left_quat_x",
52
+ "tcp_left_quat_y",
53
+ "tcp_left_quat_z",
54
+ "tcp_left_quat_w",
55
+ "tcp_right_pos_x",
56
+ "tcp_right_pos_y",
57
+ "tcp_right_pos_z",
58
+ "tcp_right_quat_x",
59
+ "tcp_right_quat_y",
60
+ "tcp_right_quat_z",
61
+ "tcp_right_quat_w",
62
+ "gripper_left_0",
63
+ "gripper_left_1",
64
+ "gripper_right_0",
65
+ "gripper_right_1",
66
+ "last_command_left_0",
67
+ "last_command_left_1",
68
+ "last_command_left_2",
69
+ "last_command_left_3",
70
+ "last_command_left_4",
71
+ "last_command_left_5",
72
+ "last_command_left_6",
73
+ "last_command_right_0",
74
+ "last_command_right_1",
75
+ "last_command_right_2",
76
+ "last_command_right_3",
77
+ "last_command_right_4",
78
+ "last_command_right_5",
79
+ "last_command_right_6"
80
+ ]
81
+ },
82
+ "action": {
83
+ "dtype": "float32",
84
+ "shape": [
85
+ 16
86
+ ],
87
+ "names": [
88
+ "tcp_left_x",
89
+ "tcp_left_y",
90
+ "tcp_left_z",
91
+ "tcp_left_quat_x",
92
+ "tcp_left_quat_y",
93
+ "tcp_left_quat_z",
94
+ "tcp_left_quat_w",
95
+ "tcp_right_x",
96
+ "tcp_right_y",
97
+ "tcp_right_z",
98
+ "tcp_right_quat_x",
99
+ "tcp_right_quat_y",
100
+ "tcp_right_quat_z",
101
+ "tcp_right_quat_w",
102
+ "gripper_left",
103
+ "gripper_right"
104
+ ]
105
+ },
106
+ "observation.images.rgb_static": {
107
+ "dtype": "video",
108
+ "shape": [
109
+ 256,
110
+ 256,
111
+ 3
112
+ ],
113
+ "names": [
114
+ "height",
115
+ "width",
116
+ "channel"
117
+ ],
118
+ "info": {
119
+ "video.height": 256,
120
+ "video.width": 256,
121
+ "video.codec": "av1",
122
+ "video.pix_fmt": "yuv420p",
123
+ "video.is_depth_map": false,
124
+ "video.fps": 10,
125
+ "video.channels": 3,
126
+ "has_audio": false
127
+ }
128
+ },
129
+ "observation.images.rgb_left": {
130
+ "dtype": "video",
131
+ "shape": [
132
+ 256,
133
+ 256,
134
+ 3
135
+ ],
136
+ "names": [
137
+ "height",
138
+ "width",
139
+ "channel"
140
+ ],
141
+ "info": {
142
+ "video.height": 256,
143
+ "video.width": 256,
144
+ "video.codec": "av1",
145
+ "video.pix_fmt": "yuv420p",
146
+ "video.is_depth_map": false,
147
+ "video.fps": 10,
148
+ "video.channels": 3,
149
+ "has_audio": false
150
+ }
151
+ },
152
+ "observation.images.rgb_right": {
153
+ "dtype": "video",
154
+ "shape": [
155
+ 256,
156
+ 256,
157
+ 3
158
+ ],
159
+ "names": [
160
+ "height",
161
+ "width",
162
+ "channel"
163
+ ],
164
+ "info": {
165
+ "video.height": 256,
166
+ "video.width": 256,
167
+ "video.codec": "av1",
168
+ "video.pix_fmt": "yuv420p",
169
+ "video.is_depth_map": false,
170
+ "video.fps": 10,
171
+ "video.channels": 3,
172
+ "has_audio": false
173
+ }
174
+ },
175
+ "timestamp": {
176
+ "dtype": "float32",
177
+ "shape": [
178
+ 1
179
+ ],
180
+ "names": null
181
+ },
182
+ "frame_index": {
183
+ "dtype": "int64",
184
+ "shape": [
185
+ 1
186
+ ],
187
+ "names": null
188
+ },
189
+ "episode_index": {
190
+ "dtype": "int64",
191
+ "shape": [
192
+ 1
193
+ ],
194
+ "names": null
195
+ },
196
+ "index": {
197
+ "dtype": "int64",
198
+ "shape": [
199
+ 1
200
+ ],
201
+ "names": null
202
+ },
203
+ "task_index": {
204
+ "dtype": "int64",
205
+ "shape": [
206
+ 1
207
+ ],
208
+ "names": null
209
+ }
210
+ }
211
+ }
212
+ ```
213
+
214
+
215
+ ## Citation
216
+
217
+ **BibTeX:**
218
+
219
+ ```bibtex
220
+ [More Information Needed]
221
+ ```