aiclaudev commited on
Commit
c3cadf6
·
verified ·
1 Parent(s): 6f4796c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +220 -0
README.md ADDED
@@ -0,0 +1,220 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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=DAVIAN-Robotics/ppp_v1">
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": "franka",
36
+ "total_episodes": 242,
37
+ "total_frames": 90989,
38
+ "total_tasks": 11,
39
+ "chunks_size": 1000,
40
+ "data_files_size_in_mb": 100,
41
+ "video_files_size_in_mb": 200,
42
+ "fps": 20,
43
+ "splits": {
44
+ "train": "0:242"
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
+ 29
53
+ ],
54
+ "names": {
55
+ "axes": [
56
+ "q_0",
57
+ "q_1",
58
+ "q_2",
59
+ "q_3",
60
+ "q_4",
61
+ "q_5",
62
+ "q_6",
63
+ "qdot_0",
64
+ "qdot_1",
65
+ "qdot_2",
66
+ "qdot_3",
67
+ "qdot_4",
68
+ "qdot_5",
69
+ "qdot_6",
70
+ "x",
71
+ "y",
72
+ "z",
73
+ "qx",
74
+ "qy",
75
+ "qz",
76
+ "qw",
77
+ "vx",
78
+ "vy",
79
+ "vz",
80
+ "wx",
81
+ "wy",
82
+ "wz",
83
+ "gripper_position",
84
+ "grasp_state"
85
+ ]
86
+ }
87
+ },
88
+ "action": {
89
+ "dtype": "float32",
90
+ "shape": [
91
+ 7
92
+ ],
93
+ "names": {
94
+ "axes": [
95
+ "dx",
96
+ "dy",
97
+ "dz",
98
+ "rx",
99
+ "ry",
100
+ "rz",
101
+ "gripper"
102
+ ]
103
+ }
104
+ },
105
+ "observation.images.left_back": {
106
+ "dtype": "video",
107
+ "shape": [
108
+ 3,
109
+ 480,
110
+ 640
111
+ ],
112
+ "names": [
113
+ "channels",
114
+ "height",
115
+ "width"
116
+ ],
117
+ "info": {
118
+ "video.height": 480,
119
+ "video.width": 640,
120
+ "video.codec": "av1",
121
+ "video.pix_fmt": "yuv420p",
122
+ "video.is_depth_map": false,
123
+ "video.fps": 20,
124
+ "video.channels": 3,
125
+ "has_audio": false
126
+ }
127
+ },
128
+ "observation.images.wrist": {
129
+ "dtype": "video",
130
+ "shape": [
131
+ 3,
132
+ 480,
133
+ 640
134
+ ],
135
+ "names": [
136
+ "channels",
137
+ "height",
138
+ "width"
139
+ ],
140
+ "info": {
141
+ "video.height": 480,
142
+ "video.width": 640,
143
+ "video.codec": "av1",
144
+ "video.pix_fmt": "yuv420p",
145
+ "video.is_depth_map": false,
146
+ "video.fps": 20,
147
+ "video.channels": 3,
148
+ "has_audio": false
149
+ }
150
+ },
151
+ "observation.images.right_back": {
152
+ "dtype": "video",
153
+ "shape": [
154
+ 3,
155
+ 480,
156
+ 640
157
+ ],
158
+ "names": [
159
+ "channels",
160
+ "height",
161
+ "width"
162
+ ],
163
+ "info": {
164
+ "video.height": 480,
165
+ "video.width": 640,
166
+ "video.codec": "av1",
167
+ "video.pix_fmt": "yuv420p",
168
+ "video.is_depth_map": false,
169
+ "video.fps": 20,
170
+ "video.channels": 3,
171
+ "has_audio": false
172
+ }
173
+ },
174
+ "timestamp": {
175
+ "dtype": "float32",
176
+ "shape": [
177
+ 1
178
+ ],
179
+ "names": null
180
+ },
181
+ "frame_index": {
182
+ "dtype": "int64",
183
+ "shape": [
184
+ 1
185
+ ],
186
+ "names": null
187
+ },
188
+ "episode_index": {
189
+ "dtype": "int64",
190
+ "shape": [
191
+ 1
192
+ ],
193
+ "names": null
194
+ },
195
+ "index": {
196
+ "dtype": "int64",
197
+ "shape": [
198
+ 1
199
+ ],
200
+ "names": null
201
+ },
202
+ "task_index": {
203
+ "dtype": "int64",
204
+ "shape": [
205
+ 1
206
+ ],
207
+ "names": null
208
+ }
209
+ }
210
+ }
211
+ ```
212
+
213
+
214
+ ## Citation
215
+
216
+ **BibTeX:**
217
+
218
+ ```bibtex
219
+ [More Information Needed]
220
+ ```