Papers
Topics
Authors
Recent
Search
2000 character limit reached

Visually-Rich Document Understanding (VRDU)

Updated 6 July 2026
  • VRDU is the process of automatically extracting, structuring, and interpreting multimodal content from documents using text, graphics, and layout cues.
  • It integrates computer vision, natural language processing, and document analysis to perform key information extraction, classification, and visual question answering.
  • Research explores OCR-dependent and OCR-free models that emphasize robust reading order, template generalization, and domain adaptation in diverse document formats.

Visually-Rich Document Understanding (VRDU) denotes the automatic extraction, structuring, and interpretation of information from documents whose semantics are conveyed jointly by text, graphics, and complex layout, including forms, invoices, academic papers, and reports. The field lies at the confluence of Natural Language Processing, Computer Vision, and Document Analysis, and its standard task spectrum includes key information extraction, document visual question answering, entity linking or relation extraction, document classification, and structure analysis (Ding et al., 14 Jul 2025, Ding et al., 2024). Contemporary VRDU research spans OCR-dependent pipelines, OCR-free end-to-end models, and markup-native methods for HTML or XML documents, while increasingly emphasizing reading order, template variation, hierarchical entities, long-context reasoning, and robustness under domain shift (Barboule et al., 4 Jan 2025, Li et al., 2021).

1. Problem formulations and document assumptions

VRDU is usually posed over documents in which textual content alone is insufficient for interpretation. In business forms, receipts, filings, and similar artifacts, field identity often depends on two-dimensional arrangement, table structure, headers, key–value alignment, repetition patterns, or visual salience rather than on lexical content alone (Wang et al., 2022). This is why benchmark design in VRDU explicitly targets rich schema, layout-rich documents, diverse templates, high-quality OCR, and token-level annotation (Wang et al., 2022).

A central formal distinction concerns what structural supervision is assumed. In traditional VrDU, the input can include OCR-extracted words W={wl}l=1LW=\{w_l\}_{l=1}^L, global 1D positions O={ol}l=1LO=\{o_l\}_{l=1}^L, word-wise bounding boxes B={bl}l=1LB=\{b_l\}_{l=1}^L in R4\mathbb{R}^4, and manually annotated semantic groups S={sk}k=1KS'=\{s'_k\}_{k=1}^K, where each semantic group contains semantically relevant but not obviously grouped words (Jiang et al., 2024). The ReVrDU formulation removes those manual semantic groups and instead restricts inputs to OCR-supplied words, positions, boxes, and text segments S={sk}k=1KS=\{s_k\}_{k=1}^K, where each segment is a spatially contiguous line or region (Jiang et al., 2024). That formulation exposes a practical gap: off-the-shelf OCR provides text segments, not oracle semantic grouping.

The broader literature identifies three persistent problem drivers. First, heterogeneous layouts introduce multi-column text, tables, images, charts, headers, and footers with highly variable spatial organization. Second, domain shifts degrade performance when pretrained models move from general corpora to specialized domains such as scientific articles, legal briefs, or handwritten forms. Third, high-quality token- and entity-level annotation remains expensive, especially when manual grouping, entity boxes, and question–answer supervision are required (Ding et al., 2024). A related misconception is that strong performance on small fixed-template datasets implies robust document understanding; benchmark studies show that generalization to unseen templates remains very challenging, and hierarchical fields such as line-items are especially difficult (Wang et al., 2022).

2. Modalities, inputs, and representational primitives

VRDU systems are commonly divided into OCR-dependent and OCR-free frameworks. OCR-dependent systems first apply OCR or PDF parsing to obtain text and bounding-box information, then combine these signals—often with low- or mid-resolution page images—inside a multimodal encoder or an LLM-driven pipeline. Their advantages include mature OCR engines and reduced visual token load, while their disadvantages include OCR error accumulation, limited end-to-end learning, and weaker performance on noisy or handwritten text (Ding et al., 14 Jul 2025). OCR-free systems bypass explicit text extraction, take raw images as input, and rely on a vision encoder plus a language decoder or multimodal LLM to learn text recognition and layout reasoning jointly; these approaches avoid an explicit OCR bottleneck but incur high computational cost and require aggressive visual compression for long sequences (Ding et al., 14 Jul 2025).

