liyitenga commited on
Commit
6c13738
·
verified ·
1 Parent(s): 36d8a74

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +184 -0
README.md ADDED
@@ -0,0 +1,184 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.1",
28
+ "robot_type": "lekiwi_client",
29
+ "total_episodes": 3,
30
+ "total_frames": 1485,
31
+ "total_tasks": 1,
32
+ "total_videos": 6,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:3"
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
+ "action": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 17
46
+ ],
47
+ "names": [
48
+ "left_shoulder_pan.pos",
49
+ "left_shoulder_lift.pos",
50
+ "left_elbow_flex.pos",
51
+ "left_wrist_flex.pos",
52
+ "left_wrist_yaw.pos",
53
+ "left_wrist_roll.pos",
54
+ "left_gripper.pos",
55
+ "right_shoulder_pan.pos",
56
+ "right_shoulder_lift.pos",
57
+ "right_elbow_flex.pos",
58
+ "right_wrist_flex.pos",
59
+ "right_wrist_yaw.pos",
60
+ "right_wrist_roll.pos",
61
+ "right_gripper.pos",
62
+ "x.vel",
63
+ "y.vel",
64
+ "theta.vel"
65
+ ]
66
+ },
67
+ "observation.state": {
68
+ "dtype": "float32",
69
+ "shape": [
70
+ 17
71
+ ],
72
+ "names": [
73
+ "left_shoulder_pan.pos",
74
+ "left_shoulder_lift.pos",
75
+ "left_elbow_flex.pos",
76
+ "left_wrist_flex.pos",
77
+ "left_wrist_yaw.pos",
78
+ "left_wrist_roll.pos",
79
+ "left_gripper.pos",
80
+ "right_shoulder_pan.pos",
81
+ "right_shoulder_lift.pos",
82
+ "right_elbow_flex.pos",
83
+ "right_wrist_flex.pos",
84
+ "right_wrist_yaw.pos",
85
+ "right_wrist_roll.pos",
86
+ "right_gripper.pos",
87
+ "x.vel",
88
+ "y.vel",
89
+ "theta.vel"
90
+ ]
91
+ },
92
+ "observation.images.front": {
93
+ "dtype": "video",
94
+ "shape": [
95
+ 480,
96
+ 640,
97
+ 3
98
+ ],
99
+ "names": [
100
+ "height",
101
+ "width",
102
+ "channels"
103
+ ],
104
+ "info": {
105
+ "video.height": 480,
106
+ "video.width": 640,
107
+ "video.codec": "av1",
108
+ "video.pix_fmt": "yuv420p",
109
+ "video.is_depth_map": false,
110
+ "video.fps": 30,
111
+ "video.channels": 3,
112
+ "has_audio": false
113
+ }
114
+ },
115
+ "observation.images.wrist": {
116
+ "dtype": "video",
117
+ "shape": [
118
+ 640,
119
+ 480,
120
+ 3
121
+ ],
122
+ "names": [
123
+ "height",
124
+ "width",
125
+ "channels"
126
+ ],
127
+ "info": {
128
+ "video.height": 640,
129
+ "video.width": 480,
130
+ "video.codec": "av1",
131
+ "video.pix_fmt": "yuv420p",
132
+ "video.is_depth_map": false,
133
+ "video.fps": 30,
134
+ "video.channels": 3,
135
+ "has_audio": false
136
+ }
137
+ },
138
+ "timestamp": {
139
+ "dtype": "float32",
140
+ "shape": [
141
+ 1
142
+ ],
143
+ "names": null
144
+ },
145
+ "frame_index": {
146
+ "dtype": "int64",
147
+ "shape": [
148
+ 1
149
+ ],
150
+ "names": null
151
+ },
152
+ "episode_index": {
153
+ "dtype": "int64",
154
+ "shape": [
155
+ 1
156
+ ],
157
+ "names": null
158
+ },
159
+ "index": {
160
+ "dtype": "int64",
161
+ "shape": [
162
+ 1
163
+ ],
164
+ "names": null
165
+ },
166
+ "task_index": {
167
+ "dtype": "int64",
168
+ "shape": [
169
+ 1
170
+ ],
171
+ "names": null
172
+ }
173
+ }
174
+ }
175
+ ```
176
+
177
+
178
+ ## Citation
179
+
180
+ **BibTeX:**
181
+
182
+ ```bibtex
183
+ [More Information Needed]
184
+ ```