Recent universal multimodal embedding (UME) methods improve retrieval by generating explicit chain-of-thought (CoT) rationales before extracting an embedding. This is effective but slow, and it forces rich multimodal evidence through a narrow textual bottleneck. PLUME instead replaces verbalized CoT with a short autoregressive rollout of continuous latent states, and uses a semantic-anchor-guided transition adapter to steer the latent computation along input-dependent reasoning trajectories under a fixed compute budget. The model is trained with a progressive explicit-to-latent curriculum that uses verbalized reasoning as a temporary training scaffold and gradually transfers it into hidden-state computation, eliminating explicit CoT at inference.
1from transformers import AutoProcessor, Qwen2VLForConditionalGeneration
2
3model = Qwen2VLForConditionalGeneration.from_pretrained(
4 "Rem520/PLUME-7B", torch_dtype="auto", device_map="auto"
5)
6processor = AutoProcessor.from_pretrained("Rem520/PLUME-7B")
To use the full PLUME embedding pipeline (latent rollout + semantic-anchor-guided transition adapter), follow the official code:
https://github.com/haoxiangzhao12138/PLUME
1@article{he2026plume,
2 title = {PLUME: Latent Reasoning Based Universal Multimodal Embedding},
3 author = {He, Chenwei and Hao, Xiangzhao and Yang, Tianyu and Ma, Yuxiang and
4 Jia, Yuheng and Wu, Lingxiang and Zhao, Chaoyang and Guo, Haiyun and Wang, Jinqiao},
5 journal = {arXiv preprint arXiv:2604.02073},
6 year = {2026}
7}