TetraxCode commited on
Commit
01ac099
·
verified ·
1 Parent(s): 6f67ad5

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +208 -0
README.md ADDED
@@ -0,0 +1,208 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - openarm
8
+ - bimanual
9
+ - pick-and-place
10
+ configs:
11
+ - config_name: default
12
+ data_files: data/*/*.parquet
13
+ ---
14
+
15
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
16
+
17
+ ## Dataset Description
18
+
19
+
20
+
21
+ - **Homepage:** [More Information Needed]
22
+ - **Paper:** [More Information Needed]
23
+ - **License:** apache-2.0
24
+
25
+ ## Dataset Structure
26
+
27
+ [meta/info.json](meta/info.json):
28
+ ```json
29
+ {
30
+ "codebase_version": "v3.0",
31
+ "robot_type": "openarm_bimanual",
32
+ "total_episodes": 100,
33
+ "total_frames": 44661,
34
+ "total_tasks": 6,
35
+ "chunks_size": 1000,
36
+ "data_files_size_in_mb": 100,
37
+ "video_files_size_in_mb": 200,
38
+ "fps": 30,
39
+ "splits": {
40
+ "train": "0:100"
41
+ },
42
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
43
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
44
+ "features": {
45
+ "observation.state": {
46
+ "dtype": "float32",
47
+ "shape": [
48
+ 16
49
+ ],
50
+ "names": [
51
+ "joint_0",
52
+ "joint_1",
53
+ "joint_2",
54
+ "joint_3",
55
+ "joint_4",
56
+ "joint_5",
57
+ "joint_6",
58
+ "joint_7",
59
+ "joint_8",
60
+ "joint_9",
61
+ "joint_10",
62
+ "joint_11",
63
+ "joint_12",
64
+ "joint_13",
65
+ "joint_14",
66
+ "joint_15"
67
+ ]
68
+ },
69
+ "action": {
70
+ "dtype": "float32",
71
+ "shape": [
72
+ 16
73
+ ],
74
+ "names": [
75
+ "action_joint_0",
76
+ "action_joint_1",
77
+ "action_joint_2",
78
+ "action_joint_3",
79
+ "action_joint_4",
80
+ "action_joint_5",
81
+ "action_joint_6",
82
+ "action_joint_7",
83
+ "action_joint_8",
84
+ "action_joint_9",
85
+ "action_joint_10",
86
+ "action_joint_11",
87
+ "action_joint_12",
88
+ "action_joint_13",
89
+ "action_joint_14",
90
+ "action_joint_15"
91
+ ]
92
+ },
93
+ "observation.images.camera1": {
94
+ "dtype": "video",
95
+ "shape": [
96
+ 480,
97
+ 640,
98
+ 3
99
+ ],
100
+ "names": [
101
+ "height",
102
+ "width",
103
+ "channels"
104
+ ],
105
+ "info": {
106
+ "video.height": 480,
107
+ "video.width": 640,
108
+ "video.codec": "av1",
109
+ "video.pix_fmt": "yuv420p",
110
+ "video.is_depth_map": false,
111
+ "video.fps": 30,
112
+ "video.channels": 3,
113
+ "has_audio": false
114
+ }
115
+ },
116
+ "observation.images.camera2": {
117
+ "dtype": "video",
118
+ "shape": [
119
+ 480,
120
+ 640,
121
+ 3
122
+ ],
123
+ "names": [
124
+ "height",
125
+ "width",
126
+ "channels"
127
+ ],
128
+ "info": {
129
+ "video.height": 480,
130
+ "video.width": 640,
131
+ "video.codec": "av1",
132
+ "video.pix_fmt": "yuv420p",
133
+ "video.is_depth_map": false,
134
+ "video.fps": 30,
135
+ "video.channels": 3,
136
+ "has_audio": false
137
+ }
138
+ },
139
+ "observation.images.camera3": {
140
+ "dtype": "video",
141
+ "shape": [
142
+ 480,
143
+ 640,
144
+ 3
145
+ ],
146
+ "names": [
147
+ "height",
148
+ "width",
149
+ "channels"
150
+ ],
151
+ "info": {
152
+ "video.height": 480,
153
+ "video.width": 640,
154
+ "video.codec": "av1",
155
+ "video.pix_fmt": "yuv420p",
156
+ "video.is_depth_map": false,
157
+ "video.fps": 30,
158
+ "video.channels": 3,
159
+ "has_audio": false
160
+ }
161
+ },
162
+ "timestamp": {
163
+ "dtype": "float32",
164
+ "shape": [
165
+ 1
166
+ ],
167
+ "names": null
168
+ },
169
+ "frame_index": {
170
+ "dtype": "int64",
171
+ "shape": [
172
+ 1
173
+ ],
174
+ "names": null
175
+ },
176
+ "episode_index": {
177
+ "dtype": "int64",
178
+ "shape": [
179
+ 1
180
+ ],
181
+ "names": null
182
+ },
183
+ "index": {
184
+ "dtype": "int64",
185
+ "shape": [
186
+ 1
187
+ ],
188
+ "names": null
189
+ },
190
+ "task_index": {
191
+ "dtype": "int64",
192
+ "shape": [
193
+ 1
194
+ ],
195
+ "names": null
196
+ }
197
+ }
198
+ }
199
+ ```
200
+
201
+
202
+ ## Citation
203
+
204
+ **BibTeX:**
205
+
206
+ ```bibtex
207
+ [More Information Needed]
208
+ ```