Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
task_categories:
|
| 3 |
+
- robotics
|
| 4 |
+
tags:
|
| 5 |
+
- LeRobot
|
| 6 |
+
- g1d
|
| 7 |
+
- teleop
|
| 8 |
+
configs:
|
| 9 |
+
- config_name: default
|
| 10 |
+
data_files: data/*/*.parquet
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# waypoint-test
|
| 14 |
+
|
| 15 |
+
LeRobot v3.0 dataset recorded with the `luxo-summer-camp` teleop stack.
|
| 16 |
+
|
| 17 |
+
- 4 episodes, 3752 frames @ 30 fps
|
| 18 |
+
- `observation.state` / `action`: 26-dim joint positions — names in `meta/info.json`
|
| 19 |
+
- Cameras: `observation.images.head`, `observation.images.left_wrist`, `observation.images.right_wrist`
|
| 20 |
+
|
| 21 |
+
Load with:
|
| 22 |
+
|
| 23 |
+
```python
|
| 24 |
+
from lerobot.datasets.lerobot_dataset import LeRobotDataset
|
| 25 |
+
ds = LeRobotDataset("120ft/waypoint-test")
|
| 26 |
+
```
|