cadene HF staff commited on
Commit
d8b272a
·
verified ·
1 Parent(s): 14c2e79

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +192 -0
README.md ADDED
@@ -0,0 +1,192 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "franka",
29
+ "total_episodes": 49,
30
+ "total_frames": 12634,
31
+ "total_tasks": 25,
32
+ "total_videos": 147,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 15,
36
+ "splits": {
37
+ "train": "0:49"
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
+ "rgb"
53
+ ],
54
+ "info": {
55
+ "video.fps": 15.0,
56
+ "video.height": 180,
57
+ "video.width": 320,
58
+ "video.channels": 3,
59
+ "video.codec": "av1",
60
+ "video.pix_fmt": "yuv420p",
61
+ "video.is_depth_map": false,
62
+ "has_audio": false
63
+ }
64
+ },
65
+ "observation.images.wrist_image_left": {
66
+ "dtype": "video",
67
+ "shape": [
68
+ 180,
69
+ 320,
70
+ 3
71
+ ],
72
+ "names": [
73
+ "height",
74
+ "width",
75
+ "rgb"
76
+ ],
77
+ "info": {
78
+ "video.fps": 15.0,
79
+ "video.height": 180,
80
+ "video.width": 320,
81
+ "video.channels": 3,
82
+ "video.codec": "av1",
83
+ "video.pix_fmt": "yuv420p",
84
+ "video.is_depth_map": false,
85
+ "has_audio": false
86
+ }
87
+ },
88
+ "observation.images.exterior_image_2_left": {
89
+ "dtype": "video",
90
+ "shape": [
91
+ 180,
92
+ 320,
93
+ 3
94
+ ],
95
+ "names": [
96
+ "height",
97
+ "width",
98
+ "rgb"
99
+ ],
100
+ "info": {
101
+ "video.fps": 15.0,
102
+ "video.height": 180,
103
+ "video.width": 320,
104
+ "video.channels": 3,
105
+ "video.codec": "av1",
106
+ "video.pix_fmt": "yuv420p",
107
+ "video.is_depth_map": false,
108
+ "has_audio": false
109
+ }
110
+ },
111
+ "observation.state": {
112
+ "dtype": "float32",
113
+ "shape": [
114
+ 8
115
+ ],
116
+ "names": {
117
+ "motors": [
118
+ "x",
119
+ "y",
120
+ "z",
121
+ "rx",
122
+ "ry",
123
+ "rz",
124
+ "rw",
125
+ "gripper"
126
+ ]
127
+ }
128
+ },
129
+ "action": {
130
+ "dtype": "float32",
131
+ "shape": [
132
+ 7
133
+ ],
134
+ "names": {
135
+ "motors": [
136
+ "x",
137
+ "y",
138
+ "z",
139
+ "roll",
140
+ "pitch",
141
+ "yaw",
142
+ "gripper"
143
+ ]
144
+ }
145
+ },
146
+ "timestamp": {
147
+ "dtype": "float32",
148
+ "shape": [
149
+ 1
150
+ ],
151
+ "names": null
152
+ },
153
+ "frame_index": {
154
+ "dtype": "int64",
155
+ "shape": [
156
+ 1
157
+ ],
158
+ "names": null
159
+ },
160
+ "episode_index": {
161
+ "dtype": "int64",
162
+ "shape": [
163
+ 1
164
+ ],
165
+ "names": null
166
+ },
167
+ "index": {
168
+ "dtype": "int64",
169
+ "shape": [
170
+ 1
171
+ ],
172
+ "names": null
173
+ },
174
+ "task_index": {
175
+ "dtype": "int64",
176
+ "shape": [
177
+ 1
178
+ ],
179
+ "names": null
180
+ }
181
+ }
182
+ }
183
+ ```
184
+
185
+
186
+ ## Citation
187
+
188
+ **BibTeX:**
189
+
190
+ ```bibtex
191
+ [More Information Needed]
192
+ ```