ceilingfan456 commited on
Commit
a8fed3d
·
verified ·
1 Parent(s): a4df4f6

Upload README.md with huggingface_hub

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