Views
No views yet
[REASON] tokens and a latent decoder supervision, jointly optimizing generation and embedding through an information bottleneck. It produces both discriminative and generative multimodal embeddings for text, images, videos, and visual documents.[REASON] tokens1from transformers import AutoModel, AutoProcessor
2
3model = AutoModel.from_pretrained("leafyseay/LaME-2B", trust_remote_code=True, torch_dtype="bfloat16").cuda()
4processor = AutoProcessor.from_pretrained("leafyseay/LaME-2B", trust_remote_code=True)1@article{wu2026lame,
2 title = {LaME: Learning to Think in Latent Space for Multimodal Embedding via Information Bottleneck},
3 author = {Wu, Peixi and Yang, Biao and Ma, Feipeng and Chai, Bosong and Lin, Bo and Yuan, Wei and Yang, Fan and Gao, Tingting and Li, Hebei and Sun, Xiaoyan},
4 journal = {arXiv preprint arXiv:2606.13061},
5 year = {2026}
6}