ykorkmaz commited on
Commit
e5790e7
·
verified ·
1 Parent(s): b623bf2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +20 -14
README.md CHANGED
@@ -4,7 +4,6 @@ task_categories:
4
  - robotics
5
  tags:
6
  - LeRobot
7
- - tutorial
8
  configs:
9
  - config_name: default
10
  data_files: data/*/*.parquet
@@ -25,21 +24,19 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
25
  [meta/info.json](meta/info.json):
26
  ```json
27
  {
28
- "codebase_version": "v2.1",
29
  "trossen_subversion": "v1.0",
30
  "robot_type": "trossen_ai_stationary",
31
  "total_episodes": 2,
32
  "total_frames": 569,
33
  "total_tasks": 1,
34
- "total_videos": 8,
35
- "total_chunks": 1,
36
  "chunks_size": 1000,
37
  "fps": 30,
38
  "splits": {
39
  "train": "0:2"
40
  },
41
- "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
42
- "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
43
  "features": {
44
  "action": {
45
  "dtype": "float32",
@@ -61,7 +58,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
61
  "right_joint_4",
62
  "right_joint_5",
63
  "right_joint_6"
64
- ]
 
65
  },
66
  "observation.state": {
67
  "dtype": "float32",
@@ -83,7 +81,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
83
  "right_joint_4",
84
  "right_joint_5",
85
  "right_joint_6"
86
- ]
 
87
  },
88
  "observation.images.cam_high": {
89
  "dtype": "video",
@@ -182,37 +181,44 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
182
  "shape": [
183
  1
184
  ],
185
- "names": null
 
186
  },
187
  "frame_index": {
188
  "dtype": "int64",
189
  "shape": [
190
  1
191
  ],
192
- "names": null
 
193
  },
194
  "episode_index": {
195
  "dtype": "int64",
196
  "shape": [
197
  1
198
  ],
199
- "names": null
 
200
  },
201
  "index": {
202
  "dtype": "int64",
203
  "shape": [
204
  1
205
  ],
206
- "names": null
 
207
  },
208
  "task_index": {
209
  "dtype": "int64",
210
  "shape": [
211
  1
212
  ],
213
- "names": null
 
214
  }
215
- }
 
 
216
  }
217
  ```
218
 
 
4
  - robotics
5
  tags:
6
  - LeRobot
 
7
  configs:
8
  - config_name: default
9
  data_files: data/*/*.parquet
 
24
  [meta/info.json](meta/info.json):
25
  ```json
26
  {
27
+ "codebase_version": "v3.0",
28
  "trossen_subversion": "v1.0",
29
  "robot_type": "trossen_ai_stationary",
30
  "total_episodes": 2,
31
  "total_frames": 569,
32
  "total_tasks": 1,
 
 
33
  "chunks_size": 1000,
34
  "fps": 30,
35
  "splits": {
36
  "train": "0:2"
37
  },
38
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
39
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
40
  "features": {
41
  "action": {
42
  "dtype": "float32",
 
58
  "right_joint_4",
59
  "right_joint_5",
60
  "right_joint_6"
61
+ ],
62
+ "fps": 30
63
  },
64
  "observation.state": {
65
  "dtype": "float32",
 
81
  "right_joint_4",
82
  "right_joint_5",
83
  "right_joint_6"
84
+ ],
85
+ "fps": 30
86
  },
87
  "observation.images.cam_high": {
88
  "dtype": "video",
 
181
  "shape": [
182
  1
183
  ],
184
+ "names": null,
185
+ "fps": 30
186
  },
187
  "frame_index": {
188
  "dtype": "int64",
189
  "shape": [
190
  1
191
  ],
192
+ "names": null,
193
+ "fps": 30
194
  },
195
  "episode_index": {
196
  "dtype": "int64",
197
  "shape": [
198
  1
199
  ],
200
+ "names": null,
201
+ "fps": 30
202
  },
203
  "index": {
204
  "dtype": "int64",
205
  "shape": [
206
  1
207
  ],
208
+ "names": null,
209
+ "fps": 30
210
  },
211
  "task_index": {
212
  "dtype": "int64",
213
  "shape": [
214
  1
215
  ],
216
+ "names": null,
217
+ "fps": 30
218
  }
219
+ },
220
+ "data_files_size_in_mb": 100,
221
+ "video_files_size_in_mb": 200
222
  }
223
  ```
224