Upload README.md with huggingface_hub
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 |
+
- piper
|
| 8 |
+
- robotis
|
| 9 |
+
- end-effector
|
| 10 |
+
- quaternion
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# piper_pick_and_drop_200_240x320_eef
|
| 14 |
+
|
| 15 |
+
This dataset is an end-effector action space version of [BotBarry/piper_pick_and_drop_200_240x320](https://huggingface.co/datasets/BotBarry/piper_pick_and_drop_200_240x320).
|
| 16 |
+
|
| 17 |
+
## Changes
|
| 18 |
+
|
| 19 |
+
- **Action Space**: Converted from joint angles to end-effector pose with quaternions
|
| 20 |
+
- **State Space**: Remains as joint angles (unchanged)
|
| 21 |
+
- Videos remain unchanged
|
| 22 |
+
|
| 23 |
+
## Data Format
|
| 24 |
+
|
| 25 |
+
### Action (8D - End-Effector Space)
|
| 26 |
+
```
|
| 27 |
+
[X, Y, Z, Qx, Qy, Qz, Qw, Gripper]
|
| 28 |
+
```
|
| 29 |
+
|
| 30 |
+
Where:
|
| 31 |
+
- X, Y, Z: End-effector position in meters
|
| 32 |
+
- Qx, Qy, Qz, Qw: End-effector orientation as quaternion
|
| 33 |
+
- Gripper: Gripper joint value
|
| 34 |
+
|
| 35 |
+
### State (7D - Joint Space)
|
| 36 |
+
```
|
| 37 |
+
[Joint1, Joint2, Joint3, Joint4, Joint5, Joint6, Gripper]
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
State remains in joint angles for proprioceptive feedback.
|
| 41 |
+
|
| 42 |
+
## Conversion Method
|
| 43 |
+
|
| 44 |
+
Forward kinematics computed using Pinocchio library with the Piper robot URDF.
|
| 45 |
+
|
| 46 |
+
## Usage
|
| 47 |
+
```python
|
| 48 |
+
from lerobot.common.datasets.lerobot_dataset import LeRobotDataset
|
| 49 |
+
|
| 50 |
+
dataset = LeRobotDataset("BotBarry/piper_pick_and_drop_200_240x320_eef")
|
| 51 |
+
|
| 52 |
+
# Action is now 8D: [x, y, z, qx, qy, qz, qw, gripper]
|
| 53 |
+
# State is still 7D: [joint1-6, gripper]
|
| 54 |
+
```
|
| 55 |
+
|
| 56 |
+
## Citation
|
| 57 |
+
|
| 58 |
+
Please cite the original dataset if you use this converted version.
|