gribes commited on
Commit
932fffd
·
verified ·
1 Parent(s): 3185163

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +185 -0
README.md ADDED
@@ -0,0 +1,185 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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=gribes/haply_vel_binary_gripper">
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": null,
36
+ "total_episodes": 118,
37
+ "total_frames": 38390,
38
+ "total_tasks": 1,
39
+ "chunks_size": 1000,
40
+ "data_files_size_in_mb": 100,
41
+ "video_files_size_in_mb": 200,
42
+ "fps": 30,
43
+ "splits": {
44
+ "train": "0:118"
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
+ "observation.state": {
50
+ "dtype": "float32",
51
+ "shape": [
52
+ 7
53
+ ],
54
+ "names": [
55
+ "x",
56
+ "y",
57
+ "z",
58
+ "qw",
59
+ "qx",
60
+ "qy",
61
+ "qz"
62
+ ]
63
+ },
64
+ "observation.wrench": {
65
+ "dtype": "float32",
66
+ "shape": [
67
+ 6
68
+ ],
69
+ "names": [
70
+ "fx",
71
+ "fy",
72
+ "fz",
73
+ "tx",
74
+ "ty",
75
+ "tz"
76
+ ]
77
+ },
78
+ "action": {
79
+ "dtype": "float32",
80
+ "shape": [
81
+ 7
82
+ ],
83
+ "names": [
84
+ "vx",
85
+ "vy",
86
+ "vz",
87
+ "wx",
88
+ "wy",
89
+ "wz",
90
+ "gripper_width"
91
+ ]
92
+ },
93
+ "observation.images.exterior": {
94
+ "dtype": "video",
95
+ "shape": [
96
+ 3,
97
+ 480,
98
+ 640
99
+ ],
100
+ "names": [
101
+ "channels",
102
+ "height",
103
+ "width"
104
+ ],
105
+ "info": {
106
+ "video.height": 480,
107
+ "video.width": 640,
108
+ "video.codec": "av1",
109
+ "video.pix_fmt": "yuv420p",
110
+ "video.is_depth_map": false,
111
+ "video.fps": 30,
112
+ "video.channels": 3,
113
+ "has_audio": false
114
+ }
115
+ },
116
+ "observation.images.wrist": {
117
+ "dtype": "video",
118
+ "shape": [
119
+ 3,
120
+ 480,
121
+ 640
122
+ ],
123
+ "names": [
124
+ "channels",
125
+ "height",
126
+ "width"
127
+ ],
128
+ "info": {
129
+ "video.height": 480,
130
+ "video.width": 640,
131
+ "video.codec": "av1",
132
+ "video.pix_fmt": "yuv420p",
133
+ "video.is_depth_map": false,
134
+ "video.fps": 30,
135
+ "video.channels": 3,
136
+ "has_audio": false
137
+ }
138
+ },
139
+ "timestamp": {
140
+ "dtype": "float32",
141
+ "shape": [
142
+ 1
143
+ ],
144
+ "names": null
145
+ },
146
+ "frame_index": {
147
+ "dtype": "int64",
148
+ "shape": [
149
+ 1
150
+ ],
151
+ "names": null
152
+ },
153
+ "episode_index": {
154
+ "dtype": "int64",
155
+ "shape": [
156
+ 1
157
+ ],
158
+ "names": null
159
+ },
160
+ "index": {
161
+ "dtype": "int64",
162
+ "shape": [
163
+ 1
164
+ ],
165
+ "names": null
166
+ },
167
+ "task_index": {
168
+ "dtype": "int64",
169
+ "shape": [
170
+ 1
171
+ ],
172
+ "names": null
173
+ }
174
+ }
175
+ }
176
+ ```
177
+
178
+
179
+ ## Citation
180
+
181
+ **BibTeX:**
182
+
183
+ ```bibtex
184
+ [More Information Needed]
185
+ ```