Add model card
Browse files
README.md
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: lerobot
|
| 3 |
+
license: apache-2.0
|
| 4 |
+
base_model: lerobot/pi05_base
|
| 5 |
+
pipeline_tag: robotics
|
| 6 |
+
tags:
|
| 7 |
+
- robotics
|
| 8 |
+
- lerobot
|
| 9 |
+
- pi0_5
|
| 10 |
+
- pi05
|
| 11 |
+
- manipulation
|
| 12 |
+
- block-transfer
|
| 13 |
+
- trossen-ai
|
| 14 |
+
datasets:
|
| 15 |
+
- TrossenRoboticsCommunity/trossen_ai_stationary_block_transfer
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# pi0.5 — Block Transfer (batch size 8)
|
| 19 |
+
|
| 20 |
+
Fine-tuned [pi0.5](https://huggingface.co/lerobot/pi05_base) vision-language-action policy
|
| 21 |
+
for the **block transfer** task on the **Trossen AI Stationary** bimanual platform.
|
| 22 |
+
|
| 23 |
+
## Model details
|
| 24 |
+
|
| 25 |
+
| | |
|
| 26 |
+
|---|---|
|
| 27 |
+
| **Architecture** | pi0.5 (PaliGemma `gemma_2b` backbone + `gemma_300m` action expert) |
|
| 28 |
+
| **Base model** | [`lerobot/pi05_base`](https://huggingface.co/lerobot/pi05_base) |
|
| 29 |
+
| **Framework** | [LeRobot](https://github.com/huggingface/lerobot) |
|
| 30 |
+
| **Robot platform** | Trossen AI Stationary (bimanual, 14-DoF) |
|
| 31 |
+
| **Cameras** | `cam_high`, `cam_low`, `cam_left_wrist`, `cam_right_wrist` (480×640 RGB) |
|
| 32 |
+
| **Action chunk** | 50 steps, 10 inference steps |
|
| 33 |
+
| **Precision** | bfloat16 |
|
| 34 |
+
| **License** | Apache 2.0 |
|
| 35 |
+
|
| 36 |
+
## Training
|
| 37 |
+
|
| 38 |
+
| Hyperparameter | Value |
|
| 39 |
+
|---|---|
|
| 40 |
+
| **Batch size** | **8** |
|
| 41 |
+
| Training steps | 100,000 |
|
| 42 |
+
| Learning rate | 2e-5 (cosine decay to 2.5e-6 over 30k steps, 1k warmup) |
|
| 43 |
+
| Optimizer | AdamW (β=(0.9, 0.95), wd=0.01, grad clip 1.0) |
|
| 44 |
+
| Gradient checkpointing | Enabled |
|
| 45 |
+
| Hardware | 1× NVIDIA H200 (141 GB VRAM) via [Trossen Cloud Service](https://www.trossenrobotics.com/) |
|
| 46 |
+
| Dataset | [`TrossenRoboticsCommunity/trossen_ai_stationary_block_transfer`](https://huggingface.co/datasets/TrossenRoboticsCommunity/trossen_ai_stationary_block_transfer) |
|
| 47 |
+
|
| 48 |
+
## Usage
|
| 49 |
+
|
| 50 |
+
Load the policy with LeRobot:
|
| 51 |
+
|
| 52 |
+
```python
|
| 53 |
+
from lerobot.policies.pi0_5.modeling_pi0_5 import PI05Policy
|
| 54 |
+
|
| 55 |
+
policy = PI05Policy.from_pretrained(
|
| 56 |
+
"TrossenRoboticsCommunity/pi05-block-transfer-bs8"
|
| 57 |
+
)
|
| 58 |
+
```
|
| 59 |
+
|
| 60 |
+
See the [LeRobot pi0.5 docs](https://github.com/huggingface/lerobot) for the full
|
| 61 |
+
inference / rollout setup on real hardware.
|
| 62 |
+
|
| 63 |
+
## Files
|
| 64 |
+
|
| 65 |
+
| File | Purpose |
|
| 66 |
+
|---|---|
|
| 67 |
+
| `config.json` | Policy configuration |
|
| 68 |
+
| `model.safetensors` | Model weights (~7.5 GB) |
|
| 69 |
+
| `policy_preprocessor.json` + `*_normalizer_processor.safetensors` | Input normalizer (state/action quantiles) |
|
| 70 |
+
| `policy_postprocessor.json` + `*_unnormalizer_processor.safetensors` | Output unnormalizer |
|
| 71 |
+
|
| 72 |
+
## Related models
|
| 73 |
+
|
| 74 |
+
- [`TrossenRoboticsCommunity/pi05-block-transfer-bs8`](https://huggingface.co/TrossenRoboticsCommunity/pi05-block-transfer-bs8) — this model
|
| 75 |
+
- [`TrossenRoboticsCommunity/pi05-block-transfer-bs32`](https://huggingface.co/TrossenRoboticsCommunity/pi05-block-transfer-bs32) — same task, batch size 32
|