EN KO
← All Publications

Hybrid Document Retrieval with VLM-Generated Descriptions

KCC 2026 🏆
Ho Seob Ahn, Mingyu Kim, Taeuk Kim

One-Line Summary

A hybrid document retrieval framework that leverages a vision-language model (VLM) to generate rich textual descriptions of visually complex documents — capturing information carried by figures, tables, and layout that plain text extraction misses — and fuses these descriptions with conventional text and dense-vector retrieval signals to improve retrieval quality. This work received an Outstanding Paper Award at the Korea Computer Congress 2026 (KCC 2026).

Background & Motivation

Modern document collections are rarely plain text. Reports, scientific papers, manuals, and financial filings routinely convey essential information through figures, charts, tables, and spatial layout. Conventional retrieval pipelines, however, operate over text extracted by OCR or parsers — a process that flattens or discards precisely the visual signals that make these documents informative. As a result, a query whose answer lives inside a chart or a table can fail to retrieve the page that actually contains it.

Key Challenge: Visually rich documents encode meaning not only in their words but in figures, tables, and layout. Text-only retrieval systems — whether sparse lexical (e.g., BM25) or dense-vector — index a degraded, text-only view of each page and therefore systematically miss content that is expressed visually. The core question is how to inject the missing visual semantics into a retrieval pipeline without abandoning the efficiency and maturity of existing text-based methods.

One line of prior work tackles this with fully vision-based retrieval, embedding rendered page images directly. Such approaches capture visual content but discard the strengths of established text retrieval — exact lexical matching, interpretability, and low-cost indexing — and can struggle with fine-grained textual queries. This paper instead pursues a hybrid route: keep the proven text and dense-vector retrieval machinery, and augment it with a compact, searchable textual surrogate of each document's visual content produced by a VLM.

Text-Only vs. VLM-Augmented Retrieval

AspectText-Only RetrievalVLM-Augmented Hybrid (This Work)
Indexed contentOCR / parsed text onlyText + VLM description of figures, tables, layout
Visual informationLost or degradedRecovered as natural-language description
Retrieval signalsLexical and/or dense-vectorLexical + dense-vector + description-based
CompatibilityStandard indexReuses existing text/vector infrastructure
Queries about charts/tablesOften unanswerableMade retrievable via generated descriptions

Proposed Method

The approach adds a description-generation stage in front of an otherwise standard retrieval pipeline, then fuses the resulting signals at scoring time. It has two conceptual pillars: (1) turning visual content into searchable text with a VLM, and (2) combining that new signal with existing text and dense-vector retrieval.

1
VLM-Based Description Generation
Each document (or page) is rendered as an image and passed to a vision-language model, which produces a natural-language description of its visual content — summarizing what figures depict, transcribing and paraphrasing tables, and noting layout cues such as headings, captions, and the relationships between visual elements. The VLM effectively translates non-textual information into a form that text-based retrievers can index and match against, recovering semantics that OCR or parsers would otherwise drop.
2
Enriched Document Representation
The generated descriptions are combined with the document's originally extracted text to form an enriched representation of each page. This unified representation carries both the literal textual content and a verbalized account of the visual content, so that a single document entry can be matched by queries targeting either modality. The enrichment is applied at indexing time, keeping query-time behavior lightweight.
3
Hybrid Retrieval Fusion
Retrieval combines complementary signals over the enriched representation: sparse lexical matching for exact terms and dense-vector similarity for semantic matching, together with the description-derived evidence. By fusing these scores, the system benefits from the precision of lexical matching, the generalization of dense retrieval, and the newly added visual coverage from the VLM descriptions — rather than relying on any single signal alone.

Design Principles:

  • Augment, don't replace: The VLM description is added on top of existing text and dense-vector retrieval, preserving their efficiency, interpretability, and mature tooling.
  • Verbalize the visual: Rather than embedding raw page images, visual content is converted into searchable natural language, making it directly compatible with standard text retrievers.
  • Complementary fusion: Lexical, dense, and description-based signals cover different failure modes, so combining them is more robust than optimizing any one in isolation.

Key Points

Why It Matters

Retrieval quality is the foundation of many downstream applications, from search interfaces to retrieval-augmented generation (RAG). When the underlying documents are visually rich, text-only retrieval imposes a hidden ceiling: no matter how strong the reader or generator, it cannot use evidence that was never retrieved because it lived inside a figure or table. By recovering that evidence as searchable text, this work raises the ceiling on what downstream systems can access.

Broader Insight: The bottleneck for retrieval over visually rich documents is not the retriever's algorithm but the impoverished, text-only view it is given. By using a vision-language model to translate figures, tables, and layout into natural language, the visual and textual worlds are unified within a single, familiar retrieval framework — delivering the coverage of multimodal understanding while retaining the efficiency and reliability of established text-based information retrieval.

Information Retrieval Multimodal