File size: 1,806 Bytes
c783f9f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
license: apache-2.0
tags:
- robotics
- vla
- vision-language-action
- libero
- model-compression
pipeline_tag: robotics
---

# VLADrop-pi05-LIBERO-Plus-drop17-keep0

Checkpoint for [Drop-Then-Recovery: How Redundant Are Vision-Language-Action Models?](https://arxiv.org/abs/2606.27755).

DTR (Drop-Then-Recovery) removes transformer blocks from a pretrained VLA model and
recovery-fine-tunes the smaller dense model. Code: https://github.com/s1ghhh/VLADrop

## This checkpoint

| | |
|---|---|
| Paper row | Table 6: pi0.5 / LIBERO-Plus Drop-17 |
| Dropped blocks | Language backbone (PaliGemma, 18 layers): keep block 0 only, drop the other 17. Vision and action untouched. |
| Recovery training | LIBERO-Plus, batch size 32, 30K steps, lr 5e-5 |
| LIBERO-Plus success rate | Average 68.0 |

## Usage

This is an [openpi](https://github.com/Physical-Intelligence/openpi)-format pi0.5 checkpoint
(PyTorch). Use with the VLADrop fork: https://github.com/s1ghhh/VLADrop

```bash
python scripts/serve_policy_batch_drop.py \
    --config pi05_libero_dropped \
    --dir <this_repo_local_path> \
    --port 8000
```

**Important:** the drop lists are NOT stored inside the checkpoint. Pass the exact
`llm_drop_attn_list` / `llm_drop_mlp_list` shown above (via config or CLI) when serving,
otherwise layers will be mismatched. `assets/` contains the LIBERO norm stats.
The optimizer state (`train_state/`) is not included.

## Citation

```bibtex
@article{sun2026vladrop,
  title={Drop-Then-Recovery: How Redundant Are Vision-Language-Action Models?},
  author={Sun, Guoheng and Feng, Kaixi and He, Shwai and Gong, Xiaochuan and He, Yexiao and Wang, Ziyao and Shen, Zheyu and Ye, Wanghao and Kompella, Ramana Rao and Liu, Gaowen and Li, Ang},
  journal={arXiv preprint arXiv:2606.27755},
  year={2026}
}
```