Views
No views yet
1smolvla/5_SHOT/pretrained_model/ # Shared 5-shot SmolVLA policy
2{suite}/vgas_critic/last.ckpt # VGAS inference-time critic
3{suite}/vgas_plus/pretrained_model/ # Distilled VGAS+ policy{suite} is one of goal, object, spatial, or long (long corresponds
to libero_10). VGAS uses the shared SmolVLA policy together with the suite-specific
critic for Best-of-N selection. The SFT policy is frozen while training the VGAS critic.
VGAS+ directly executes the distilled policy and does not require a critic or
inference-time reranking.| Directory | LIBERO suite |
|---|---|
goal/vgas_plus/pretrained_model | libero_goal |
object/vgas_plus/pretrained_model | libero_object |
spatial/vgas_plus/pretrained_model | libero_spatial |
long/vgas_plus/pretrained_model | libero_10 |
huggingface_hub:1from huggingface_hub import snapshot_download
2
3snapshot_download(
4 repo_id="SemyonXu616/VGAS-5-shot",
5 allow_patterns=["goal/vgas_plus/pretrained_model/*"],
6 local_dir="checkpoints/VGAS-5-shot",
7)POLICY_PATH to the
VGAS+ evaluation scripts in the code repository.1@article{xu2026vgas,
2 title = {VGAS: Value-Guided Action-Chunk Selection for Few-Shot Vision-Language-Action Adaptation},
3 author = {Xu, Changhua and Yu, En and Xuan, Junyu and Lu, Jie},
4 journal = {arXiv preprint arXiv:2602.07399},
5 year = {2026}
6}