mpark commited on
Commit
a03c8e7
·
verified ·
1 Parent(s): ff54759

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +210 -0
README.md ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "robomimic",
29
+ "total_episodes": 24000,
30
+ "total_frames": 6909580,
31
+ "total_tasks": 340,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 200,
35
+ "fps": 20,
36
+ "splits": {
37
+ "train": "0:24000"
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
+ "shape": [
45
+ 12
46
+ ],
47
+ "names": [
48
+ "action_0",
49
+ "action_1",
50
+ "action_2",
51
+ "action_3",
52
+ "action_4",
53
+ "action_5",
54
+ "action_6",
55
+ "action_7",
56
+ "action_8",
57
+ "action_9",
58
+ "action_10",
59
+ "action_11"
60
+ ]
61
+ },
62
+ "next.done": {
63
+ "dtype": "bool",
64
+ "shape": [
65
+ 1
66
+ ],
67
+ "names": [
68
+ "done"
69
+ ]
70
+ },
71
+ "observation.state": {
72
+ "dtype": "float32",
73
+ "shape": [
74
+ 16
75
+ ],
76
+ "names": [
77
+ "robot0_base_to_eef_pos_0",
78
+ "robot0_base_to_eef_pos_1",
79
+ "robot0_base_to_eef_pos_2",
80
+ "robot0_base_to_eef_quat_0",
81
+ "robot0_base_to_eef_quat_1",
82
+ "robot0_base_to_eef_quat_2",
83
+ "robot0_base_to_eef_quat_3",
84
+ "robot0_gripper_qpos_0",
85
+ "robot0_gripper_qpos_1",
86
+ "robot0_base_pos_0",
87
+ "robot0_base_pos_1",
88
+ "robot0_base_pos_2",
89
+ "robot0_base_quat_0",
90
+ "robot0_base_quat_1",
91
+ "robot0_base_quat_2",
92
+ "robot0_base_quat_3"
93
+ ]
94
+ },
95
+ "observation.images.robot0_agentview_left_image": {
96
+ "dtype": "video",
97
+ "shape": [
98
+ 128,
99
+ 128,
100
+ 3
101
+ ],
102
+ "names": [
103
+ "height",
104
+ "width",
105
+ "channel"
106
+ ],
107
+ "info": {
108
+ "video.height": 128,
109
+ "video.width": 128,
110
+ "video.codec": "av1",
111
+ "video.pix_fmt": "yuv420p",
112
+ "video.is_depth_map": false,
113
+ "video.fps": 20,
114
+ "video.channels": 3,
115
+ "has_audio": false
116
+ }
117
+ },
118
+ "observation.images.robot0_agentview_right_image": {
119
+ "dtype": "video",
120
+ "shape": [
121
+ 128,
122
+ 128,
123
+ 3
124
+ ],
125
+ "names": [
126
+ "height",
127
+ "width",
128
+ "channel"
129
+ ],
130
+ "info": {
131
+ "video.height": 128,
132
+ "video.width": 128,
133
+ "video.codec": "av1",
134
+ "video.pix_fmt": "yuv420p",
135
+ "video.is_depth_map": false,
136
+ "video.fps": 20,
137
+ "video.channels": 3,
138
+ "has_audio": false
139
+ }
140
+ },
141
+ "observation.images.robot0_eye_in_hand_image": {
142
+ "dtype": "video",
143
+ "shape": [
144
+ 128,
145
+ 128,
146
+ 3
147
+ ],
148
+ "names": [
149
+ "height",
150
+ "width",
151
+ "channel"
152
+ ],
153
+ "info": {
154
+ "video.height": 128,
155
+ "video.width": 128,
156
+ "video.codec": "av1",
157
+ "video.pix_fmt": "yuv420p",
158
+ "video.is_depth_map": false,
159
+ "video.fps": 20,
160
+ "video.channels": 3,
161
+ "has_audio": false
162
+ }
163
+ },
164
+ "task_index": {
165
+ "dtype": "int64",
166
+ "shape": [
167
+ 1
168
+ ],
169
+ "names": null
170
+ },
171
+ "timestamp": {
172
+ "dtype": "float32",
173
+ "shape": [
174
+ 1
175
+ ],
176
+ "names": null
177
+ },
178
+ "frame_index": {
179
+ "dtype": "int64",
180
+ "shape": [
181
+ 1
182
+ ],
183
+ "names": null
184
+ },
185
+ "episode_index": {
186
+ "dtype": "int64",
187
+ "shape": [
188
+ 1
189
+ ],
190
+ "names": null
191
+ },
192
+ "index": {
193
+ "dtype": "int64",
194
+ "shape": [
195
+ 1
196
+ ],
197
+ "names": null
198
+ }
199
+ }
200
+ }
201
+ ```
202
+
203
+
204
+ ## Citation
205
+
206
+ **BibTeX:**
207
+
208
+ ```bibtex
209
+ [More Information Needed]
210
+ ```