Across these settings, representation learning is usually organized around three modalities. Textual features are derived from OCR tokens or higher-level units such as lines, fields, or paragraphs; visual features come from RoI-pooled CNN features or patch embeddings from a vision transformer; layout features are encoded through absolute or relative two-dimensional geometry, typically bounding-box coordinates (xmin,ymin,xmax,ymax)(x_{\min}, y_{\min}, x_{\max}, y_{\max}) or pairwise spatial biases (Ding et al., 2024). In encoder-style fusion, an early-fusion form is often written as

hi=Wf[xiT;vi;posi]+bf,h_i = W_f\bigl[x_i^T; v_i; pos_i\bigr] + b_f,

while the underlying attention computation follows

Attention(Q,K,V)=softmax ⁣(QKdk)V\mathrm{Attention}(Q,K,V)=\mathrm{softmax}\!\Bigl(\frac{QK^\top}{\sqrt{d_k}}\Bigr)V

or a layout-biased variant thereof (Ding et al., 2024, Ding et al., 14 Jul 2025).

Layout is not limited to coordinate embeddings. Some systems verbalize layout as prompt content by inserting bounding boxes into textual input; others integrate layout through self-supervised tasks such as block masking, layout-guided infilling, table reconstruction, or visual grounding (Ding et al., 14 Jul 2025). Reading order is a particularly important latent variable. ERNIE-Layout argues that simple raster-scan serialization often violates human reading order on multi-column text, tables, and forms, and therefore introduces reading-order-aware serialization and a Reading Order Prediction objective (Peng et al., 2022). XYLayoutLM makes a similar claim, replacing noisy OCR token order with Augmented XY Cut and adding Dilated Conditional Position Encoding to capture local one-dimensional and two-dimensional neighborhood structure (Gu et al., 2022).

There is also a distinct branch for born-digital documents with markup structure rather than fixed raster layout. MarkupLM represents each token as

Ei=Eitext+Eipos1D+Eiseg+Eixpath,E_i = E_i^{text} + E_i^{pos1D} + E_i^{seg} + E_i^{xpath},

where XPath embeddings encode DOM ancestry and sibling structure in HTML or XML (Li et al., 2021). This branch addresses documents whose layout is dynamically rendered rather than fixed in a scanned page.

3. Model families and pre-training paradigms

A major line of work uses encoder-only multimodal Transformers that jointly model text, layout, and image. LayoutLMv2 employs a two-stream multimodal Transformer with spatial-aware self-attention and three pre-training objectives: Masked Visual-Language Modeling, Text-Image Alignment, and Text-Image Matching (Xu et al., 2020). On standard VrDU benchmarks it reports improvements from LayoutLM to LayoutLMv2 on FUNSD O={ol}l=1LO=\{o_l\}_{l=1}^L0, CORD O={ol}l=1LO=\{o_l\}_{l=1}^L1, SROIE O={ol}l=1LO=\{o_l\}_{l=1}^L2, Kleister-NDA O={ol}l=1LO=\{o_l\}_{l=1}^L3, RVL-CDIP O={ol}l=1LO=\{o_l\}_{l=1}^L4, and DocVQA O={ol}l=1LO=\{o_l\}_{l=1}^L5 (Xu et al., 2020). Bi-VLDoc retains the multimodal Transformer setting but shifts emphasis to bidirectional vision-language supervision through hybrid-attention and auxiliary tasks such as Text-Image Position Awareness, Region-Wise Text Prediction, and Bidirectional Text-Image Alignment; it reports gains on FUNSD from O={ol}l=1LO=\{o_l\}_{l=1}^L6 to O={ol}l=1LO=\{o_l\}_{l=1}^L7, on CORD from O={ol}l=1LO=\{o_l\}_{l=1}^L8 to O={ol}l=1LO=\{o_l\}_{l=1}^L9, on RVL-CDIP from B={bl}l=1LB=\{b_l\}_{l=1}^L0 to B={bl}l=1LB=\{b_l\}_{l=1}^L1, and on DocVQA from B={bl}l=1LB=\{b_l\}_{l=1}^L2 to B={bl}l=1LB=\{b_l\}_{l=1}^L3 for previous single-model methods (Luo et al., 2022).

