Papers for

document analysis teams

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

Visual retrieval system improves answers by selecting and organizing images

Navigating Sparse Evidence: Agentic Visual RAG via Explicit Context Selection and Consolidation

Abstract: Visual Retrieval-Augmented Generation (VRAG) empowers models to navigate and answer queries about visually rich documents by retrieving relevant page images as visual evidence and reasoning over their content. However, effectively utilizing this visual evidence is usually impeded by two main challenges. First, answer-relevant evidence is sparse and may be concentrated in a small region of one page or dispersed across multiple pages. Second, existing agentic methods often generate answers based on raw exploration trajectories or compressed textual memories rather than an explicitly organized set of supporting images, making answers susceptible to exploration noise and obscuring the evidence-backed reasoning trace. We argue that the bottleneck lies not only in evidence discovery but also in its preservation and organization before answer generation. We propose SCoRE (Selection and Consolidation for Robust Evidence), a unified agent loop for explicit evidence selection and consolidation. During exploration, SCoRE retains only query-relevant observations and their source pointers in a maintained textual ledger, preserving earlier evidence while keeping the visual context bounded. At termination, it reloads the referenced original images and consolidates the visual evidence for answering, arranging it into a logical sequence. This decouples final reasoning from exploratory trial-and-error while ensuring strict visual grounding via indexed claim-to-image linkages. To enable end-to-end optimization of this unified rollout, our training paradigm combines filtered cold-start trajectory distillation with evidence-aware reinforcement learning, whose reward promotes evidence coverage, consolidation compactness, and answer correctness.

Mon 14 SeptArtificial Intelligence
The gist
Sometimes, finding the right pictures to answer questions about complex documents is hard because important information is rare or scattered. The authors designed a system called SCoRE that carefully chooses only the relevant images while exploring and then organizes them clearly before giving an answer. This makes the answers more reliable and easier to understand because they come directly from chosen pictures instead of confusing notes. The system learns by practicing with example question paths and rewards that encourage finding good evidence and clear explanations.
Open 2609.15800v1

Enhancing table detection across many languages with masking

EMBLEM: Enhancing Multi-script Table Detection through Masking

Abstract: Table detection is a core task in document analysis, supporting downstream applications such as information retrieval, document reconstruction, and visual question answering. While existing deep learning models perform well on English and Chinese documents, they struggle with multilingual, multi-script documents due to script diversity and the limited availability of labeled data. To address this challenge, we introduce MANDALA (Multi-script Annotated Documents for Table Detection), a manually curated dataset of 2,323 table-containing pages spanning 18 languages and 15 scripts across diverse domains. We also propose EMBLEM, a masking-based paradigm for Multi-script Table Detection (MTD). EMBLEM generates masked images that conceal script- and font-specific details, enabling models pre-trained on abundant English documents to focus on script-agnostic page layout. Experiments across three table detection architectures show that EMBLEM consistently outperforms strong baselines on MANDALA while remaining competitive on five standard English-dominant benchmarks. Using only English masked images for fine-tuning, with no multi-script training data, EMBLEM achieves an absolute F1-score gain of 20.8% on MANDALA. We release MANDALA along with the accompanying code and models at https://github.com/IITB-LEAP-OCR/EMBLEM.git.

Tue 8 SeptMachine Learning
The gist
Table detection helps computers find tables in documents, but most methods work only well on English or Chinese text. The authors created a new dataset called MANDALA with tables in 18 languages and 15 scripts to study this problem better. They developed a method named EMBLEM that hides specific script and font details so the computer focuses on the overall layout, improving detection on multiple languages. This approach works better on the new dataset and still performs well on English documents. They share their data and code for others to use.
Open 2609.08330v1