ykorkmaz commited on
Commit
8a69e96
·
verified ·
1 Parent(s): 0c57020

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +66 -22
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,19 +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": 0,
32
- "total_frames": 0,
33
- "total_tasks": 0,
34
- "total_videos": 0,
35
- "total_chunks": 0,
36
  "chunks_size": 1000,
37
  "fps": 30,
38
- "splits": {},
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
  "action": {
43
  "dtype": "float32",
@@ -59,7 +58,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
59
  "right_joint_4",
60
  "right_joint_5",
61
  "right_joint_6"
62
- ]
 
63
  },
64
  "observation.state": {
65
  "dtype": "float32",
@@ -81,7 +81,8 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
81
  "right_joint_4",
82
  "right_joint_5",
83
  "right_joint_6"
84
- ]
 
85
  },
86
  "observation.images.cam_high": {
87
  "dtype": "video",
@@ -95,7 +96,16 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
95
  "width",
96
  "channels"
97
  ],
98
- "info": null
 
 
 
 
 
 
 
 
 
99
  },
100
  "observation.images.cam_low": {
101
  "dtype": "video",
@@ -109,7 +119,16 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
109
  "width",
110
  "channels"
111
  ],
112
- "info": null
 
 
 
 
 
 
 
 
 
113
  },
114
  "observation.images.cam_left_wrist": {
115
  "dtype": "video",
@@ -123,7 +142,16 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
123
  "width",
124
  "channels"
125
  ],
126
- "info": null
 
 
 
 
 
 
 
 
 
127
  },
128
  "observation.images.cam_right_wrist": {
129
  "dtype": "video",
@@ -137,44 +165,60 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
137
  "width",
138
  "channels"
139
  ],
140
- "info": null
 
 
 
 
 
 
 
 
 
141
  },
142
  "timestamp": {
143
  "dtype": "float32",
144
  "shape": [
145
  1
146
  ],
147
- "names": null
 
148
  },
149
  "frame_index": {
150
  "dtype": "int64",
151
  "shape": [
152
  1
153
  ],
154
- "names": null
 
155
  },
156
  "episode_index": {
157
  "dtype": "int64",
158
  "shape": [
159
  1
160
  ],
161
- "names": null
 
162
  },
163
  "index": {
164
  "dtype": "int64",
165
  "shape": [
166
  1
167
  ],
168
- "names": null
 
169
  },
170
  "task_index": {
171
  "dtype": "int64",
172
  "shape": [
173
  1
174
  ],
175
- "names": null
 
176
  }
177
- }
 
 
178
  }
179
  ```
180
 
 
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": 3,
31
+ "total_frames": 929,
32
+ "total_tasks": 1,
 
 
33
  "chunks_size": 1000,
34
  "fps": 30,
35
+ "splits": {
36
+ "train": "0:3"
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",
 
96
  "width",
97
  "channels"
98
  ],
99
+ "info": {
100
+ "video.fps": 30.0,
101
+ "video.height": 480,
102
+ "video.width": 640,
103
+ "video.channels": 3,
104
+ "video.codec": "av1",
105
+ "video.pix_fmt": "yuv420p",
106
+ "video.is_depth_map": false,
107
+ "has_audio": false
108
+ }
109
  },
110
  "observation.images.cam_low": {
111
  "dtype": "video",
 
119
  "width",
120
  "channels"
121
  ],
122
+ "info": {
123
+ "video.fps": 30.0,
124
+ "video.height": 480,
125
+ "video.width": 640,
126
+ "video.channels": 3,
127
+ "video.codec": "av1",
128
+ "video.pix_fmt": "yuv420p",
129
+ "video.is_depth_map": false,
130
+ "has_audio": false
131
+ }
132
  },
133
  "observation.images.cam_left_wrist": {
134
  "dtype": "video",
 
142
  "width",
143
  "channels"
144
  ],
145
+ "info": {
146
+ "video.fps": 30.0,
147
+ "video.height": 480,
148
+ "video.width": 640,
149
+ "video.channels": 3,
150
+ "video.codec": "av1",
151
+ "video.pix_fmt": "yuv420p",
152
+ "video.is_depth_map": false,
153
+ "has_audio": false
154
+ }
155
  },
156
  "observation.images.cam_right_wrist": {
157
  "dtype": "video",
 
165
  "width",
166
  "channels"
167
  ],
168
+ "info": {
169
+ "video.fps": 30.0,
170
+ "video.height": 480,
171
+ "video.width": 640,
172
+ "video.channels": 3,
173
+ "video.codec": "av1",
174
+ "video.pix_fmt": "yuv420p",
175
+ "video.is_depth_map": false,
176
+ "has_audio": false
177
+ }
178
  },
179
  "timestamp": {
180
  "dtype": "float32",
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