OpenDriveLab-org commited on
Commit
c13d131
·
verified ·
1 Parent(s): fd5aa11

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +17 -9
README.md CHANGED
@@ -31,14 +31,22 @@ configs:
31
  - [Folder hierarchy](#folder-hierarchy)
32
  - [Details](#details)
33
  - [Download the Dataset](#download-the-dataset)
34
- - [Get Started](#get-started)
35
  - [License and Citation](#license-and-citation)
36
 
37
  # [About the Dataset](#contents)
38
  - This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
39
- - ** hours real world scenarios** across ** ** tasks
40
- - **tasks**
41
- * ff
 
 
 
 
 
 
 
 
42
 
43
  # [Dataset Structure](#contents)
44
 
@@ -187,7 +195,8 @@ the basic struct of the [info.json](#meta/info.json)
187
  | index | [N, 1] | Global unique index across all frames in the dataset |
188
  | task_index | [N, 1] | Index identifying the task type being performed |
189
 
190
-
 
191
  # [Download the Dataset](#contents)
192
  ### Python Script
193
 
@@ -237,10 +246,9 @@ hf download OpenDriveLab-org/kai0 \
237
  --local-dir "/where/you/want/to/save"
238
  ```
239
 
240
- # [Get Started](#contents)
241
- ## Load the dataset
242
 
243
- ### For LeRobot version < 0.4.0
244
 
245
  Choose the appropriate import based on your version:
246
 
@@ -260,7 +268,7 @@ from lerobot.datasets.lerobot_dataset import LeRobotDataset
260
  dataset = LeRobotDataset(repo_id='where/the/dataset/you/stored')
261
  ```
262
 
263
- ### For LeRobot version >= 0.4.0
264
 
265
  You need to migrate the dataset from v2.1 to v3.0 first. See the official documentation: [Migrate the dataset from v2.1 to v3.0](https://huggingface.co/docs/lerobot/lerobot-dataset-v3)
266
 
 
31
  - [Folder hierarchy](#folder-hierarchy)
32
  - [Details](#details)
33
  - [Download the Dataset](#download-the-dataset)
34
+ - [Load the Dataset](#get-started)
35
  - [License and Citation](#license-and-citation)
36
 
37
  # [About the Dataset](#contents)
38
  - This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
39
+ - **~200 hours real world scenarios** across **1** main task, **3** sub tasks
40
+ - A clothing organization task that involves identifying the type of clothing and determining the next action based on its category
41
+ - **sub-tasks**
42
+ - **Folding**
43
+ - Randomly pick a piece of clothing from the basket and place it on the workbench
44
+ - If it is a short T-shirt, fold it
45
+ - **Hanging Preparation**
46
+ - Randomly pick a piece of clothing from the basket and place it on the workbench
47
+ - If it is a dress shirt, locate the collar and drag the clothing to the right side
48
+ - **Hanging**
49
+ - Hang the dress shirt properly
50
 
51
  # [Dataset Structure](#contents)
52
 
 
195
  | index | [N, 1] | Global unique index across all frames in the dataset |
196
  | task_index | [N, 1] | Index identifying the task type being performed |
197
 
198
+ ## [task.jsonl](#meta/tasks.jsonl)
199
+ positive/negitive: Labels indicating the advantage of each frame's action, where "positive" means the action benefits future outcomes and "negative" means otherwise.
200
  # [Download the Dataset](#contents)
201
  ### Python Script
202
 
 
246
  --local-dir "/where/you/want/to/save"
247
  ```
248
 
249
+ # [Load the dataset](#contents)
 
250
 
251
+ ## For LeRobot version < 0.4.0
252
 
253
  Choose the appropriate import based on your version:
254
 
 
268
  dataset = LeRobotDataset(repo_id='where/the/dataset/you/stored')
269
  ```
270
 
271
+ ## For LeRobot version >= 0.4.0
272
 
273
  You need to migrate the dataset from v2.1 to v3.0 first. See the official documentation: [Migrate the dataset from v2.1 to v3.0](https://huggingface.co/docs/lerobot/lerobot-dataset-v3)
274