Modality Relevance is not Modality Utility: Post-hoc Selective Modality Escalation for Cost-Aware Multimodal RAG
Summary
Multimodal retrieval-augmented generation (RAG) systems typically ground generators in evidence from text, tables, and images. Current approaches either use a cheap text-only pipeline or an expensive vision-language model (VLM) over all images, often making binary decisions pre-retrieval based on question relevance. However, an oracle analysis on MultiModalQA reveals that modality relevance poorly predicts utility; many questions with image support are answerable from text and tables alone. This leads to substantial over-escalation. The proposed solution is post-hoc selective modality escalation: answer cheaply with text/tables, then run a verifier on the (query, draft answer, evidence) tuple to identify missing modalities. A calibrated value-of-escalation router then decides if the expected accuracy gain justifies the VLM cost. This method recovers the accuracy of an always-on VLM pipeline with significantly fewer visual calls, closing most of the gap to oracle escalation rates.
Key takeaway
For AI Architects and Machine Learning Engineers optimizing multimodal RAG systems, you should re-evaluate pre-retrieval modality selection. Instead, consider implementing post-hoc selective modality escalation to significantly reduce VLM inference costs. By answering cheaply first and only escalating to expensive visual models when a verifier identifies a missing modality, you can achieve comparable accuracy with far fewer visual calls, improving your system's efficiency.
Key insights
Modality relevance is not modality utility; deferring expensive VLM calls post-hoc optimizes cost-accuracy trade-offs.
Principles
- Modality relevance is a weak predictor of utility.
- Cost-aware escalation decisions should be calibrated based on expected gain.
Method
Answer cheaply using text/tables, then verify (query, draft answer, evidence) to localize missing modalities, and use a calibrated router to decide VLM escalation.
In practice
- Implement a verifier for multimodal RAG answers.
- Calibrate VLM escalation based on expected accuracy gain versus cost.
Topics
- Multimodal RAG
- Cost-Aware AI
- Modality Escalation
- Vision-Language Models
- Information Retrieval
- MultiModalQA
Best for: Research Scientist, AI Engineer, CTO, AI Scientist, Machine Learning Engineer, AI Architect
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by Artificial Intelligence.