Another line targets layout structure more explicitly. ERNIE-Layout combines reading-order-aware serialization, Reading Order Prediction, Replaced Region Prediction, and Spatial-Aware Disentangled Attention; it reports entity F1 of B={bl}l=1LB=\{b_l\}_{l=1}^L4 on FUNSD, B={bl}l=1LB=\{b_l\}_{l=1}^L5 on CORD, B={bl}l=1LB=\{b_l\}_{l=1}^L6 on SROIE, and B={bl}l=1LB=\{b_l\}_{l=1}^L7 on Kleister-NDA, as well as RVL-CDIP accuracy B={bl}l=1LB=\{b_l\}_{l=1}^L8 (Peng et al., 2022). GraphLayoutLM augments LayoutLMv3 with a document layout structure graph, graph reordering, and layout-aware self-attention, reaching FUNSD-Base B={bl}l=1LB=\{b_l\}_{l=1}^L9 versus LayoutLMv3 R4\mathbb{R}^40, CORD-Base R4\mathbb{R}^41 versus R4\mathbb{R}^42, and XFUND-Chinese-Base R4\mathbb{R}^43 versus R4\mathbb{R}^44 (Li et al., 2023). XYLayoutLM instead uses Augmented XY Cut and DCPE to improve multilingual semantic entity recognition and relation extraction over LayoutXLM, with XFUN averages of R4\mathbb{R}^45 for SER and R4\mathbb{R}^46 for RE (Gu et al., 2022).

Realistic OCR settings motivate a further reformulation. ReLayout introduces ReVrDU and replaces dependence on manually annotated semantic groups with three pre-training heads: MLM, 1D Local Order Prediction, and 2D Text Segment Clustering (Jiang et al., 2024). Its combined loss is

R4\mathbb{R}^47

with R4\mathbb{R}^48 and R4\mathbb{R}^49, and S={sk}k=1KS'=\{s'_k\}_{k=1}^K0 applied only in the final epoch (Jiang et al., 2024). In the ReVrDU setting, ReLayout_Base reports FUNSD F1 S={sk}k=1KS'=\{s'_k\}_{k=1}^K1, CORD F1 S={sk}k=1KS'=\{s'_k\}_{k=1}^K2, and DocVQA ANLS S={sk}k=1KS'=\{s'_k\}_{k=1}^K3, outperforming OCR-only LayoutLMv3 and LayoutMASK variants; its ablation study attributes the largest single gain to 1-LOP, with S={sk}k=1KS'=\{s'_k\}_{k=1}^K4 F1 on FUNSD-P (Jiang et al., 2024).

End-to-end pixel-based models provide an alternative to OCR dependence. DUBLIN is a seq2seq system with roughly S={sk}k=1KS'=\{s'_k\}_{k=1}^K5 million trainable parameters, pre-trained with Masked Document Text Generation, Bounding Box, and Rendered Question Answering tasks on rendered webpages and QA corpora (Aggarwal et al., 2023). It reports DocVQA ANLS S={sk}k=1KS'=\{s'_k\}_{k=1}^K6, CORD F1 S={sk}k=1KS'=\{s'_k\}_{k=1}^K7, WebSRC S={sk}k=1KS'=\{s'_k\}_{k=1}^K8 EM/F1, and strong results on infographics, AI2D, OCR-VQA, and table QA (Aggarwal et al., 2023). MarkupLM occupies a different niche: it is render-free, HTML-native, and uses token-, node-, and page-level objectives over text plus DOM structure, reporting WebSRC dev EM/F1/POS S={sk}k=1KS'=\{s'_k\}_{k=1}^K9 for MarkupLM_BASE and S={sk}k=1KS=\{s_k\}_{k=1}^K0 for MarkupLM_LARGE (Li et al., 2021).

