Views
No views yet
Generative Giants, Retrieval Weaklings: Why do Multimodal Large Language Models Fail at Multimodal Retrieval? Accepted to ACL 2026. Preprint: arXiv:2512.19115.
| Filename | Backbone |
|---|---|
sae_Qwen2-VL-7B-Instruct.pt | Qwen2-VL-7B-Instruct |
sae_Qwen3-VL-8B-Instruct.pt | Qwen3-VL-8B-Instruct |
sae_paligemma-3b-mix-224.pt | PaliGemma2-3B-Mix-224 |
sae_chameleon-7b.pt | Chameleon-7B |
sae_clip.pt | CLIP |
sae_siglip2.pt | SigLIP2 |
model_index.json.torch.save. Pair it
with the matching TopKSAE instance from the
overcomplete framework
(also vendored in the analysis repo):1import torch
2from huggingface_hub import hf_hub_download
3from overcomplete.sae.topk_sae import TopKSAE
4
5ckpt_path = hf_hub_download(
6 repo_id="Heinz217/mllm-retrieval-analysis-sae",
7 filename="sae_Qwen2-VL-7B-Instruct.pt",
8)
9ckpt = torch.load(ckpt_path, map_location="cuda")
10
11# Initialize TopKSAE with the same input_shape / nb_concepts that were used
12# at training time, then load the trained weights.
13sae = TopKSAE(input_shape=..., nb_concepts=..., top_k=50, device="cuda").to("cuda")
14sae.load_state_dict(ckpt["model_state"])1@article{feng2025generative,
2 title = {Generative Giants, Retrieval Weaklings: Why do Multimodal Large Language Models Fail at Multimodal Retrieval?},
3 author = {Feng, Hengyi and Sheng, Zeang and Qiang, Meiyi and Li, Yang and Zhang, Wentao},
4 journal = {arXiv preprint arXiv:2512.19115},
5 year = {2025},
6}