InternetSandwich33 commited on
Commit
dbfa6f7
·
verified ·
1 Parent(s): 2dfbe8a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +207 -0
README.md ADDED
@@ -0,0 +1,207 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v3.0",
28
+ "robot_type": "grievous_client",
29
+ "total_episodes": 5,
30
+ "total_frames": 3333,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 500,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:5"
38
+ },
39
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
40
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
41
+ "features": {
42
+ "action": {
43
+ "dtype": "float32",
44
+ "names": [
45
+ "left_arm_shoulder_pan.pos",
46
+ "left_arm_shoulder_lift.pos",
47
+ "left_arm_elbow_flex.pos",
48
+ "left_arm_wrist_flex.pos",
49
+ "left_arm_wrist_roll.pos",
50
+ "left_arm_gripper.pos",
51
+ "right_arm_shoulder_pan.pos",
52
+ "right_arm_shoulder_lift.pos",
53
+ "right_arm_elbow_flex.pos",
54
+ "right_arm_wrist_flex.pos",
55
+ "right_arm_wrist_roll.pos",
56
+ "right_arm_gripper.pos",
57
+ "head_motor_1.pos",
58
+ "head_motor_2.pos",
59
+ "x.vel",
60
+ "y.vel",
61
+ "theta.vel"
62
+ ],
63
+ "shape": [
64
+ 17
65
+ ]
66
+ },
67
+ "observation.state": {
68
+ "dtype": "float32",
69
+ "names": [
70
+ "left_arm_shoulder_pan.pos",
71
+ "left_arm_shoulder_lift.pos",
72
+ "left_arm_elbow_flex.pos",
73
+ "left_arm_wrist_flex.pos",
74
+ "left_arm_wrist_roll.pos",
75
+ "left_arm_gripper.pos",
76
+ "right_arm_shoulder_pan.pos",
77
+ "right_arm_shoulder_lift.pos",
78
+ "right_arm_elbow_flex.pos",
79
+ "right_arm_wrist_flex.pos",
80
+ "right_arm_wrist_roll.pos",
81
+ "right_arm_gripper.pos",
82
+ "head_motor_1.pos",
83
+ "head_motor_2.pos",
84
+ "x.vel",
85
+ "y.vel",
86
+ "theta.vel"
87
+ ],
88
+ "shape": [
89
+ 17
90
+ ]
91
+ },
92
+ "observation.images.left_wrist": {
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.right_wrist": {
116
+ "dtype": "video",
117
+ "shape": [
118
+ 480,
119
+ 640,
120
+ 3
121
+ ],
122
+ "names": [
123
+ "height",
124
+ "width",
125
+ "channels"
126
+ ],
127
+ "info": {
128
+ "video.height": 480,
129
+ "video.width": 640,
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
+ "observation.images.head": {
139
+ "dtype": "video",
140
+ "shape": [
141
+ 720,
142
+ 1280,
143
+ 3
144
+ ],
145
+ "names": [
146
+ "height",
147
+ "width",
148
+ "channels"
149
+ ],
150
+ "info": {
151
+ "video.height": 720,
152
+ "video.width": 1280,
153
+ "video.codec": "av1",
154
+ "video.pix_fmt": "yuv420p",
155
+ "video.is_depth_map": false,
156
+ "video.fps": 30,
157
+ "video.channels": 3,
158
+ "has_audio": false
159
+ }
160
+ },
161
+ "timestamp": {
162
+ "dtype": "float32",
163
+ "shape": [
164
+ 1
165
+ ],
166
+ "names": null
167
+ },
168
+ "frame_index": {
169
+ "dtype": "int64",
170
+ "shape": [
171
+ 1
172
+ ],
173
+ "names": null
174
+ },
175
+ "episode_index": {
176
+ "dtype": "int64",
177
+ "shape": [
178
+ 1
179
+ ],
180
+ "names": null
181
+ },
182
+ "index": {
183
+ "dtype": "int64",
184
+ "shape": [
185
+ 1
186
+ ],
187
+ "names": null
188
+ },
189
+ "task_index": {
190
+ "dtype": "int64",
191
+ "shape": [
192
+ 1
193
+ ],
194
+ "names": null
195
+ }
196
+ }
197
+ }
198
+ ```
199
+
200
+
201
+ ## Citation
202
+
203
+ **BibTeX:**
204
+
205
+ ```bibtex
206
+ [More Information Needed]
207
+ ```