binhng commited on
Commit
a496669
·
verified ·
1 Parent(s): dce3d71

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +189 -0
README.md ADDED
@@ -0,0 +1,189 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - robotic
8
+ - libero
9
+ - libero_mask
10
+ - libero_spatial
11
+ - libero_spatial_mask
12
+ configs:
13
+ - config_name: default
14
+ data_files: data/*/*.parquet
15
+ ---
16
+
17
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
18
+
19
+ ## Dataset Description
20
+
21
+
22
+
23
+ - **Homepage:** [More Information Needed]
24
+ - **Paper:** [More Information Needed]
25
+ - **License:** apache-2.0
26
+
27
+ ## Dataset Structure
28
+
29
+ [meta/info.json](meta/info.json):
30
+ ```json
31
+ {
32
+ "codebase_version": "v2.1",
33
+ "robot_type": "panda",
34
+ "total_episodes": 500,
35
+ "total_frames": 62250,
36
+ "total_tasks": 10,
37
+ "total_videos": 0,
38
+ "total_chunks": 1,
39
+ "chunks_size": 1000,
40
+ "fps": 10,
41
+ "splits": {
42
+ "train": "0:500"
43
+ },
44
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
45
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
46
+ "features": {
47
+ "observation.images.image": {
48
+ "dtype": "image",
49
+ "shape": [
50
+ 256,
51
+ 256,
52
+ 3
53
+ ],
54
+ "names": [
55
+ "height",
56
+ "width",
57
+ "channel"
58
+ ]
59
+ },
60
+ "observation.images.wrist_image": {
61
+ "dtype": "image",
62
+ "shape": [
63
+ 256,
64
+ 256,
65
+ 3
66
+ ],
67
+ "names": [
68
+ "height",
69
+ "width",
70
+ "channel"
71
+ ]
72
+ },
73
+ "observation.images.image_mask": {
74
+ "dtype": "image",
75
+ "shape": [
76
+ 256,
77
+ 256,
78
+ 3
79
+ ],
80
+ "names": [
81
+ "height",
82
+ "width",
83
+ "channel"
84
+ ]
85
+ },
86
+ "observation.images.wrist_mask": {
87
+ "dtype": "image",
88
+ "shape": [
89
+ 256,
90
+ 256,
91
+ 3
92
+ ],
93
+ "names": [
94
+ "height",
95
+ "width",
96
+ "channel"
97
+ ]
98
+ },
99
+ "observation.state": {
100
+ "dtype": "float32",
101
+ "shape": [
102
+ 8
103
+ ],
104
+ "names": [
105
+ "state"
106
+ ]
107
+ },
108
+ "action": {
109
+ "dtype": "float32",
110
+ "shape": [
111
+ 7
112
+ ],
113
+ "names": [
114
+ "action"
115
+ ]
116
+ },
117
+ "observation.images.object_of_interest_mask": {
118
+ "dtype": "image",
119
+ "shape": [
120
+ 256,
121
+ 256,
122
+ 3
123
+ ],
124
+ "names": [
125
+ "height",
126
+ "width",
127
+ "channel"
128
+ ]
129
+ },
130
+ "observation.images.object_of_interest_wrist_mask": {
131
+ "dtype": "image",
132
+ "shape": [
133
+ 256,
134
+ 256,
135
+ 3
136
+ ],
137
+ "names": [
138
+ "height",
139
+ "width",
140
+ "channel"
141
+ ]
142
+ },
143
+ "timestamp": {
144
+ "dtype": "float32",
145
+ "shape": [
146
+ 1
147
+ ],
148
+ "names": null
149
+ },
150
+ "frame_index": {
151
+ "dtype": "int64",
152
+ "shape": [
153
+ 1
154
+ ],
155
+ "names": null
156
+ },
157
+ "episode_index": {
158
+ "dtype": "int64",
159
+ "shape": [
160
+ 1
161
+ ],
162
+ "names": null
163
+ },
164
+ "index": {
165
+ "dtype": "int64",
166
+ "shape": [
167
+ 1
168
+ ],
169
+ "names": null
170
+ },
171
+ "task_index": {
172
+ "dtype": "int64",
173
+ "shape": [
174
+ 1
175
+ ],
176
+ "names": null
177
+ }
178
+ }
179
+ }
180
+ ```
181
+
182
+
183
+ ## Citation
184
+
185
+ **BibTeX:**
186
+
187
+ ```bibtex
188
+ [More Information Needed]
189
+ ```