VoicAndrei commited on
Commit
bb94bfa
·
verified ·
1 Parent(s): 379f5b8

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +24 -19
README.md CHANGED
@@ -4,8 +4,6 @@ task_categories:
4
  - robotics
5
  tags:
6
  - LeRobot
7
- - so100
8
- - tutorial
9
  configs:
10
  - config_name: default
11
  data_files: data/*/*.parquet
@@ -26,20 +24,18 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
26
  [meta/info.json](meta/info.json):
27
  ```json
28
  {
29
- "codebase_version": "v2.1",
30
  "robot_type": "so100",
31
- "total_episodes": 5,
32
- "total_frames": 7388,
33
- "total_tasks": 1,
34
- "total_videos": 15,
35
- "total_chunks": 1,
36
  "chunks_size": 1000,
37
  "fps": 30,
38
  "splits": {
39
- "train": "0:5"
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",
@@ -53,7 +49,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
53
  "main_wrist_flex",
54
  "main_wrist_roll",
55
  "main_gripper"
56
- ]
 
57
  },
58
  "observation.state": {
59
  "dtype": "float32",
@@ -67,7 +64,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
67
  "main_wrist_flex",
68
  "main_wrist_roll",
69
  "main_gripper"
70
- ]
 
71
  },
72
  "observation.images.right": {
73
  "dtype": "video",
@@ -143,37 +141,44 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
143
  "shape": [
144
  1
145
  ],
146
- "names": null
 
147
  },
148
  "frame_index": {
149
  "dtype": "int64",
150
  "shape": [
151
  1
152
  ],
153
- "names": null
 
154
  },
155
  "episode_index": {
156
  "dtype": "int64",
157
  "shape": [
158
  1
159
  ],
160
- "names": null
 
161
  },
162
  "index": {
163
  "dtype": "int64",
164
  "shape": [
165
  1
166
  ],
167
- "names": null
 
168
  },
169
  "task_index": {
170
  "dtype": "int64",
171
  "shape": [
172
  1
173
  ],
174
- "names": null
 
175
  }
176
- }
 
 
177
  }
178
  ```
179
 
 
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
  "robot_type": "so100",
29
+ "total_episodes": 150,
30
+ "total_frames": 159495,
31
+ "total_tasks": 2,
 
 
32
  "chunks_size": 1000,
33
  "fps": 30,
34
  "splits": {
35
+ "train": "0:150"
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
  "action": {
41
  "dtype": "float32",
 
49
  "main_wrist_flex",
50
  "main_wrist_roll",
51
  "main_gripper"
52
+ ],
53
+ "fps": 30
54
  },
55
  "observation.state": {
56
  "dtype": "float32",
 
64
  "main_wrist_flex",
65
  "main_wrist_roll",
66
  "main_gripper"
67
+ ],
68
+ "fps": 30
69
  },
70
  "observation.images.right": {
71
  "dtype": "video",
 
141
  "shape": [
142
  1
143
  ],
144
+ "names": null,
145
+ "fps": 30
146
  },
147
  "frame_index": {
148
  "dtype": "int64",
149
  "shape": [
150
  1
151
  ],
152
+ "names": null,
153
+ "fps": 30
154
  },
155
  "episode_index": {
156
  "dtype": "int64",
157
  "shape": [
158
  1
159
  ],
160
+ "names": null,
161
+ "fps": 30
162
  },
163
  "index": {
164
  "dtype": "int64",
165
  "shape": [
166
  1
167
  ],
168
+ "names": null,
169
+ "fps": 30
170
  },
171
  "task_index": {
172
  "dtype": "int64",
173
  "shape": [
174
  1
175
  ],
176
+ "names": null,
177
+ "fps": 30
178
  }
179
+ },
180
+ "data_files_size_in_mb": 100,
181
+ "video_files_size_in_mb": 500
182
  }
183
  ```
184