kowyo commited on
Commit
8cd3af5
·
verified ·
1 Parent(s): 93a20b8

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +175 -0
README.md ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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=kowyo/plugin-v2">
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": "panda",
36
+ "total_episodes": 126,
37
+ "total_frames": 47659,
38
+ "total_tasks": 1,
39
+ "chunks_size": 1000,
40
+ "fps": 15,
41
+ "splits": {
42
+ "train": "0:126"
43
+ },
44
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
45
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
46
+ "features": {
47
+ "observation.images.image": {
48
+ "dtype": "image",
49
+ "shape": [
50
+ 224,
51
+ 224,
52
+ 3
53
+ ],
54
+ "names": [
55
+ "height",
56
+ "width",
57
+ "channel"
58
+ ],
59
+ "fps": 15
60
+ },
61
+ "observation.images.wrist_image": {
62
+ "dtype": "image",
63
+ "shape": [
64
+ 224,
65
+ 224,
66
+ 3
67
+ ],
68
+ "names": [
69
+ "height",
70
+ "width",
71
+ "channel"
72
+ ],
73
+ "fps": 15
74
+ },
75
+ "observation.images.left_image": {
76
+ "dtype": "image",
77
+ "shape": [
78
+ 224,
79
+ 224,
80
+ 3
81
+ ],
82
+ "names": [
83
+ "height",
84
+ "width",
85
+ "channel"
86
+ ],
87
+ "fps": 15
88
+ },
89
+ "observation.state": {
90
+ "dtype": "float32",
91
+ "shape": [
92
+ 8
93
+ ],
94
+ "names": [
95
+ "x",
96
+ "y",
97
+ "z",
98
+ "roll",
99
+ "pitch",
100
+ "yaw",
101
+ "gripper",
102
+ "gripper"
103
+ ],
104
+ "fps": 15
105
+ },
106
+ "action": {
107
+ "dtype": "float32",
108
+ "shape": [
109
+ 7
110
+ ],
111
+ "names": [
112
+ "delta_x",
113
+ "delta_y",
114
+ "delta_z",
115
+ "delta_roll",
116
+ "delta_pitch",
117
+ "delta_yaw",
118
+ "gripper"
119
+ ],
120
+ "fps": 15
121
+ },
122
+ "timestamp": {
123
+ "dtype": "float32",
124
+ "shape": [
125
+ 1
126
+ ],
127
+ "names": null,
128
+ "fps": 15
129
+ },
130
+ "frame_index": {
131
+ "dtype": "int64",
132
+ "shape": [
133
+ 1
134
+ ],
135
+ "names": null,
136
+ "fps": 15
137
+ },
138
+ "episode_index": {
139
+ "dtype": "int64",
140
+ "shape": [
141
+ 1
142
+ ],
143
+ "names": null,
144
+ "fps": 15
145
+ },
146
+ "index": {
147
+ "dtype": "int64",
148
+ "shape": [
149
+ 1
150
+ ],
151
+ "names": null,
152
+ "fps": 15
153
+ },
154
+ "task_index": {
155
+ "dtype": "int64",
156
+ "shape": [
157
+ 1
158
+ ],
159
+ "names": null,
160
+ "fps": 15
161
+ }
162
+ },
163
+ "data_files_size_in_mb": 100,
164
+ "video_files_size_in_mb": 200
165
+ }
166
+ ```
167
+
168
+
169
+ ## Citation
170
+
171
+ **BibTeX:**
172
+
173
+ ```bibtex
174
+ [More Information Needed]
175
+ ```