BrunoM42 commited on
Commit
bbafe36
·
verified ·
1 Parent(s): 2640f54

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +28 -17
README.md CHANGED
@@ -24,20 +24,18 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
24
  [meta/info.json](meta/info.json):
25
  ```json
26
  {
27
- "codebase_version": "v2.1",
28
  "robot_type": "PandaOmron",
29
  "total_episodes": 501,
30
  "total_frames": 155749,
31
  "total_tasks": 9,
32
- "total_videos": 1503,
33
- "total_chunks": 1,
34
  "chunks_size": 1000,
35
  "fps": 20,
36
  "splits": {
37
  "train": "0:501"
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.robot0_eye_in_hand": {
43
  "dtype": "video",
@@ -133,74 +131,87 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
133
  "dtype": "int64",
134
  "shape": [
135
  1
136
- ]
 
137
  },
138
  "annotation.human.task_name": {
139
  "dtype": "int64",
140
  "shape": [
141
  1
142
- ]
 
143
  },
144
  "observation.state": {
145
  "dtype": "float64",
146
  "shape": [
147
  16
148
- ]
 
149
  },
150
  "action": {
151
  "dtype": "float64",
152
  "shape": [
153
  12
154
- ]
 
155
  },
156
  "next.reward": {
157
  "dtype": "float32",
158
  "shape": [
159
  1
160
- ]
 
161
  },
162
  "next.done": {
163
  "dtype": "bool",
164
  "shape": [
165
  1
166
- ]
 
167
  },
168
  "timestamp": {
169
  "dtype": "float32",
170
  "shape": [
171
  1
172
  ],
173
- "names": null
 
174
  },
175
  "frame_index": {
176
  "dtype": "int64",
177
  "shape": [
178
  1
179
  ],
180
- "names": null
 
181
  },
182
  "episode_index": {
183
  "dtype": "int64",
184
  "shape": [
185
  1
186
  ],
187
- "names": null
 
188
  },
189
  "index": {
190
  "dtype": "int64",
191
  "shape": [
192
  1
193
  ],
194
- "names": null
 
195
  },
196
  "task_index": {
197
  "dtype": "int64",
198
  "shape": [
199
  1
200
  ],
201
- "names": null
 
202
  }
203
- }
 
 
204
  }
205
  ```
206
 
 
24
  [meta/info.json](meta/info.json):
25
  ```json
26
  {
27
+ "codebase_version": "v3.0",
28
  "robot_type": "PandaOmron",
29
  "total_episodes": 501,
30
  "total_frames": 155749,
31
  "total_tasks": 9,
 
 
32
  "chunks_size": 1000,
33
  "fps": 20,
34
  "splits": {
35
  "train": "0:501"
36
  },
37
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
38
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
39
  "features": {
40
  "observation.images.robot0_eye_in_hand": {
41
  "dtype": "video",
 
131
  "dtype": "int64",
132
  "shape": [
133
  1
134
+ ],
135
+ "fps": 20
136
  },
137
  "annotation.human.task_name": {
138
  "dtype": "int64",
139
  "shape": [
140
  1
141
+ ],
142
+ "fps": 20
143
  },
144
  "observation.state": {
145
  "dtype": "float64",
146
  "shape": [
147
  16
148
+ ],
149
+ "fps": 20
150
  },
151
  "action": {
152
  "dtype": "float64",
153
  "shape": [
154
  12
155
+ ],
156
+ "fps": 20
157
  },
158
  "next.reward": {
159
  "dtype": "float32",
160
  "shape": [
161
  1
162
+ ],
163
+ "fps": 20
164
  },
165
  "next.done": {
166
  "dtype": "bool",
167
  "shape": [
168
  1
169
+ ],
170
+ "fps": 20
171
  },
172
  "timestamp": {
173
  "dtype": "float32",
174
  "shape": [
175
  1
176
  ],
177
+ "names": null,
178
+ "fps": 20
179
  },
180
  "frame_index": {
181
  "dtype": "int64",
182
  "shape": [
183
  1
184
  ],
185
+ "names": null,
186
+ "fps": 20
187
  },
188
  "episode_index": {
189
  "dtype": "int64",
190
  "shape": [
191
  1
192
  ],
193
+ "names": null,
194
+ "fps": 20
195
  },
196
  "index": {
197
  "dtype": "int64",
198
  "shape": [
199
  1
200
  ],
201
+ "names": null,
202
+ "fps": 20
203
  },
204
  "task_index": {
205
  "dtype": "int64",
206
  "shape": [
207
  1
208
  ],
209
+ "names": null,
210
+ "fps": 20
211
  }
212
+ },
213
+ "data_files_size_in_mb": 100,
214
+ "video_files_size_in_mb": 200
215
  }
216
  ```
217