Yosmon commited on
Commit
4c896bd
·
verified ·
1 Parent(s): 790eaa4

Upload README.md with huggingface_hub

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