File size: 2,410 Bytes
e8859d6
 
8f4f00f
e8859d6
8f4f00f
 
 
 
e8859d6
 
 
 
8f4f00f
e8859d6
 
 
8f4f00f
 
 
 
 
 
e8859d6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8b59397
e8859d6
 
 
8b59397
e8859d6
 
 
 
 
 
 
 
 
 
601426f
 
 
 
 
 
 
 
e8859d6
8f4f00f
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
56
57
58
59
60
61
62
63
64
65
66
67
68
---
license: apache-2.0
pipeline_tag: robotics
tags:
- robotics
- manipulation
- rlbench
- imitation-learning
---

# SkiP — Pretrained Checkpoints (RLBench-10)

Pretrained checkpoints for **SkiP (Skip Policy)** on 10 RLBench tasks, as presented in the paper [SkiP: When to Skip and When to Refine for Efficient Robot Manipulation](https://arxiv.org/abs/2605.15536).

SkiP dynamically leaps over redundant free-space steps and concentrates control on contact-rich key segments via action relabeling — no learned skip planner or hierarchical structure required.

## Links

- **Paper:** [https://arxiv.org/abs/2605.15536](https://arxiv.org/abs/2605.15536)
- **Code:** [https://github.com/CCCalcifer/Skip-Policy](https://github.com/CCCalcifer/Skip-Policy)
- **Project Page:** [https://pgq18.github.io/SkiP-page/](https://pgq18.github.io/SkiP-page/)

## Checkpoints

| File | Task |
|------|------|
| checkpoints/open_box.pt | open_box |
| checkpoints/open_drawer.pt | open_drawer |
| checkpoints/pick_up_cup.pt | pick_up_cup |
| checkpoints/press_switch.pt | press_switch |
| checkpoints/push_button.pt | push_button |
| checkpoints/reach_target.pt | reach_target |
| checkpoints/stack_wine.pt | stack_wine |
| checkpoints/sweep_to_dustpan.pt | sweep_to_dustpan |
| checkpoints/take_lid_off_saucepan.pt | take_lid_off_saucepan |
| checkpoints/turn_tap.pt | turn_tap |

**Training config:** kf_mode=skip, skip.window=16, skip.high_quantile=0.75, 20k steps, 100 demos per task.

## Usage

```bash
# Install
git clone https://github.com/CCCalcifer/Skip-Policy.git && cd Skip-Policy
bash scripts/init.sh

# One-click eval (auto-downloads checkpoint + data)
bash scripts/eval.sh task=push_button

# Or manually download and eval
pip install huggingface_hub
python -c "from huggingface_hub import hf_hub_download; hf_hub_download('AYouZhuA/SkiP-RLBench', 'checkpoints/open_drawer.pt', local_dir='.')"
python scripts/eval.py task=open_drawer snapshot=checkpoints/open_drawer.pt
```

## Citation

```bibtex
@misc{dai2026skipskiprefineefficient,
      title={SkiP: When to Skip and When to Refine for Efficient Robot Manipulation},
      author={Mingtong Dai and Guanqi Peng and Yongjie Bai and Feng Yan and Chunjie Chen and Lingbo Liu and Liang Lin and Xinyu Wu},
      year={2026},
      eprint={2605.15536},
      archivePrefix={arXiv},
      primaryClass={cs.RO},
      url={https://arxiv.org/abs/2605.15536},
}
```