Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
+
tags:
|
| 6 |
+
- franka-panda
|
| 7 |
+
- manipulation
|
| 8 |
+
- real-world
|
| 9 |
+
- 224x224
|
| 10 |
+
- square-center-crop
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Real-World Franka Panda Task Data (224px Square Center Crop)
|
| 14 |
+
|
| 15 |
+
## Tasks
|
| 16 |
+
|
| 17 |
+
| Task | Description | Train Demos | Val Demos |
|
| 18 |
+
|------|-------------|-------------|-----------|
|
| 19 |
+
| task_1 | put the pink noodle in the bowl | 90 | 10 |
|
| 20 |
+
| task_2 | put the bread in the bowl | 90 | 10 |
|
| 21 |
+
| task_3 | pour the pasta into the pan | 89 | 10 |
|
| 22 |
+
| task_4 | close the right cabinet door | 90 | 10 |
|
| 23 |
+
|
| 24 |
+
## Data Format
|
| 25 |
+
|
| 26 |
+
Each demo is an HDF5 file with:
|
| 27 |
+
```
|
| 28 |
+
root/
|
| 29 |
+
actions: (T, 10) float64 — [pos(3), rot6d(6), gripper(1)]
|
| 30 |
+
agentview/video: (1, T, 3, 224, 224) uint8
|
| 31 |
+
eye_in_hand/video: (1, T, 3, 224, 224) uint8
|
| 32 |
+
extra_states/ee_states:(T, 10) float64 — current EE state, same format
|
| 33 |
+
task_emb_bert: (768,) float32
|
| 34 |
+
```
|
| 35 |
+
|
| 36 |
+
## Image Preprocessing
|
| 37 |
+
|
| 38 |
+
Images are **square center cropped** from ZED VGA (672×376):
|
| 39 |
+
1. Crop 148px from each side → 376×376
|
| 40 |
+
2. Resize → 224×224
|
| 41 |
+
|
| 42 |
+
## Action Format
|
| 43 |
+
|
| 44 |
+
10D absolute end-effector pose:
|
| 45 |
+
- dims 0-2: position (x, y, z) in meters
|
| 46 |
+
- dims 3-8: 6D rotation (first two rows of rotation matrix)
|
| 47 |
+
- dim 9: gripper width in meters (0=closed, 0.08=open)
|
| 48 |
+
|
| 49 |
+
## Robot Setup
|
| 50 |
+
|
| 51 |
+
- Robot: Franka Panda
|
| 52 |
+
- Cameras: 2x ZED Mini (agentview + eye-in-hand)
|
| 53 |
+
- Control: 10Hz
|
| 54 |
+
- Data collection: teleoperation via GELLO
|