IXDLI commited on
Commit
42ec32d
·
verified ·
1 Parent(s): e39db55

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +235 -0
README.md ADDED
@@ -0,0 +1,235 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
15
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=IXDLI/WRM_grasp_lero">
16
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
17
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
18
+ </a>
19
+
20
+
21
+ ## Dataset Description
22
+
23
+
24
+
25
+ - **Homepage:** [More Information Needed]
26
+ - **Paper:** [More Information Needed]
27
+ - **License:** apache-2.0
28
+
29
+ ## Dataset Structure
30
+
31
+ [meta/info.json](meta/info.json):
32
+ ```json
33
+ {
34
+ "codebase_version": "v3.0",
35
+ "robot_type": "realman",
36
+ "total_episodes": 51,
37
+ "total_frames": 11934,
38
+ "total_tasks": 1,
39
+ "chunks_size": 1000,
40
+ "data_files_size_in_mb": 100,
41
+ "video_files_size_in_mb": 200,
42
+ "fps": 24,
43
+ "splits": {
44
+ "train": "0:51"
45
+ },
46
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
47
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
48
+ "features": {
49
+ "action": {
50
+ "dtype": "float32",
51
+ "shape": [
52
+ 7
53
+ ],
54
+ "names": [
55
+ "joint_0",
56
+ "joint_1",
57
+ "joint_2",
58
+ "joint_3",
59
+ "joint_4",
60
+ "joint_5",
61
+ "joint_6"
62
+ ]
63
+ },
64
+ "observation.state": {
65
+ "dtype": "float32",
66
+ "shape": [
67
+ 7
68
+ ],
69
+ "names": [
70
+ "joint_0",
71
+ "joint_1",
72
+ "joint_2",
73
+ "joint_3",
74
+ "joint_4",
75
+ "joint_5",
76
+ "joint_6"
77
+ ]
78
+ },
79
+ "extra.timestamps_ns": {
80
+ "dtype": "int64",
81
+ "shape": [
82
+ 7
83
+ ],
84
+ "names": [
85
+ "collect",
86
+ "robot_state",
87
+ "robot_action",
88
+ "vr_input",
89
+ "tactile",
90
+ "beaver",
91
+ "camera_0"
92
+ ]
93
+ },
94
+ "observation.force": {
95
+ "dtype": "float32",
96
+ "shape": [
97
+ 3
98
+ ],
99
+ "names": [
100
+ "Fx",
101
+ "Fy",
102
+ "Fz"
103
+ ]
104
+ },
105
+ "observation.torque": {
106
+ "dtype": "float32",
107
+ "shape": [
108
+ 3
109
+ ],
110
+ "names": [
111
+ "Tx",
112
+ "Ty",
113
+ "Tz"
114
+ ]
115
+ },
116
+ "extra.tcp_pose": {
117
+ "dtype": "float32",
118
+ "shape": [
119
+ 7
120
+ ],
121
+ "names": [
122
+ "qx",
123
+ "qy",
124
+ "qz",
125
+ "qw",
126
+ "x",
127
+ "y",
128
+ "z"
129
+ ]
130
+ },
131
+ "observation.images.camera_0": {
132
+ "dtype": "video",
133
+ "shape": [
134
+ 480,
135
+ 640,
136
+ 3
137
+ ],
138
+ "names": [
139
+ "height",
140
+ "width",
141
+ "channel"
142
+ ],
143
+ "info": {
144
+ "video.height": 480,
145
+ "video.width": 640,
146
+ "video.codec": "h264",
147
+ "video.pix_fmt": "yuv420p",
148
+ "video.is_depth_map": false,
149
+ "video.fps": 24,
150
+ "video.channels": 3,
151
+ "has_audio": false
152
+ }
153
+ },
154
+ "observation.beaver.distance_mm": {
155
+ "dtype": "float32",
156
+ "shape": [
157
+ 9,
158
+ 4,
159
+ 4
160
+ ],
161
+ "names": [
162
+ "sensor",
163
+ "row",
164
+ "column"
165
+ ]
166
+ },
167
+ "observation.beaver.target_status": {
168
+ "dtype": "float32",
169
+ "shape": [
170
+ 9,
171
+ 4,
172
+ 4
173
+ ],
174
+ "names": [
175
+ "sensor",
176
+ "row",
177
+ "column"
178
+ ]
179
+ },
180
+ "observation.beaver.present": {
181
+ "dtype": "float32",
182
+ "shape": [
183
+ 9
184
+ ],
185
+ "names": [
186
+ "sensor"
187
+ ]
188
+ },
189
+ "timestamp": {
190
+ "dtype": "float32",
191
+ "shape": [
192
+ 1
193
+ ],
194
+ "names": null
195
+ },
196
+ "frame_index": {
197
+ "dtype": "int64",
198
+ "shape": [
199
+ 1
200
+ ],
201
+ "names": null
202
+ },
203
+ "episode_index": {
204
+ "dtype": "int64",
205
+ "shape": [
206
+ 1
207
+ ],
208
+ "names": null
209
+ },
210
+ "index": {
211
+ "dtype": "int64",
212
+ "shape": [
213
+ 1
214
+ ],
215
+ "names": null
216
+ },
217
+ "task_index": {
218
+ "dtype": "int64",
219
+ "shape": [
220
+ 1
221
+ ],
222
+ "names": null
223
+ }
224
+ }
225
+ }
226
+ ```
227
+
228
+
229
+ ## Citation
230
+
231
+ **BibTeX:**
232
+
233
+ ```bibtex
234
+ [More Information Needed]
235
+ ```