Views
No views yet
visual-cube-quadruple: a PaliGemma-3B
VLM fine-tuned to answer questions about future states conditioned on action
sequences, used as a differentiable reward for gradient-based planning.swm-repro-v1 (paper recipe: full fine-tune, lr 1e-5 linear decay, effective
batch 96, AdamW). Subfolders checkpoint-4000/ … checkpoint-64000/ hold every
4,000-step checkpoint of the run (weights only). Suite results at n=50:
64k = 70.67, 56k = 70.67, 60k = 75.33.| blue→green | blue→yellow | yellow→red | suite | |
|---|---|---|---|---|
| Base diffusion policy | 52 | 64 | 50 | 55.3 |
| This checkpoint | 86 | 72 | 68 | 75.33 |
| Authors' released ckpt (same harness) | 84 | 76 | 68 | 76.0 |
1from swm.paligemma_wm.modeling_paligemma_wm import PaliGemmaWMForConditionalGeneration
2from swm.paligemma_wm.processing_paligemma_wm import PaliGemmaWMProcessor
3
4model = PaliGemmaWMForConditionalGeneration.from_pretrained("kevin510/swm-next-paligemma-wm")
5processor = PaliGemmaWMProcessor.from_pretrained("jacob3333/paligemma_wm_ogbench")