This checkpoint is part of the
PCM-VLA project: a small (~1 M-param) FiLM module that lets a frozen 3D foundation model modulate the SmolVLA action expert.
1pip install huggingface_hub
2python - <<PY
3from huggingface_hub import hf_hub_download
4hf_hub_download("Zhengyue2/pcm-vla-raft", "pcm_vla_state.pt", local_dir="ckpts/raft")
5PY
6
7# Then with the PCM-VLA codebase:
8python -m src.eval --ckpt ckpts/raft/pcm_vla_state.pt \
9 --task_ids "[0,1,2,3,4,5,6,7,8,9]" --n_episodes 50 \
10 --output_dir results/raft
See
github.com/ZhengyueZhao/pcm-vla for the full codebase, training instructions, and per-task results.