Sendera commited on
Commit
125b468
·
verified ·
1 Parent(s): 603980d

Upload README.md with huggingface_hub

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