skyang0 commited on
Commit
2452af1
·
verified ·
1 Parent(s): dc64b05

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +193 -0
README.md ADDED
@@ -0,0 +1,193 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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=skyang0/can_task">
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": 30,
37
+ "total_frames": 2736,
38
+ "total_tasks": 1,
39
+ "chunks_size": 1000,
40
+ "data_files_size_in_mb": 100,
41
+ "video_files_size_in_mb": 200,
42
+ "fps": 10,
43
+ "splits": {
44
+ "train": "0:30"
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": "float64",
51
+ "shape": [
52
+ 13
53
+ ],
54
+ "names": {
55
+ "motors": [
56
+ "right_x",
57
+ "right_y",
58
+ "right_z",
59
+ "right_q1",
60
+ "right_q2",
61
+ "right_q3",
62
+ "right_q4",
63
+ "right_g1",
64
+ "right_g2",
65
+ "right_g3",
66
+ "right_g4",
67
+ "right_g5",
68
+ "right_g6"
69
+ ]
70
+ }
71
+ },
72
+ "observation.images.front": {
73
+ "dtype": "video",
74
+ "shape": [
75
+ 84,
76
+ 84,
77
+ 3
78
+ ],
79
+ "names": [
80
+ "width",
81
+ "height",
82
+ "channels"
83
+ ],
84
+ "info": {
85
+ "video.fps": 10.0,
86
+ "video.height": 84,
87
+ "video.width": 84,
88
+ "video.channels": 3,
89
+ "video.codec": "av1",
90
+ "video.pix_fmt": "yuv420p",
91
+ "video.is_depth_map": false,
92
+ "has_audio": false
93
+ }
94
+ },
95
+ "observation.images.wrist": {
96
+ "dtype": "video",
97
+ "shape": [
98
+ 84,
99
+ 84,
100
+ 3
101
+ ],
102
+ "names": [
103
+ "width",
104
+ "height",
105
+ "channels"
106
+ ],
107
+ "info": {
108
+ "video.fps": 10.0,
109
+ "video.height": 84,
110
+ "video.width": 84,
111
+ "video.channels": 3,
112
+ "video.codec": "av1",
113
+ "video.pix_fmt": "yuv420p",
114
+ "video.is_depth_map": false,
115
+ "has_audio": false
116
+ }
117
+ },
118
+ "done": {
119
+ "dtype": "bool",
120
+ "shape": [
121
+ 1
122
+ ]
123
+ },
124
+ "reward": {
125
+ "dtype": "float64",
126
+ "shape": [
127
+ 1
128
+ ]
129
+ },
130
+ "action": {
131
+ "dtype": "float64",
132
+ "shape": [
133
+ 7
134
+ ],
135
+ "names": {
136
+ "motors": [
137
+ "right_x",
138
+ "right_y",
139
+ "right_z",
140
+ "right_r",
141
+ "right_p",
142
+ "right_y",
143
+ "right_gripper"
144
+ ]
145
+ }
146
+ },
147
+ "timestamp": {
148
+ "dtype": "float32",
149
+ "shape": [
150
+ 1
151
+ ],
152
+ "names": null
153
+ },
154
+ "frame_index": {
155
+ "dtype": "int64",
156
+ "shape": [
157
+ 1
158
+ ],
159
+ "names": null
160
+ },
161
+ "episode_index": {
162
+ "dtype": "int64",
163
+ "shape": [
164
+ 1
165
+ ],
166
+ "names": null
167
+ },
168
+ "index": {
169
+ "dtype": "int64",
170
+ "shape": [
171
+ 1
172
+ ],
173
+ "names": null
174
+ },
175
+ "task_index": {
176
+ "dtype": "int64",
177
+ "shape": [
178
+ 1
179
+ ],
180
+ "names": null
181
+ }
182
+ }
183
+ }
184
+ ```
185
+
186
+
187
+ ## Citation
188
+
189
+ **BibTeX:**
190
+
191
+ ```bibtex
192
+ [More Information Needed]
193
+ ```