4. Benchmarks, tasks, and evaluation

The dedicated VRDU benchmark introduced in 2022 was designed to address overly simple schemas, minimal layout complexity, homogeneous templates, OCR inconsistency, and the lack of token-level ground truth in earlier document information extraction datasets (Wang et al., 2022). It contains two datasets drawn from U.S. government filings: Registration Forms with S={sk}k=1KS=\{s_k\}_{k=1}^K1 scanned PDF pages and Ad-Buy Forms with S={sk}k=1KS=\{s_k\}_{k=1}^K2 scanned pages (Wang et al., 2022). The benchmark defines three settings—Single Template Learning, Mixed Template Learning, and Unseen Template Learning—with a fixed test set of S={sk}k=1KS=\{s_k\}_{k=1}^K3 documents and training sizes of S={sk}k=1KS=\{s_k\}_{k=1}^K4, S={sk}k=1KS=\{s_k\}_{k=1}^K5, S={sk}k=1KS=\{s_k\}_{k=1}^K6, and S={sk}k=1KS=\{s_k\}_{k=1}^K7 (Wang et al., 2022). Its type-aware matching normalizes numeric values, parses dates, and uses punctuation-normalized comparison for free text; hierarchical line-items are matched only if all components align in order (Wang et al., 2022).

Widely used downstream benchmarks remain central to comparative evaluation. FUNSD and CORD are standard for token- or entity-level extraction with F1; DocVQA is standard for extractive QA with ANLS; RVL-CDIP is standard for document classification with accuracy; Form-NLU has become important for entity retrieval and multi-format form understanding; and multilingual variants such as XFUND probe language transfer (Xu et al., 2020, Ding et al., 2024). More recent benchmarks substantially broaden the stress conditions. MosaicDoc contains S={sk}k=1KS=\{s_k\}_{k=1}^K8 pages from newspapers and magazines in English and Chinese, over S={sk}k=1KS=\{s_k\}_{k=1}^K9 QA pairs, (xmin,ymin,xmax,ymax)(x_{\min}, y_{\min}, x_{\max}, y_{\max})0 publishers, and annotations for OCR, DocVQA, reading order, and localization, explicitly targeting dense multi-column and non-Manhattan layouts (Chen et al., 13 Nov 2025).

Benchmark or dataset Document/task profile Primary metrics
VRDU benchmark Registration Forms and Ad-Buy Forms; STL, MTL, UTL micro-F(xmin,ymin,xmax,ymax)(x_{\min}, y_{\min}, x_{\max}, y_{\max})1, macro-F(xmin,ymin,xmax,ymax)(x_{\min}, y_{\min}, x_{\max}, y_{\max})2
FUNSD / CORD / SROIE form and receipt key information extraction entity- or field-level F1
DocVQA document visual question answering ANLS
RVL-CDIP document image classification accuracy
Form-NLU / VRD-IU entity retrieval and end-to-end localization on multi-format forms F1, mAP
MosaicDoc OCR, DocVQA, reading order, content-aware localization ANLSL, CRR, OCRR, F1, IoU-based scores

