Add dataset card with metadata and usage instructions
Browse files
README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
+
tags:
|
| 6 |
+
- LeRobot
|
| 7 |
+
- lerobot
|
| 8 |
+
- avatar-robotics
|
| 9 |
+
- bin-picking
|
| 10 |
+
- suction-gripper
|
| 11 |
+
configs:
|
| 12 |
+
- config_name: default
|
| 13 |
+
data_files: data/*/*.parquet
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
|
| 17 |
+
|
| 18 |
+
## Dataset Description
|
| 19 |
+
|
| 20 |
+
**Robot:** Agibot G1 humanoid robot
|
| 21 |
+
**Task:** Bin picking with suction gripper — pick up items from a bin and place in a moving box or bag
|
| 22 |
+
**Episodes:** 325
|
| 23 |
+
**Total Frames:** 102525
|
| 24 |
+
**FPS:** 30
|
| 25 |
+
**Format:** LeRobot v3.0
|
| 26 |
+
|
| 27 |
+
V2 with enriched features: EE pose, velocity, other-arm state, and success labels.
|
| 28 |
+
|
| 29 |
+
### Cameras
|
| 30 |
+
- `observation.images.camera` — Camera camera (1280x800)
|
| 31 |
+
- `observation.images.wrist` — Wrist camera (1280x720)
|
| 32 |
+
|
| 33 |
+
### Features
|
| 34 |
+
| Feature | Type | Shape |
|
| 35 |
+
|---------|------|-------|
|
| 36 |
+
| `observation.state` | float32 | [8] |
|
| 37 |
+
| `action` | float32 | [8] |
|
| 38 |
+
| `observation.images.camera` | video | [800, 1280, 3] |
|
| 39 |
+
| `observation.images.wrist` | video | [720, 1280, 3] |
|
| 40 |
+
| `observation.force` | float32 | [6] |
|
| 41 |
+
| `observation.state_other` | float32 | [7] |
|
| 42 |
+
| `observation.velocity` | float32 | [7] |
|
| 43 |
+
| `observation.ee_pose` | float32 | [7] |
|
| 44 |
+
| `action.ee_target` | float32 | [7] |
|
| 45 |
+
| `next.success` | bool | [1] |
|
| 46 |
+
|
| 47 |
+
## Usage
|
| 48 |
+
|
| 49 |
+
```python
|
| 50 |
+
from lerobot.datasets.lerobot_dataset import LeRobotDataset
|
| 51 |
+
|
| 52 |
+
dataset = LeRobotDataset("avatarrobotics/bin-pick-panel-suction-v2")
|
| 53 |
+
sample = dataset[0]
|
| 54 |
+
```
|
| 55 |
+
|
| 56 |
+
## Citation
|
| 57 |
+
|
| 58 |
+
Created by [Avatar Robotics](https://avatarrobotics.ai).
|