k1000dai commited on
Commit
fbff32b
·
verified ·
1 Parent(s): 0afb6ca

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +24 -18
README.md CHANGED
@@ -4,9 +4,6 @@ task_categories:
4
  - robotics
5
  tags:
6
  - LeRobot
7
- - libero
8
- - panda
9
- - rlds
10
  configs:
11
  - config_name: default
12
  data_files: data/*/*.parquet
@@ -27,20 +24,18 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
27
  [meta/info.json](meta/info.json):
28
  ```json
29
  {
30
- "codebase_version": "v2.1",
31
  "robot_type": "panda",
32
  "total_episodes": 432,
33
  "total_frames": 52970,
34
  "total_tasks": 10,
35
- "total_videos": 0,
36
- "total_chunks": 1,
37
  "chunks_size": 1000,
38
  "fps": 10,
39
  "splits": {
40
  "train": "0:432"
41
  },
42
- "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
43
- "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
44
  "features": {
45
  "observation.images.image": {
46
  "dtype": "image",
@@ -53,7 +48,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
53
  "height",
54
  "width",
55
  "channel"
56
- ]
 
57
  },
58
  "observation.images.wrist_image": {
59
  "dtype": "image",
@@ -66,7 +62,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
66
  "height",
67
  "width",
68
  "channel"
69
- ]
 
70
  },
71
  "observation.state": {
72
  "dtype": "float32",
@@ -75,7 +72,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
75
  ],
76
  "names": [
77
  "state"
78
- ]
 
79
  },
80
  "action": {
81
  "dtype": "float32",
@@ -84,44 +82,52 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
84
  ],
85
  "names": [
86
  "action"
87
- ]
 
88
  },
89
  "timestamp": {
90
  "dtype": "float32",
91
  "shape": [
92
  1
93
  ],
94
- "names": null
 
95
  },
96
  "frame_index": {
97
  "dtype": "int64",
98
  "shape": [
99
  1
100
  ],
101
- "names": null
 
102
  },
103
  "episode_index": {
104
  "dtype": "int64",
105
  "shape": [
106
  1
107
  ],
108
- "names": null
 
109
  },
110
  "index": {
111
  "dtype": "int64",
112
  "shape": [
113
  1
114
  ],
115
- "names": null
 
116
  },
117
  "task_index": {
118
  "dtype": "int64",
119
  "shape": [
120
  1
121
  ],
122
- "names": null
 
123
  }
124
- }
 
 
125
  }
126
  ```
127
 
 
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": "panda",
29
  "total_episodes": 432,
30
  "total_frames": 52970,
31
  "total_tasks": 10,
 
 
32
  "chunks_size": 1000,
33
  "fps": 10,
34
  "splits": {
35
  "train": "0:432"
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.image": {
41
  "dtype": "image",
 
48
  "height",
49
  "width",
50
  "channel"
51
+ ],
52
+ "fps": 10
53
  },
54
  "observation.images.wrist_image": {
55
  "dtype": "image",
 
62
  "height",
63
  "width",
64
  "channel"
65
+ ],
66
+ "fps": 10
67
  },
68
  "observation.state": {
69
  "dtype": "float32",
 
72
  ],
73
  "names": [
74
  "state"
75
+ ],
76
+ "fps": 10
77
  },
78
  "action": {
79
  "dtype": "float32",
 
82
  ],
83
  "names": [
84
  "action"
85
+ ],
86
+ "fps": 10
87
  },
88
  "timestamp": {
89
  "dtype": "float32",
90
  "shape": [
91
  1
92
  ],
93
+ "names": null,
94
+ "fps": 10
95
  },
96
  "frame_index": {
97
  "dtype": "int64",
98
  "shape": [
99
  1
100
  ],
101
+ "names": null,
102
+ "fps": 10
103
  },
104
  "episode_index": {
105
  "dtype": "int64",
106
  "shape": [
107
  1
108
  ],
109
+ "names": null,
110
+ "fps": 10
111
  },
112
  "index": {
113
  "dtype": "int64",
114
  "shape": [
115
  1
116
  ],
117
+ "names": null,
118
+ "fps": 10
119
  },
120
  "task_index": {
121
  "dtype": "int64",
122
  "shape": [
123
  1
124
  ],
125
+ "names": null,
126
+ "fps": 10
127
  }
128
+ },
129
+ "data_files_size_in_mb": 100,
130
+ "video_files_size_in_mb": 200
131
  }
132
  ```
133