Metric design in VRDU reflects task heterogeneity. F1 remains standard for extraction and relation tasks; ANLS and ANLSL are used for document QA; mAP appears in localization settings; and OCR or grounding tasks use character recognition or IoU-based measures (Wang et al., 2022, Chen et al., 13 Nov 2025). Benchmark evidence repeatedly shows that template generalization is unresolved: in the VRDU benchmark, moving from mixed-template to unseen-template evaluation costs roughly (xmin,ymin,xmax,ymax)(x_{\min}, y_{\min}, x_{\max}, y_{\max})3–(xmin,ymin,xmax,ymax)(x_{\min}, y_{\min}, x_{\max}, y_{\max})4 points in micro-F(xmin,ymin,xmax,ymax)(x_{\min}, y_{\min}, x_{\max}, y_{\max})5 on Registration Forms at (xmin,ymin,xmax,ymax)(x_{\min}, y_{\min}, x_{\max}, y_{\max})6 training pages, while line-item extraction remains near zero in very low-data regimes (Wang et al., 2022). MosaicDoc extends this diagnosis to modern VLMs, reporting that all models break on multi-span reasoning, dense layouts, and cross-column reading, with paragraph-level reading order far weaker than line-level ordering (Chen et al., 13 Nov 2025).

5. Robustness, domain adaptation, and deployment constraints

Real-world VRDU is constrained by annotation scarcity, OCR noise, handwriting, and domain-specific vocabularies. DAViD addresses this through synthetic annotation generation plus joint-grained representation learning over fine-grained tokens and coarse-grained entities (Ding et al., 2024). Its domain adaptation stage applies Structural Domain Shifting, Synthetic Sequence Tagging, and Synthetic Instructed Tuning; on CORD with only a small guidance set, the joint-grained backbone achieves (xmin,ymin,xmax,ymax)(x_{\min}, y_{\min}, x_{\max}, y_{\max})7 F1 versus (xmin,ymin,xmax,ymax)(x_{\min}, y_{\min}, x_{\max}, y_{\max})8 for UDOP, and adding L2V, SDS, and SST raises F1 to (xmin,ymin,xmax,ymax)(x_{\min}, y_{\min}, x_{\max}, y_{\max})9 (Ding et al., 2024). On printed Form-NLU, entity-level accuracy rises from hi=Wf[xiT;vi;posi]+bf,h_i = W_f\bigl[x_i^T; v_i; pos_i\bigr] + b_f,0 with LXMERT to hi=Wf[xiT;vi;posi]+bf,h_i = W_f\bigl[x_i^T; v_i; pos_i\bigr] + b_f,1 with SDS+SIT, and on handwritten forms from hi=Wf[xiT;vi;posi]+bf,h_i = W_f\bigl[x_i^T; v_i; pos_i\bigr] + b_f,2 to hi=Wf[xiT;vi;posi]+bf,h_i = W_f\bigl[x_i^T; v_i; pos_i\bigr] + b_f,3 (Ding et al., 2024).

Few-shot and efficiency-oriented adaptation are addressed by FS-DAG, a modular graph model with hi=Wf[xiT;vi;posi]+bf,h_i = W_f\bigl[x_i^T; v_i; pos_i\bigr] + b_f,4 million parameters and a frozen language backbone plus a light visual encoder and two GNN layers (Agarwal et al., 22 May 2025). In a 5-shot regime it reports average F1 hi=Wf[xiT;vi;posi]+bf,h_i = W_f\bigl[x_i^T; v_i; pos_i\bigr] + b_f,5 without OCR errors and hi=Wf[xiT;vi;posi]+bf,h_i = W_f\bigl[x_i^T; v_i; pos_i\bigr] + b_f,6 with OCR errors, a drop of hi=Wf[xiT;vi;posi]+bf,h_i = W_f\bigl[x_i^T; v_i; pos_i\bigr] + b_f,7, whereas LayoutLMv3 drops from hi=Wf[xiT;vi;posi]+bf,h_i = W_f\bigl[x_i^T; v_i; pos_i\bigr] + b_f,8 to hi=Wf[xiT;vi;posi]+bf,h_i = W_f\bigl[x_i^T; v_i; pos_i\bigr] + b_f,9 (Agarwal et al., 22 May 2025). On WildReceipt, FS-DAG reaches Attention(Q,K,V)=softmax ⁣(QKdk)V\mathrm{Attention}(Q,K,V)=\mathrm{softmax}\!\Bigl(\frac{QK^\top}{\sqrt{d_k}}\Bigr)V0 versus LayoutLMv3 Attention(Q,K,V)=softmax ⁣(QKdk)V\mathrm{Attention}(Q,K,V)=\mathrm{softmax}\!\Bigl(\frac{QK^\top}{\sqrt{d_k}}\Bigr)V1 and LayoutLMv2 Attention(Q,K,V)=softmax ⁣(QKdk)V\mathrm{Attention}(Q,K,V)=\mathrm{softmax}\!\Bigl(\frac{QK^\top}{\sqrt{d_k}}\Bigr)V2, while inference latency is Attention(Q,K,V)=softmax ⁣(QKdk)V\mathrm{Attention}(Q,K,V)=\mathrm{softmax}\!\Bigl(\frac{QK^\top}{\sqrt{d_k}}\Bigr)V3 ms/document versus Attention(Q,K,V)=softmax ⁣(QKdk)V\mathrm{Attention}(Q,K,V)=\mathrm{softmax}\!\Bigl(\frac{QK^\top}{\sqrt{d_k}}\Bigr)V4 s for LayoutLMv3 (Agarwal et al., 22 May 2025).

