pmoller commited on
Commit
da1c6be
·
verified ·
1 Parent(s): 88b55af

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +161 -0
README.md ADDED
@@ -0,0 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - lerobot
8
+ - ur5
9
+ configs:
10
+ - config_name: default
11
+ data_files: data/*/*.parquet
12
+ ---
13
+
14
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
15
+
16
+
17
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=pmoller/ww_dataset_zero_delta_eef_v3">
18
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
19
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
20
+ </a>
21
+
22
+
23
+ ## Dataset Description
24
+
25
+
26
+
27
+ - **Homepage:** [More Information Needed]
28
+ - **Paper:** [More Information Needed]
29
+ - **License:** apache-2.0
30
+
31
+ ## Dataset Structure
32
+
33
+ [meta/info.json](meta/info.json):
34
+ ```json
35
+ {
36
+ "codebase_version": "v3.0",
37
+ "robot_type": "ur5",
38
+ "total_episodes": 200,
39
+ "total_frames": 29373,
40
+ "total_tasks": 2,
41
+ "chunks_size": 1000,
42
+ "data_files_size_in_mb": 100,
43
+ "video_files_size_in_mb": 200,
44
+ "fps": 10,
45
+ "splits": {
46
+ "train": "0:200"
47
+ },
48
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
49
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
50
+ "features": {
51
+ "observation.images.front": {
52
+ "dtype": "video",
53
+ "shape": [
54
+ 480,
55
+ 640,
56
+ 3
57
+ ],
58
+ "names": [
59
+ "height",
60
+ "width",
61
+ "channel"
62
+ ],
63
+ "info": {
64
+ "video.height": 480,
65
+ "video.width": 640,
66
+ "video.codec": "av1",
67
+ "video.pix_fmt": "yuv420p",
68
+ "video.is_depth_map": false,
69
+ "video.fps": 10,
70
+ "video.channels": 3,
71
+ "has_audio": false
72
+ }
73
+ },
74
+ "observation.images.wrist": {
75
+ "dtype": "video",
76
+ "shape": [
77
+ 480,
78
+ 640,
79
+ 3
80
+ ],
81
+ "names": [
82
+ "height",
83
+ "width",
84
+ "channel"
85
+ ],
86
+ "info": {
87
+ "video.height": 480,
88
+ "video.width": 640,
89
+ "video.codec": "av1",
90
+ "video.pix_fmt": "yuv420p",
91
+ "video.is_depth_map": false,
92
+ "video.fps": 10,
93
+ "video.channels": 3,
94
+ "has_audio": false
95
+ }
96
+ },
97
+ "observation.state": {
98
+ "dtype": "float32",
99
+ "shape": [
100
+ 7
101
+ ],
102
+ "names": [
103
+ "state"
104
+ ]
105
+ },
106
+ "actions": {
107
+ "dtype": "float32",
108
+ "shape": [
109
+ 7
110
+ ],
111
+ "names": [
112
+ "actions"
113
+ ]
114
+ },
115
+ "timestamp": {
116
+ "dtype": "float32",
117
+ "shape": [
118
+ 1
119
+ ],
120
+ "names": null
121
+ },
122
+ "frame_index": {
123
+ "dtype": "int64",
124
+ "shape": [
125
+ 1
126
+ ],
127
+ "names": null
128
+ },
129
+ "episode_index": {
130
+ "dtype": "int64",
131
+ "shape": [
132
+ 1
133
+ ],
134
+ "names": null
135
+ },
136
+ "index": {
137
+ "dtype": "int64",
138
+ "shape": [
139
+ 1
140
+ ],
141
+ "names": null
142
+ },
143
+ "task_index": {
144
+ "dtype": "int64",
145
+ "shape": [
146
+ 1
147
+ ],
148
+ "names": null
149
+ }
150
+ }
151
+ }
152
+ ```
153
+
154
+
155
+ ## Citation
156
+
157
+ **BibTeX:**
158
+
159
+ ```bibtex
160
+ [More Information Needed]
161
+ ```