Sombit commited on
Commit
39ef9ed
·
verified ·
1 Parent(s): ab33475

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +215 -0
README.md ADDED
@@ -0,0 +1,215 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "generic_robot",
29
+ "total_episodes": 43,
30
+ "total_frames": 36436,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 200,
35
+ "fps": 5,
36
+ "splits": {
37
+ "train": "0:43"
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
+ "observation.images.main": {
43
+ "dtype": "video",
44
+ "shape": [
45
+ 480,
46
+ 640,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channels"
53
+ ],
54
+ "info": {
55
+ "video.height": 480,
56
+ "video.width": 640,
57
+ "video.codec": "h264",
58
+ "video.pix_fmt": "yuv420p",
59
+ "video.is_depth_map": false,
60
+ "video.fps": 5,
61
+ "video.channels": 3,
62
+ "has_audio": false
63
+ }
64
+ },
65
+ "observation.images.wrist": {
66
+ "dtype": "video",
67
+ "shape": [
68
+ 720,
69
+ 1280,
70
+ 3
71
+ ],
72
+ "names": [
73
+ "height",
74
+ "width",
75
+ "channels"
76
+ ],
77
+ "info": {
78
+ "video.height": 720,
79
+ "video.width": 1280,
80
+ "video.codec": "h264",
81
+ "video.pix_fmt": "yuv420p",
82
+ "video.is_depth_map": false,
83
+ "video.fps": 5,
84
+ "video.channels": 3,
85
+ "has_audio": false
86
+ }
87
+ },
88
+ "observation.state.joints": {
89
+ "dtype": "float32",
90
+ "shape": [
91
+ 7
92
+ ],
93
+ "names": {
94
+ "axes": [
95
+ "joint_0",
96
+ "joint_1",
97
+ "joint_2",
98
+ "joint_3",
99
+ "joint_4",
100
+ "joint_5",
101
+ "joint_6"
102
+ ]
103
+ }
104
+ },
105
+ "observation.state.eef_pose": {
106
+ "dtype": "float32",
107
+ "shape": [
108
+ 7
109
+ ],
110
+ "names": {
111
+ "axes": [
112
+ "x",
113
+ "y",
114
+ "z",
115
+ "qw",
116
+ "qx",
117
+ "qy",
118
+ "qz"
119
+ ]
120
+ }
121
+ },
122
+ "observation.state.gripper": {
123
+ "dtype": "float32",
124
+ "shape": [
125
+ 1
126
+ ],
127
+ "names": {
128
+ "axes": [
129
+ "gripper"
130
+ ]
131
+ }
132
+ },
133
+ "observation.state": {
134
+ "dtype": "float32",
135
+ "shape": [
136
+ 8
137
+ ],
138
+ "names": {
139
+ "axes": [
140
+ "joint_0",
141
+ "joint_1",
142
+ "joint_2",
143
+ "joint_3",
144
+ "joint_4",
145
+ "joint_5",
146
+ "joint_6",
147
+ "gripper"
148
+ ]
149
+ }
150
+ },
151
+ "action": {
152
+ "dtype": "float32",
153
+ "shape": [
154
+ 8
155
+ ],
156
+ "names": {
157
+ "axes": [
158
+ "joint_0",
159
+ "joint_1",
160
+ "joint_2",
161
+ "joint_3",
162
+ "joint_4",
163
+ "joint_5",
164
+ "joint_6",
165
+ "gripper"
166
+ ]
167
+ }
168
+ },
169
+ "timestamp": {
170
+ "dtype": "float32",
171
+ "shape": [
172
+ 1
173
+ ],
174
+ "names": null
175
+ },
176
+ "frame_index": {
177
+ "dtype": "int64",
178
+ "shape": [
179
+ 1
180
+ ],
181
+ "names": null
182
+ },
183
+ "episode_index": {
184
+ "dtype": "int64",
185
+ "shape": [
186
+ 1
187
+ ],
188
+ "names": null
189
+ },
190
+ "index": {
191
+ "dtype": "int64",
192
+ "shape": [
193
+ 1
194
+ ],
195
+ "names": null
196
+ },
197
+ "task_index": {
198
+ "dtype": "int64",
199
+ "shape": [
200
+ 1
201
+ ],
202
+ "names": null
203
+ }
204
+ }
205
+ }
206
+ ```
207
+
208
+
209
+ ## Citation
210
+
211
+ **BibTeX:**
212
+
213
+ ```bibtex
214
+ [More Information Needed]
215
+ ```