Handwriting and localization remain a separate deployment difficulty. A document-specific augmentation pipeline for VRDIU Track B creates pseudo-handwritten variants with InkBleed, Letterpress, low-ink lines, JPEG artifacts, DirtyScreen, and mild rotation, then trains Faster R-CNN or Mask R-CNN on the union of original and augmented images (Dai, 10 Feb 2025). The reported effect is higher handwritten mAP for several backbones, including ResNet-101 + Faster R-CNN Attention(Q,K,V)=softmax ⁣(QKdk)V\mathrm{Attention}(Q,K,V)=\mathrm{softmax}\!\Bigl(\frac{QK^\top}{\sqrt{d_k}}\Bigr)V5, DiT + Mask R-CNN Attention(Q,K,V)=softmax ⁣(QKdk)V\mathrm{Attention}(Q,K,V)=\mathrm{softmax}\!\Bigl(\frac{QK^\top}{\sqrt{d_k}}\Bigr)V6, and LayoutLMv3 + Mask R-CNN Attention(Q,K,V)=softmax ⁣(QKdk)V\mathrm{Attention}(Q,K,V)=\mathrm{softmax}\!\Bigl(\frac{QK^\top}{\sqrt{d_k}}\Bigr)V7, with small digital-set drops (Dai, 10 Feb 2025). In the VRD-IU competition itself, Track A entity-based retrieval reaches Attention(Q,K,V)=softmax ⁣(QKdk)V\mathrm{Attention}(Q,K,V)=\mathrm{softmax}\!\Bigl(\frac{QK^\top}{\sqrt{d_k}}\Bigr)V8 public and private F1 for the top team, whereas Track B end-to-end localization peaks at Attention(Q,K,V)=softmax ⁣(QKdk)V\mathrm{Attention}(Q,K,V)=\mathrm{softmax}\!\Bigl(\frac{QK^\top}{\sqrt{d_k}}\Bigr)V9 public mAP but only Ei=Eitext+Eipos1D+Eiseg+Eixpath,E_i = E_i^{text} + E_i^{pos1D} + E_i^{seg} + E_i^{xpath},0 private mAP, indicating that localization is materially harder under realistic shift (Ding et al., 2 Jun 2025).

