Add SCRAPE-IsaacLab dataset card (105 episodes)
Browse files
README.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
+
tags:
|
| 6 |
+
- robotics
|
| 7 |
+
- lerobot
|
| 8 |
+
- so101
|
| 9 |
+
- isaac-lab
|
| 10 |
+
- pick-and-place
|
| 11 |
+
- code-as-policies
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# IsaacLab PickPlaceCube SO-101 — 105 episodes
|
| 15 |
+
|
| 16 |
+
LeRobot v3.0 dataset collected via
|
| 17 |
+
[SCRAPE-IsaacLab](https://github.com/vpraise00/SCRAPE-IsaacLab) — a
|
| 18 |
+
Code-as-Policies replay pipeline running inside Isaac Sim 5.1 / IsaacLab 2.3.2.
|
| 19 |
+
|
| 20 |
+
- **Task**: "Pick up the red block and place it on the blue dish."
|
| 21 |
+
- **Robot**: SO-101 single-arm follower
|
| 22 |
+
- **Observations**: top-view + left-wrist RGB cameras @ 30 fps, 6-DoF joint state
|
| 23 |
+
- **Episodes**: 105 successful episodes (113,970 frames total)
|
| 24 |
+
- **Labels**: per-frame natural-language skill labels in `skill.natural_language`
|
| 25 |
+
and `subtask.*` columns (labeled by Gemini 3.1 flash-lite-preview)
|
| 26 |
+
|
| 27 |
+
5 failed episodes were removed from the original 110-episode collection
|
| 28 |
+
(lerobot indices 46, 52, 54, 74, 106) after manual review and judge filtering.
|
| 29 |
+
|
| 30 |
+
## Load
|
| 31 |
+
|
| 32 |
+
```python
|
| 33 |
+
from datasets import load_dataset
|
| 34 |
+
ds = load_dataset("vpraise00/isaaclab-pickplacecube-so101-105ep", streaming=True)
|
| 35 |
+
```
|
| 36 |
+
|
| 37 |
+
```python
|
| 38 |
+
from lerobot.datasets.lerobot_dataset import LeRobotDataset
|
| 39 |
+
ds = LeRobotDataset("vpraise00/isaaclab-pickplacecube-so101-105ep")
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
## Generation
|
| 43 |
+
|
| 44 |
+
Generated on Isaac Sim 5.1 / IsaacLab 2.3.2 under Python 3.11, CUDA 12.1.
|
| 45 |
+
Skill labels were backfilled post-collection using the same Gemini endpoint
|
| 46 |
+
as the in-line labeler, once per episode (constant-size prompt).
|