poohlin93 commited on
Commit
1121c4b
·
verified ·
1 Parent(s): 9c0f322

Upload README.md with huggingface_hub

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