Privacy-sensitive and low-resource domains motivate retrieval-guided synthetic supervision. Docs2Synth processes raw scans, generates and verifies synthetic QA pairs, tunes a lightweight visual retriever over OCR entities, and then uses an iterative retrieval–generation loop with an MLLM (Ding et al., 18 Jan 2026). It reports retriever top-1 recall above Ei=Eitext+Eipos1D+Eiseg+Eixpath,E_i = E_i^{text} + E_i^{pos1D} + E_i^{seg} + E_i^{xpath},1 on Form-NLU, CORD, and Ephoie, and end-to-end gains of Ei=Eitext+Eipos1D+Eiseg+Eixpath,E_i = E_i^{text} + E_i^{pos1D} + E_i^{seg} + E_i^{xpath},2 points on printed Form-NLU, Ei=Eitext+Eipos1D+Eiseg+Eixpath,E_i = E_i^{text} + E_i^{pos1D} + E_i^{seg} + E_i^{xpath},3 on CORD, and Ei=Eitext+Eipos1D+Eiseg+Eixpath,E_i = E_i^{text} + E_i^{pos1D} + E_i^{seg} + E_i^{xpath},4 on Ephoie over the best zero-shot MLLM baselines, while reducing hallucination errors by over Ei=Eitext+Eipos1D+Eiseg+Eixpath,E_i = E_i^{text} + E_i^{pos1D} + E_i^{seg} + E_i^{xpath},5 in a manual audit of Ei=Eitext+Eipos1D+Eiseg+Eixpath,E_i = E_i^{text} + E_i^{pos1D} + E_i^{seg} + E_i^{xpath},6 samples (Ding et al., 18 Jan 2026). This suggests that grounded retrieval has become a practical complement to generative VRDU rather than a competing paradigm.

6. Open problems and emerging directions

Several unresolved issues now organize the research frontier. The first is robustness to real-world structure. ReVrDU shows that methods depending on perfect semantic grouping can deteriorate sharply when only OCR segments are available, while the original VRDU benchmark shows that unseen-template generalization and hierarchical field extraction remain difficult even for strong multimodal models (Jiang et al., 2024, Wang et al., 2022). A common misconception is therefore that high scores on FUNSD or CORD alone establish broad document competence.

The second is the OCR-dependent versus OCR-free trade-off. OCR-dependent pipelines benefit from mature OCR and lower visual token counts, but they inherit OCR errors and two-stage failure cascades; OCR-free systems can learn recognition and reasoning jointly, but they require high-resolution encoding, compression, and large-scale pretraining (Ding et al., 14 Jul 2025). DUBLIN, Donut-style models, and newer MLLM pipelines indicate that OCR-free modeling is viable, yet ReLayout and related work argue that realistic OCR settings still deserve dedicated modeling rather than being treated as a solved preprocessing step (Aggarwal et al., 2023, Jiang et al., 2024).

The third is long-document and dense-layout reasoning. QA surveys identify cross-page reasoning, sparse global-local attention, retrieval-augmented generation, and recurrent memory as active directions for multi-page inputs (Barboule et al., 4 Jan 2025). MosaicDoc adds evidence that multi-span QA, paragraph-level reading order, and localization in dense newspapers remain weak for current VLMs, even when line-level ordering is relatively strong (Chen et al., 13 Nov 2025). This suggests that future progress depends not only on larger backbones but also on explicit modeling of reading sequences, block relations, and answer grounding.

Recent surveys on MLLM-based VRDU emphasize several converging directions: modular, agent-based architectures; efficient adaptation via LoRA, projectors, visual token pruning, and correlation-guided compressors; enhanced layout reasoning through disentangled spatial attention, Group Positional Embeddings, and Layout-CoT; high-fidelity synthetic data with LLM-based validation and human-in-the-loop correction; retrieval-augmented and tool-augmented generation; and domain-specific scaling analyses (Ding et al., 14 Jul 2025). Parallel work on markup-native models, joint-grained distillation, and relation extraction suggests that VRDU is broadening from page-level field tagging into a more general document intelligence problem encompassing DOM structure, hierarchical grouping, graph relations, and evidence-grounded reasoning (Li et al., 2021, Ding et al., 2024, Adnan et al., 2024).

Definition Search Book Streamline Icon: https://streamlinehq.com
References (20)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Visually-Rich Document Understanding (VRDU).