Multimodal CoLRAG-TF: Triple-Filtered Retrieval for Complex PDFs
Multimodal CoLRAG-TF is a RAG architecture that enhances retrieval from complex, multimodal PDFs by fusing text, keywords, knowledge graphs, and image similarity. It significantly improves multi-hop reasoning and recall.
Intelligence analysis by Gemini 2.5 Flash

Multimodal CoLRAG-TF improves RAG over complex, multimodal PDFs by fusing text embeddings, BM25, knowledge graphs, and image similarity. Tested on Japanese disaster lesson PDFs, it significantly enhances compositional reasoning and multi-hop retrieval, proving triple-filtered multimodal fusion is key for structured reasoning.
Imagine a super-smart librarian for messy school reports with words and pictures. This AI, CoLRAG-TF, doesn't just find keywords; it understands pictures, connects ideas like puzzle pieces, and knows how different report parts relate. It's great at finding answers hidden across many pages, making complicated documents much easier to learn from.
Analysis
Challenges in Complex PDF Retrieval
The article highlights the inherent difficulties in performing Retrieval-Augmented Generation (RAG) over heterogeneous PDF collections. These challenges stem from several factors: the multimodal nature of content (text, images, tables), the presence of domain-specific terminology that can hinder keyword-based searches, and the critical need for multi-hop reasoning. Multi-hop reasoning requires an AI system to connect disparate pieces of evidence scattered across a document or even multiple documents to answer a complex query, which is a significant hurdle for traditional RAG approaches. The paper specifically mentions a dataset of Japanese disaster lesson PDFs, which likely contain a mix of technical reports, diagrams, and narrative accounts, making them a prime example of "complex PDFs."
Existing RAG systems often struggle with these complexities, leading to suboptimal retrieval quality, especially when queries require synthesizing information from various parts of a document. The lexical bias of keyword matching and the limitations of purely semantic embeddings in capturing intricate relationships further exacerbate these issues. The goal of Multimodal CoLRAG-TF is to overcome these limitations by introducing a more sophisticated retrieval mechanism that can robustly handle the diverse information types and reasoning demands presented by such documents.
The CoLRAG-TF Architecture and Its Innovations
Multimodal CoLRAG-TF proposes a novel four-axis fusion architecture designed to tackle the aforementioned challenges. This architecture integrates four distinct retrieval signals: dense text embeddings (for semantic similarity), BM25 keyword matching (for lexical relevance), knowledge-graph triple filtering (for structured relational reasoning), and image-based similarity (for visual content). The system constructs a multimodal index from 2,403 blocks extracted from 43 Japanese disaster lesson PDFs, utilizing a hybrid OCR pipeline and LLM-based caption generation to process both textual and visual elements effectively.
A key innovation is the extraction of 11,414 OpenIE triples, which are then indexed with FAISS. This enables sub-second triple lookup and hierarchical propagation of relevance signals, significantly enhancing compositional reasoning. Furthermore, a HippoRAG2-inspired coarse-to-fine retriever (volume → chapter → block) is employed to efficiently narrow down the search space before the final fusion scoring. Bayesian optimization was used to determine the optimal weights for each fusion axis, revealing that the knowledge-graph triple axis must dominate (α_triple = 0.44) to effectively counteract lexical bias and sustain multi-hop retrieval quality.
Performance and Broader Implications
Evaluated on a 457-pair benchmark, Multimodal CoLRAG-TF demonstrated impressive performance, achieving a Retrieval Recall of 0.9909. More significantly, it showed a 71.6% improvement in multi-hop answer similarity over single-hop queries, underscoring its effectiveness in complex reasoning tasks. The paper also highlights the applicability of its approach to visual inputs through an image-to-lesson pipeline using a vision LLM, further broadening its potential utility.
These results strongly suggest that triple-filtered multimodal fusion is not merely an incremental improvement but an essential component for structured reasoning over noisy, heterogeneous PDF documents. The framework's generalizability is emphasized, indicating its potential applicability beyond the specific disaster domain to other fields dealing with complex, multimodal information. This could pave the way for more intelligent and reliable AI systems capable of extracting and synthesizing information from diverse and challenging document types, ultimately enhancing knowledge discovery and decision-making processes across various industries.
Key points
- Multimodal CoLRAG-TF is a RAG architecture designed for complex, multimodal PDFs.
- It uses a four-axis fusion: dense text embeddings, BM25 keyword matching, knowledge-graph triple filtering, and image similarity.
- The system extracts OpenIE triples and employs a coarse-to-fine retriever for efficient search space narrowing.
- Bayesian optimization revealed knowledge-graph filtering is crucial for sustaining multi-hop retrieval quality.
- Achieved 0.9909 Retrieval Recall and a 71.6% improvement in multi-hop answer similarity over single-hop queries.
This research could lead to significantly more capable RAG systems that can accurately process and reason over highly complex, real-world documents, including technical manuals, legal texts, and scientific papers. The ability to perform robust multi-hop reasoning and integrate visual information could unlock new applications in knowledge management, research, and automated analysis, making vast amounts of unstructured data more accessible and actionable for AI.
While promising, the complexity of building and maintaining such a multimodal, triple-filtered system, especially with knowledge graph extraction and Bayesian optimization, might limit its widespread adoption to highly specialized domains. The reliance on high-quality OCR and LLM-based captioning also introduces potential failure points if the initial data processing is imperfect, leading to propagation of errors.

