jdoo2 commited on
Commit
4d1a120
·
verified ·
1 Parent(s): 1422e78

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +197 -0
README.md ADDED
@@ -0,0 +1,197 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v2.1",
28
+ "robot_type": "Panda",
29
+ "total_episodes": 108,
30
+ "total_frames": 44097,
31
+ "total_tasks": 1,
32
+ "total_videos": 324,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 15,
36
+ "splits": {
37
+ "train": "0:108"
38
+ },
39
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
40
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
41
+ "features": {
42
+ "observation.images.exterior_image_1_left": {
43
+ "dtype": "video",
44
+ "shape": [
45
+ 180,
46
+ 320,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channel"
53
+ ],
54
+ "video_info": {
55
+ "video.height": 180,
56
+ "video.width": 320,
57
+ "video.codec": "h264",
58
+ "video.pix_fmt": "yuv420p",
59
+ "video.is_depth_map": false,
60
+ "video.fps": 15,
61
+ "video.channels": 3,
62
+ "has_audio": false
63
+ }
64
+ },
65
+ "observation.images.exterior_image_2_left": {
66
+ "dtype": "video",
67
+ "shape": [
68
+ 180,
69
+ 320,
70
+ 3
71
+ ],
72
+ "names": [
73
+ "height",
74
+ "width",
75
+ "channel"
76
+ ],
77
+ "video_info": {
78
+ "video.height": 180,
79
+ "video.width": 320,
80
+ "video.codec": "h264",
81
+ "video.pix_fmt": "yuv420p",
82
+ "video.is_depth_map": false,
83
+ "video.fps": 15,
84
+ "video.channels": 3,
85
+ "has_audio": false
86
+ }
87
+ },
88
+ "observation.images.wrist_image_left": {
89
+ "dtype": "video",
90
+ "shape": [
91
+ 180,
92
+ 320,
93
+ 3
94
+ ],
95
+ "names": [
96
+ "height",
97
+ "width",
98
+ "channel"
99
+ ],
100
+ "video_info": {
101
+ "video.height": 180,
102
+ "video.width": 320,
103
+ "video.codec": "h264",
104
+ "video.pix_fmt": "yuv420p",
105
+ "video.is_depth_map": false,
106
+ "video.fps": 15,
107
+ "video.channels": 3,
108
+ "has_audio": false
109
+ }
110
+ },
111
+ "joint_position": {
112
+ "dtype": "float32",
113
+ "shape": [
114
+ 7
115
+ ],
116
+ "names": [
117
+ "joint_0",
118
+ "joint_1",
119
+ "joint_2",
120
+ "joint_3",
121
+ "joint_4",
122
+ "joint_5",
123
+ "joint_6"
124
+ ]
125
+ },
126
+ "gripper_position": {
127
+ "dtype": "float32",
128
+ "shape": [
129
+ 1
130
+ ],
131
+ "names": [
132
+ "gripper_position"
133
+ ]
134
+ },
135
+ "actions": {
136
+ "dtype": "float32",
137
+ "shape": [
138
+ 8
139
+ ],
140
+ "names": [
141
+ "joint_vel_0",
142
+ "joint_vel_1",
143
+ "joint_vel_2",
144
+ "joint_vel_3",
145
+ "joint_vel_4",
146
+ "joint_vel_5",
147
+ "joint_vel_6",
148
+ "gripper"
149
+ ]
150
+ },
151
+ "timestamp": {
152
+ "dtype": "float32",
153
+ "shape": [
154
+ 1
155
+ ],
156
+ "names": null
157
+ },
158
+ "frame_index": {
159
+ "dtype": "int64",
160
+ "shape": [
161
+ 1
162
+ ],
163
+ "names": null
164
+ },
165
+ "episode_index": {
166
+ "dtype": "int64",
167
+ "shape": [
168
+ 1
169
+ ],
170
+ "names": null
171
+ },
172
+ "index": {
173
+ "dtype": "int64",
174
+ "shape": [
175
+ 1
176
+ ],
177
+ "names": null
178
+ },
179
+ "task_index": {
180
+ "dtype": "int64",
181
+ "shape": [
182
+ 1
183
+ ],
184
+ "names": null
185
+ }
186
+ }
187
+ }
188
+ ```
189
+
190
+
191
+ ## Citation
192
+
193
+ **BibTeX:**
194
+
195
+ ```bibtex
196
+ [More Information Needed]
197
+ ```