ola31 commited on
Commit
34a7bcd
·
verified ·
1 Parent(s): bd2d963

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +23 -18
README.md CHANGED
@@ -4,8 +4,6 @@ task_categories:
4
  - robotics
5
  tags:
6
  - LeRobot
7
- - ffw_bg2_rev4
8
- - robotis
9
  configs:
10
  - config_name: default
11
  data_files: data/*/*.parquet
@@ -26,55 +24,58 @@ 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": "ffw_bg2_rev4",
31
- "total_episodes": 2,
32
- "total_frames": 873,
33
  "total_tasks": 1,
34
- "total_videos": 8,
35
- "total_chunks": 1,
36
  "chunks_size": 1000,
37
  "fps": 10,
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
  "timestamp": {
45
  "dtype": "float32",
46
  "shape": [
47
  1
48
  ],
49
- "names": null
 
50
  },
51
  "frame_index": {
52
  "dtype": "int64",
53
  "shape": [
54
  1
55
  ],
56
- "names": null
 
57
  },
58
  "episode_index": {
59
  "dtype": "int64",
60
  "shape": [
61
  1
62
  ],
63
- "names": null
 
64
  },
65
  "index": {
66
  "dtype": "int64",
67
  "shape": [
68
  1
69
  ],
70
- "names": null
 
71
  },
72
  "task_index": {
73
  "dtype": "int64",
74
  "shape": [
75
  1
76
  ],
77
- "names": null
 
78
  },
79
  "observation.images.cam_head": {
80
  "dtype": "video",
@@ -181,7 +182,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
181
  ],
182
  "shape": [
183
  19
184
- ]
 
185
  },
186
  "action": {
187
  "dtype": "float32",
@@ -208,9 +210,12 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
208
  ],
209
  "shape": [
210
  19
211
- ]
 
212
  }
213
- }
 
 
214
  }
215
  ```
216
 
 
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": "ffw_bg2_rev4",
29
+ "total_episodes": 10,
30
+ "total_frames": 9034,
31
  "total_tasks": 1,
 
 
32
  "chunks_size": 1000,
33
  "fps": 10,
34
  "splits": {
35
+ "train": "0:10"
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
  "timestamp": {
41
  "dtype": "float32",
42
  "shape": [
43
  1
44
  ],
45
+ "names": null,
46
+ "fps": 10
47
  },
48
  "frame_index": {
49
  "dtype": "int64",
50
  "shape": [
51
  1
52
  ],
53
+ "names": null,
54
+ "fps": 10
55
  },
56
  "episode_index": {
57
  "dtype": "int64",
58
  "shape": [
59
  1
60
  ],
61
+ "names": null,
62
+ "fps": 10
63
  },
64
  "index": {
65
  "dtype": "int64",
66
  "shape": [
67
  1
68
  ],
69
+ "names": null,
70
+ "fps": 10
71
  },
72
  "task_index": {
73
  "dtype": "int64",
74
  "shape": [
75
  1
76
  ],
77
+ "names": null,
78
+ "fps": 10
79
  },
80
  "observation.images.cam_head": {
81
  "dtype": "video",
 
182
  ],
183
  "shape": [
184
  19
185
+ ],
186
+ "fps": 10
187
  },
188
  "action": {
189
  "dtype": "float32",
 
210
  ],
211
  "shape": [
212
  19
213
+ ],
214
+ "fps": 10
215
  }
216
+ },
217
+ "data_files_size_in_mb": 100,
218
+ "video_files_size_in_mb": 500
219
  }
220
  ```
221