gary-ginzburg-sr commited on
Commit
9fba7d8
·
verified ·
1 Parent(s): f017594

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +195 -0
README.md ADDED
@@ -0,0 +1,195 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "xarm",
29
+ "total_episodes": 1,
30
+ "total_frames": 220,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 200,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:1"
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
+ "delta_x",
46
+ "delta_y",
47
+ "delta_z",
48
+ "delta_rx",
49
+ "delta_ry",
50
+ "delta_rz",
51
+ "gripper"
52
+ ],
53
+ "shape": [
54
+ 7
55
+ ]
56
+ },
57
+ "observation.state": {
58
+ "dtype": "float32",
59
+ "names": [
60
+ "joint1.pos",
61
+ "joint2.pos",
62
+ "joint3.pos",
63
+ "joint4.pos",
64
+ "joint5.pos",
65
+ "joint6.pos",
66
+ "gripper.pos",
67
+ "aa.x",
68
+ "aa.y",
69
+ "aa.z",
70
+ "aa.rx",
71
+ "aa.ry",
72
+ "aa.rz",
73
+ "prev.delta_x",
74
+ "prev.delta_y",
75
+ "prev.delta_z",
76
+ "prev.delta_rx",
77
+ "prev.delta_ry",
78
+ "prev.delta_rz",
79
+ "prev.gripper",
80
+ "joint1.vel",
81
+ "joint2.vel",
82
+ "joint3.vel",
83
+ "joint4.vel",
84
+ "joint5.vel",
85
+ "joint6.vel",
86
+ "joint1.acc",
87
+ "joint2.acc",
88
+ "joint3.acc",
89
+ "joint4.acc",
90
+ "joint5.acc",
91
+ "joint6.acc",
92
+ "joint1.effort",
93
+ "joint2.effort",
94
+ "joint3.effort",
95
+ "joint4.effort",
96
+ "joint5.effort",
97
+ "joint6.effort"
98
+ ],
99
+ "shape": [
100
+ 38
101
+ ]
102
+ },
103
+ "observation.images.front": {
104
+ "dtype": "video",
105
+ "shape": [
106
+ 540,
107
+ 960,
108
+ 3
109
+ ],
110
+ "names": [
111
+ "height",
112
+ "width",
113
+ "channels"
114
+ ],
115
+ "info": {
116
+ "video.height": 540,
117
+ "video.width": 960,
118
+ "video.codec": "av1",
119
+ "video.pix_fmt": "yuv420p",
120
+ "video.is_depth_map": false,
121
+ "video.fps": 30,
122
+ "video.channels": 3,
123
+ "has_audio": false
124
+ }
125
+ },
126
+ "observation.images.wrist": {
127
+ "dtype": "video",
128
+ "shape": [
129
+ 480,
130
+ 640,
131
+ 3
132
+ ],
133
+ "names": [
134
+ "height",
135
+ "width",
136
+ "channels"
137
+ ],
138
+ "info": {
139
+ "video.height": 480,
140
+ "video.width": 640,
141
+ "video.codec": "av1",
142
+ "video.pix_fmt": "yuv420p",
143
+ "video.is_depth_map": false,
144
+ "video.fps": 30,
145
+ "video.channels": 3,
146
+ "has_audio": false
147
+ }
148
+ },
149
+ "timestamp": {
150
+ "dtype": "float32",
151
+ "shape": [
152
+ 1
153
+ ],
154
+ "names": null
155
+ },
156
+ "frame_index": {
157
+ "dtype": "int64",
158
+ "shape": [
159
+ 1
160
+ ],
161
+ "names": null
162
+ },
163
+ "episode_index": {
164
+ "dtype": "int64",
165
+ "shape": [
166
+ 1
167
+ ],
168
+ "names": null
169
+ },
170
+ "index": {
171
+ "dtype": "int64",
172
+ "shape": [
173
+ 1
174
+ ],
175
+ "names": null
176
+ },
177
+ "task_index": {
178
+ "dtype": "int64",
179
+ "shape": [
180
+ 1
181
+ ],
182
+ "names": null
183
+ }
184
+ }
185
+ }
186
+ ```
187
+
188
+
189
+ ## Citation
190
+
191
+ **BibTeX:**
192
+
193
+ ```bibtex
194
+ [More Information Needed]
195
+ ```