Quantized
Pi 0.5 LIBERO-finetuned
checkpoint produced with the two-stage
ActQuant quantization recipe.
The headline BPW excludes the embedding and action-expert tensors, following
standard quantization-paper convention: those tensors are not the target of
ActQuant's block-wise allocation.
Aggregate success rate across all four LIBERO suites, 500 trials per suite
(2 000 total), evaluated through the C++/GGML runtime via the pi05.so
pybind11 binding (same code path that runs at deployment):
1huggingface-cli download NU-World-Model-Embodied-AI/ActQuant-Pi05-LIBERO-3.5bpw \
2 --local-dir /path/to/eval_dir
3
4# From the ActQuant build tree (build_openpi/) — see paper repo:
5cd /path/to/ActQuant
6for suite in libero_spatial libero_object libero_goal libero_10; do
7 bash tools/pi0.5/run_libero_eval.sh "$suite" 50 5 8 8000 /path/to/eval_dir
8done
1# Stage 0 — Export the LIBERO-finetuned bf16 Pi 0.5 to GGUF
2# (vision Q3_K + everything else preserved)
3python tools/pi0.5/export_pi05.py \
4 -d /path/to/pi05_libero_finetuned_v044 \
5 -o /path/to/pi05_libero_base_gguf \
6 --quant_vision q3k
7
8# Stage 0b — Export the standalone bf16 PaliGemma LLM
9python tools/pi0.5/export_pi05_llm.py \
10 -d /path/to/pi05_libero_finetuned_v044 \
11 -o /path/to/pi05_libero_base_gguf/pali_llm_bf16.gguf
12
13# Stage 2 — AMF Fisher imatrix (computed once, reused across BPW points)
14python tools/fisher-diag/get_pi05_calib_data.py \
15 --output-dir /path/to/calib_data_raw
16python tools/fisher-diag/compute_fisher_pi05.py \
17 --checkpoint /path/to/pi05_libero_finetuned_v044 \
18 --calib-dir /path/to/calib_data_raw \
19 --output /path/to/pi05_libero_base_gguf/fisher_flow_perweight.gguf \
20 --num-gpus 8 --batch-size 6
21
22# Stage 1 + 2 + merge
23bash tools/hsic/run_hsic_quant_pi05.sh \
24 --base-type Q3_K_S \
25 --max-type Q4_K \
26 --score-key sens \
27 --num-gpus 8
This checkpoint is part of the ActQuant Pi 0.5 LIBERO BPW sweep reported in the paper:
1@article{actquant2026,
2 title = {ActQuant: Sub-4-bit Action-Guided Quantization for Vision-Language-Action Models},
3 author = {Akbari, Arash and others},
4 journal= {arXiv preprint arXiv:2605.24011},
5 year = {2026}
6}
MIT (inherited from the
llama.cpp
upstream build infrastructure). Pi 0.5 model weights are bound by the
upstream
OpenPI license
and the underlying
PaliGemma terms.