Henry-Ellis commited on
Commit
0dbfe8d
·
verified ·
1 Parent(s): fd7d0c8

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +205 -0
README.md ADDED
@@ -0,0 +1,205 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ## Dataset Description
15
+
16
+
17
+
18
+ - **Homepage:** [More Information Needed]
19
+ - **Paper:** [More Information Needed]
20
+ - **License:** apache-2.0
21
+
22
+ ## Dataset Structure
23
+
24
+ [meta/info.json](meta/info.json):
25
+ ```json
26
+ {
27
+ "codebase_version": "v2.0",
28
+ "robot_type": "Unitree_Z1_Dual",
29
+ "total_episodes": 331,
30
+ "total_frames": 443144,
31
+ "total_tasks": 1,
32
+ "total_videos": 993,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:331"
38
+ },
39
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
40
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
41
+ "features": {
42
+ "observation.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 14
46
+ ],
47
+ "names": [
48
+ [
49
+ "left_waist",
50
+ "left_shoulder",
51
+ "left_elbow",
52
+ "left_forearm_roll",
53
+ "left_wrist_angle",
54
+ "left_wrist_rotate",
55
+ "left_gripper",
56
+ "right_waist",
57
+ "right_shoulder",
58
+ "right_elbow",
59
+ "right_forearm_roll",
60
+ "right_wrist_angle",
61
+ "right_wrist_rotate",
62
+ "right_gripper"
63
+ ]
64
+ ]
65
+ },
66
+ "action": {
67
+ "dtype": "float32",
68
+ "shape": [
69
+ 14
70
+ ],
71
+ "names": [
72
+ [
73
+ "left_waist",
74
+ "left_shoulder",
75
+ "left_elbow",
76
+ "left_forearm_roll",
77
+ "left_wrist_angle",
78
+ "left_wrist_rotate",
79
+ "left_gripper",
80
+ "right_waist",
81
+ "right_shoulder",
82
+ "right_elbow",
83
+ "right_forearm_roll",
84
+ "right_wrist_angle",
85
+ "right_wrist_rotate",
86
+ "right_gripper"
87
+ ]
88
+ ]
89
+ },
90
+ "observation.images.cam_high": {
91
+ "dtype": "video",
92
+ "shape": [
93
+ 3,
94
+ 480,
95
+ 640
96
+ ],
97
+ "names": [
98
+ "channels",
99
+ "height",
100
+ "width"
101
+ ],
102
+ "info": {
103
+ "video.fps": 30.0,
104
+ "video.height": 480,
105
+ "video.width": 640,
106
+ "video.channels": 3,
107
+ "video.codec": "av1",
108
+ "video.pix_fmt": "yuv420p",
109
+ "video.is_depth_map": false,
110
+ "has_audio": false
111
+ }
112
+ },
113
+ "observation.images.cam_left_wrist": {
114
+ "dtype": "video",
115
+ "shape": [
116
+ 3,
117
+ 480,
118
+ 640
119
+ ],
120
+ "names": [
121
+ "channels",
122
+ "height",
123
+ "width"
124
+ ],
125
+ "info": {
126
+ "video.fps": 30.0,
127
+ "video.height": 480,
128
+ "video.width": 640,
129
+ "video.channels": 3,
130
+ "video.codec": "av1",
131
+ "video.pix_fmt": "yuv420p",
132
+ "video.is_depth_map": false,
133
+ "has_audio": false
134
+ }
135
+ },
136
+ "observation.images.cam_right_wrist": {
137
+ "dtype": "video",
138
+ "shape": [
139
+ 3,
140
+ 480,
141
+ 640
142
+ ],
143
+ "names": [
144
+ "channels",
145
+ "height",
146
+ "width"
147
+ ],
148
+ "info": {
149
+ "video.fps": 30.0,
150
+ "video.height": 480,
151
+ "video.width": 640,
152
+ "video.channels": 3,
153
+ "video.codec": "av1",
154
+ "video.pix_fmt": "yuv420p",
155
+ "video.is_depth_map": false,
156
+ "has_audio": false
157
+ }
158
+ },
159
+ "timestamp": {
160
+ "dtype": "float32",
161
+ "shape": [
162
+ 1
163
+ ],
164
+ "names": null
165
+ },
166
+ "frame_index": {
167
+ "dtype": "int64",
168
+ "shape": [
169
+ 1
170
+ ],
171
+ "names": null
172
+ },
173
+ "episode_index": {
174
+ "dtype": "int64",
175
+ "shape": [
176
+ 1
177
+ ],
178
+ "names": null
179
+ },
180
+ "index": {
181
+ "dtype": "int64",
182
+ "shape": [
183
+ 1
184
+ ],
185
+ "names": null
186
+ },
187
+ "task_index": {
188
+ "dtype": "int64",
189
+ "shape": [
190
+ 1
191
+ ],
192
+ "names": null
193
+ }
194
+ }
195
+ }
196
+ ```
197
+
198
+
199
+ ## Citation
200
+
201
+ **BibTeX:**
202
+
203
+ ```bibtex
204
+ [More Information Needed]
205
+ ```