Add README with task list and source attribution
Browse files
README.md
CHANGED
|
@@ -1,3 +1,58 @@
|
|
| 1 |
-
---
|
| 2 |
-
license:
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
+
tags:
|
| 6 |
+
- LeRobot
|
| 7 |
+
- ur3
|
| 8 |
+
- manipulation
|
| 9 |
+
- imitation-learning
|
| 10 |
+
configs:
|
| 11 |
+
- config_name: default
|
| 12 |
+
data_files: data/*/*.parquet
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# ur3-merged-5tasks-v2
|
| 16 |
+
|
| 17 |
+
A multi-task UR3 manipulation dataset in LeRobot v2.1 format, merged from
|
| 18 |
+
five source datasets covering pick-and-place, unstacking, multi-item
|
| 19 |
+
sorting, and pushing primitives.
|
| 20 |
+
|
| 21 |
+
## Tasks
|
| 22 |
+
|
| 23 |
+
| task_index | description |
|
| 24 |
+
|:----------:|:------------|
|
| 25 |
+
| 0 | pick up the pink cylinder and place it in the orange box |
|
| 26 |
+
| 1 | pick up the white glass and put on a brown coaster |
|
| 27 |
+
| 2 | Remove cup from nested cups |
|
| 28 |
+
| 3 | pick multiple items then put in the orange basket |
|
| 29 |
+
| 4 | Single-finger push to blue marker |
|
| 30 |
+
|
| 31 |
+
## Source datasets
|
| 32 |
+
|
| 33 |
+
This dataset was assembled by merging the following:
|
| 34 |
+
|
| 35 |
+
- [`zestcode5/ur3-pink-cylinder-6D`](https://huggingface.co/datasets/zestcode5/ur3-pink-cylinder-6D) - base; provides task 0
|
| 36 |
+
- [`zestcode5/ur3-multiple-task-trimmed-idle`](https://huggingface.co/datasets/zestcode5/ur3-multiple-task-trimmed-idle) - split into per-task subsets; provides tasks 1, 2, 4
|
| 37 |
+
- [`zestcode5/ur3-multiple-item-basket-trimmed`](https://huggingface.co/datasets/zestcode5/ur3-multiple-item-basket-trimmed) - provides task 3
|
| 38 |
+
|
| 39 |
+
The schema, fps, and camera configuration follow the base dataset.
|
| 40 |
+
|
| 41 |
+
## Format
|
| 42 |
+
|
| 43 |
+
- LeRobot v2.1
|
| 44 |
+
- Robot: UR3
|
| 45 |
+
- One parquet file per episode under `data/chunk-*/`
|
| 46 |
+
- One mp4 file per camera per episode under `videos/chunk-*/<camera>/`
|
| 47 |
+
- Episode metadata in `meta/episodes.jsonl`, task list in `meta/tasks.jsonl`,
|
| 48 |
+
per-episode stats in `meta/episodes_stats.jsonl`
|
| 49 |
+
|
| 50 |
+
## Loading
|
| 51 |
+
|
| 52 |
+
```python
|
| 53 |
+
from lerobot.common.datasets.lerobot_dataset import LeRobotDataset
|
| 54 |
+
|
| 55 |
+
ds = LeRobotDataset("zestcode5/ur3-merged-5tasks-v2")
|
| 56 |
+
print(ds.num_episodes, ds.num_frames, ds.fps)
|
| 57 |
+
sample = ds[0]
|
| 58 |
+
```
|