REVIEW 3 major objections 7 minor 93 references
Jointly encoding document pages cuts retrieval errors by 16 points
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · glm-5.2
2026-07-08 20:10 UTC pith:OIFQFPNP
load-bearing objection Solid benchmark + method for contextual multimodal retrieval; main concern is train-eval-filter three-way alignment inflating the gap. the 3 major comments →
CMDR: Contextual Multimodal Document Retrieval
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
The paper's central discovery is that the independent-page encoding assumption used by current multimodal document retrievers is a substantial performance bottleneck for contextual queries. When pages are encoded jointly in overlapping chunks and then split, the resulting page-level embeddings carry cross-page contextual information that enables retrieval of pages whose relevance is not explicitly stated in the query but must be inferred from surrounding pages. The 16.2-point gain over a matched non-contextual baseline, combined with ablations showing that both the contextual encoding and the CMCL contrastive objective contribute independently, establishes that the architecture of encoding,
What carries the argument
CMDR-Embed uses a chunk-then-split encoding pipeline: a sliding window groups consecutive document pages into chunks of size w with stride s, each chunk is processed jointly by a vision-language model, and the resulting token-level representations are separated back into per-page embeddings. Page-level similarity to a query is computed via Late Interaction, which sums the maximum dot product between each query token vector and the page's token vectors. Training uses CMCL loss, a weighted combination of a standard in-batch InfoNCE loss and a context-aware loss that treats other pages from the same chunk (in-chunk negatives) and other pages from the same document but outside the current chunk
Load-bearing premise
The benchmark's 800 human-annotated queries across four author-defined categories are assumed to adequately represent the full space of contextual retrieval needs in real-world documents. The synthetic training data is generated to match exactly these four categories using LLM prompts that mirror the benchmark's task structure, creating a tight train-eval distribution alignment that could inflate the measured gains relative to what would be observed on naturally occurring检索
What would settle it
If a non-contextual retriever, given the same backbone and training data, could match CMDR-Embed's performance by simply increasing the number or diversity of hard negatives during training, the contextual encoding architecture would not be the causal source of the improvement. Alternatively, if the benchmark's query categories were expanded to include contextual retrieval scenarios not anticipated by the four defined types, and CMDR-Embed's advantage disappeared on those new categories, the gains would be specific to the benchmark's task definition rather than evidence for the general value
If this is right
- Document retrieval systems that currently encode pages independently could adopt joint encoding with modest computational overhead, since the paper reports indexing latency comparable to the backbone model.
- The benchmark's four query categories (text completion, coreference resolution, structured understanding, multi-hop reasoning) provide a diagnostic framework for identifying specific failure modes in existing retrievers, particularly in coreference and multi-hop scenarios where all models scored lowest.
- The finding that training data gains saturate around 20k-40k instances while the contextual architecture continues to outperform suggests that architectural design, not data scaling, is the current limiting factor for contextual document retrieval.
- The multitask learning result showing that contextual and non-contextual retrieval can coexist without degradation suggests future systems can adopt joint encoding as a default without sacrificing standard retrieval performance.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper introduces CMDR-Bench, a benchmark for contextual multimodal document retrieval where queries require cross-page reasoning to identify the relevant page, and CMDR-Embed, a model that jointly encodes multiple pages via a sliding window and derives page-level embeddings from a shared contextual representation. The benchmark comprises 800 human-annotated queries across four categories (Text Completion, Coreference Resolution, Structured Understanding, Multi-hop Reasoning) over 255 long documents. CMDR-Embed is trained with a contextual multimodal contrastive learning objective (CMCL) that balances context-aware hard negatives (in-chunk and in-document) with standard in-batch negatives. Experiments show CMDR-Embed outperforming finetuned non-contextual baselines by 13.5–16.2 nDCG@5 points, with ablations isolating the contribution of each component.
Significance. The paper addresses a genuine gap: existing multimodal document retrieval benchmarks do not evaluate indirect, context-dependent retrieval across pages. The chunk-then-split architecture is a natural and well-motivated adaptation of late-chunking ideas to the visual document setting. The experimental design is thorough: ablations (Table 3) isolate CMCL components, the same training data is used for finetuned baselines to control for data effects, efficiency is analyzed (Fig. 7, Table 4), and generalization to non-contextual retrieval is tested (Table 5). The inclusion of Recall@5 results (Table C.3), a reranker baseline (Table C.4), and OCR-quality analysis (Table C.5) strengthens the evaluation. The qualitative examples (Fig. 11) and error analysis (Figs. C.9–C.11) provide useful insight into failure modes.
major comments (3)
- §3.2, Data quality control: The benchmark filtering removes queries where three non-contextual retrievers (including ColPali, a Table 2 baseline) achieve average Recall@1 = 1.0, discarding 16% of queries as 'trivial.' This creates selection on the dependent variable: the test set is explicitly constructed to exclude queries solvable by non-contextual models, and those same models are then evaluated on the remaining harder subset. The 16.2-point gap between CMDR-Embed_Qwen and ColQwen+Finetuned is thus measured on a set optimized to disadvantage exactly the baseline it is compared against. The paper should either (a) report results on the full unfiltered set as well, or (b) explicitly acknowledge this as a scope limitation and reframe the magnitude claims accordingly. The current framing ('significantly outperforms') is defensible but the magnitude is difficult to interpret without the un
- §5.1 and Supplementary B: The training data CMDR-Synth is generated by LLM prompts that explicitly target the same four query categories used in the benchmark (step 3 prompt includes '{query type}'). This creates a train-eval distribution alignment that could inflate measured gains. While the paper controls for training data by finetuning baselines on CMDR-Synth (which is good practice), the synthetic data generation pipeline mirrors the benchmark's task structure, so both contextual and non-contextual models trained on CMDR-Synth benefit from this alignment. The paper should discuss this alignment explicitly and, if possible, report results on an out-of-distribution contextual retrieval set (e.g., DAPR or ConTEB) to assess transfer.
- Table 2, CR column: CMDR-Embed_Qwen achieves only 38.4 nDCG@5 on Coreference Resolution, a mere 3.6-point improvement over ColQwen+Finetuned (34.8), compared to 18.8 and 16.7 on TC and SU respectively. Since CR is one of the four categories that defines the benchmark and motivates the contextual encoding architecture, this weak result on a core category warrants discussion. The paper notes that CR and MR are 'particularly challenging' (§5.2) but does not analyze why the contextual architecture provides minimal benefit on CR specifically. This affects the central claim that joint encoding captures cross-page contextual relationships.
minor comments (7)
- §5.2: The claim of 'minimal computational overhead' is supported by Fig. 7, but the text does not state the specific indexing time numbers. Including the key numbers (e.g., 'X ms/page for ColPali+Finetune vs. Y ms/page for CMDR-Embed') in the text would make the claim more concrete.
- Table 5: CMDR-Embed_Qwen drops from 88.9 to 85.5 on ViDoRe non-contextual retrieval. The multitask variant recovers to 89.2 but drops on contextual (56.6→56.1). The trade-off should be discussed more explicitly in the text rather than only in the table.
- §4.1: The notation for chunk indexing uses s(t-1)+1 but does not clarify whether pages are 0-indexed or 1-indexed. Clarify.
- Figure 6: The x-axis labels '>3' for context distance are ambiguous. Consider using explicit bin labels like '1', '2', '3', '4+'.
- §3.2: The annotators are described as 'authors, who hold PhDs in computer science.' The number of annotators and inter-annotator agreement statistics are not reported. Adding these would strengthen the quality claim.
- Table C.4: Applying the reranker to CMDR-Embed_Pali actually hurts performance (49.8→41.0). The explanation that 'conventional rerankers are not explicitly trained to capture inter-page dependencies' is plausible but speculative; consider softening.
- Reference [29] (Qwen3-VL Embedding) is dated 2026. Confirm this is correct and not a typo for 2025.
Simulated Author's Rebuttal
We thank the referee for a thorough and constructive review. The referee correctly identifies three important concerns: (1) selection bias from filtering trivial queries using non-contextual retrievers, (2) train-eval distribution alignment between CMDR-Synth and CMDR-Bench, and (3) weak CR performance relative to other categories. We address each below and commit to revisions for all three.
read point-by-point responses
-
Referee: §3.2 Data quality control: filtering removes queries where three non-contextual retrievers achieve Recall@1=1.0, creating selection on the dependent variable. The 16.2-point gap is measured on a set optimized to disadvantage baselines. Should report results on full unfiltered set or acknowledge as scope limitation.
Authors: The referee raises a valid concern. We acknowledge that the filtering process introduces a form of selection bias: by removing queries solvable by non-contextual retrievers, the benchmark is explicitly scoped to contextual retrieval, and the magnitude of improvement over non-contextual baselines is measured on this harder subset. We agree this should be made transparent. In revision, we will: (a) report results on the full unfiltered set (before removal of the 16% trivial queries) so readers can see the complete picture, (b) explicitly reframe the scope of our magnitude claims, noting that the reported gains apply specifically to queries requiring contextual reasoning rather than to all possible retrieval queries over these documents, and (c) clarify in the benchmark description that CMDR-Bench is designed to evaluate contextual retrieval specifically, not general document retrieval. We note that the filtering was conducted with human oversight—annotators reviewed flagged queries and made revision or removal decisions—but the referee's point about interpretability of the magnitude is well taken. revision: yes
-
Referee: §5.1 and Supplementary B: CMDR-Synth generation prompts explicitly target the same four query categories as the benchmark, creating train-eval distribution alignment that could inflate gains. Should discuss this alignment and report OOD results (e.g., DAPR or ConTEB).
Authors: The referee correctly identifies that the synthetic training data generation pipeline mirrors the benchmark's task structure, since the query generation prompt (step 3) includes the query type. This is a legitimate concern. We will address it in two ways. First, we will add an explicit discussion of this alignment in the paper, acknowledging it as a potential limitation on the interpretability of absolute gains. Second, regarding OOD evaluation: DAPR and ConTEB are text-only, single-page benchmarks and thus not directly applicable to our multimodal, multi-page setting. However, we can report results on ViDoRe (Table 5 already provides partial evidence of generalization to non-contextual retrieval). For a contextual OOD test, we note that no existing multimodal benchmark evaluates contextual cross-page retrieval in the same formulation as CMDR-Bench, which is precisely the gap our benchmark fills. We will state this limitation honestly and note that constructing an independent contextual multimodal retrieval benchmark is an important direction for future work. We will also emphasize that the controlled comparison (finetuning baselines on the same CMDR-Synth data) isolates the architectural contribution of contextual encoding from the data contribution, even if both benefit from the train-eval alignment. revision: partial
-
Referee: Table 2, CR column: CMDR-Embed_Qwen achieves only 38.4 nDCG@5 on Coreference Resolution, a 3.6-point improvement over ColQwen+Finetuned (34.8), compared to 18.8 and 16.7 on TC and SU. Weak result on a core category warrants discussion of why contextual architecture provides minimal benefit on CR.
Authors: The referee is correct that the CR category shows the smallest gain from contextual encoding, and we agree this warrants deeper analysis. We will add a dedicated discussion in Section 5.2. Our analysis of CR errors reveals two main factors. First, coreference resolution often requires resolving references to entities or terms that appear on pages far from the relevant page—sometimes beyond the chunk window (w=4, s=2). When the context page lies outside the jointly encoded chunk, CMDR-Embed cannot leverage it, and performance degrades to approximately the non-contextual baseline level. This is consistent with Figure 6, which shows that performance drops as the context distance increases, particularly for in-chunk negatives. Second, CR queries frequently involve pronouns or abbreviations that are semantically generic (e.g., 'this,' 'the aforementioned'), making the query-page similarity signal weak regardless of contextualization. The contextual architecture helps when the context page provides disambiguating content that shifts the embedding, but when the referent is a generic token, the late-interaction mechanism has limited signal to exploit. We will add this analysis and note that extending the chunk window and incorporating bidirectional attention (as discussed in our Limitations section) are promising directions for improving CR specifically. revision: yes
Circularity Check
No derivation-level circularity found; one methodological concern (benchmark filtering with baseline models) is transparently reported and does not reduce the central claim to its inputs by construction.
full rationale
I examined the paper's derivation chain for circularity patterns: self-definitional reductions, fitted inputs called predictions, load-bearing self-citations, uniqueness imports, ansatz smuggling, and renamed known results. The paper is an empirical systems paper, not a theoretical derivation. Its central claim is that CMDR-Embed (joint multi-page encoding) outperforms non-contextual embeddings on CMDR-Bench. The architecture (chunk-then-split with late interaction) and training objective (CMCL, an InfoNCE variant with context-aware hard negatives) are defined independently of the evaluation results — no equation reduces to its inputs by construction. The authors do cite their own prior work ([47] VDocRAG, [48] SlideVQA, [49] VisualMRC), but these are related-work citations, not load-bearing for any derivation. The one legitimate methodological concern is that Section 3.2's benchmark quality control used three non-contextual retrievers (ColPali [17], VLM2Vec [23], NV-Embed [26]) to filter out 'trivial' queries (average Recall@1 = 1.0), and ColPali also appears as a Table 2 baseline. This creates selection bias that could inflate the contextual-vs-non-contextual gap. However, this is an evaluation methodology concern (selection on the dependent variable), not a circularity in a derivation chain: the paper does not fit a parameter to data and then predict the same quantity, nor does it define a quantity in terms of what it claims to derive. The paper is transparent about the filtering, the comparison controls for training data (ColQwen+Finetuned vs. CMDR-Embed_Qwen both trained on CMDR-Synth), and the ablation studies (Table 3) provide independent evidence for each component's contribution. The training data (CMDR-Synth) does mirror the benchmark's four query categories (Supplementary B, step 3 prompt includes '{query type}'), but this is standard task-aligned training data construction, and the same data is given to baseline models. Score 2 reflects the minor methodological concern without rising to construction-level circularity.
Axiom & Free-Parameter Ledger
free parameters (5)
- λ (CMCL loss weight) =
0.5
- τ (temperature) =
0.02
- s (stride length) =
2
- w (window size) =
4
- LoRA α, r =
32, 32
axioms (4)
- domain assumption Cross-page contextual information improves page-level retrieval for queries that require reasoning across multiple pages.
- domain assumption Late interaction (multi-vector matching) preserves fine-grained token-level representations better than single-vector pooling for document retrieval.
- domain assumption Causal attention in LVLMs is sufficient to capture useful contextual information from preceding pages.
- domain assumption Synthetic training data generated by Qwen2.5-VL 72B can effectively train contextual retrieval models.
read the original abstract
Multimodal document retrieval aims to retrieve relevant pages while preserving both textual and visual content from the original document. However, existing benchmarks primarily evaluate simple lexical or semantic matching, and most methods encode pages independently. Consequently, they overlook the contextual information in the document required to resolve queries that aggregate information across multiple pages. In this paper, we introduce CMDR and CMDR-Bench, a new multimodal document retrieval task and benchmark that require modeling document context. To address this challenge, we propose CMDR-Embed, a contextual multimodal embedding framework that explicitly incorporates document context by jointly encoding multiple pages and deriving page-level embeddings from a shared contextual representation. Furthermore, we introduce CMCL, a contextual multimodal contrastive learning objective that effectively trains CMDR-Embed by balancing contextual modeling with page-level discriminability. Experiments demonstrate that CMDR-Embed significantly outperforms non-contextual embeddings, highlighting the importance of context-aware multimodal embeddings for advancing document retrieval.
Figures
Reference graph
Works this paper leans on
-
[1]
Phi-3 Technical Report: A Highly Capable Language Model Locally on Your Phone
Abdin, M., Jacobs, S.A., Awan, A.A., Aneja, J., Awadallah, A., Awadalla, H., Bach, N., Bahree, A., Bakhtiari, A., Behl, H., et al.: Phi-3 technical report: A highly capable language model locally on your phone. arXiv:2404.14219 (2024)
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[2]
Achiam, J., Adler, S., Agarwal, S., Ahmad, L., Akkaya, I., Aleman, F.L., Almeida, D., Altenschmidt, J., Altman, S., Anadkat, S., et al.: GPT-4 technical report. arXiv:2303.08774 (2023)
work page internal anchor Pith review Pith/arXiv arXiv 2023
-
[3]
Alayrac, J.B., Donahue, J., Luc, P., Miech, A., Barr, I., Hasson, Y., Lenc, K., Mensch, A., Millican, K., Reynolds, M., et al.: Flamingo: a visual language model for few-shot learning. In: NeurIPS. pp. 23716–23736 (2022)
work page 2022
-
[4]
Bai, S., Chen, K., Liu, X., Wang, J., Ge, W., Song, S., Dang, K., Wang, P., Wang, S., Tang, J., et al.: Qwen2.5-VL technical report. arXiv:2502.13923 (2025)
work page internal anchor Pith review Pith/arXiv arXiv 2025
-
[5]
Computer networks and ISDN systems30(1-7), 107–117 (1998)
Brin, S., Page, L.: The anatomy of a large-scale hypertextual web search engine. Computer networks and ISDN systems30(1-7), 107–117 (1998)
work page 1998
-
[6]
Chen, J., Li, M., Kil, J., Wang, C., Yu, T., Rossi, R., Zhou, T., Chen, C., Zhang, R.: Visr-bench: An empirical study on visual retrieval-augmented generation for multilingual long document understanding. arXiv:2508.07493 (2025)
work page internal anchor Pith review Pith/arXiv arXiv 2025
-
[7]
Chen, J., Xiao, S., Zhang, P., Luo, K., Lian, D., Liu, Z.: BGE M3-Embedding: Multi-lingual, multi-functionality, multi-granularity text embeddings through self- knowledge distillation. arXiv:2402.03216 (2024)
work page internal anchor Pith review Pith/arXiv arXiv 2024
- [8]
- [9]
-
[10]
Reducing the Footprint of Multi-Vector Retrieval with Minimal Performance Impact via Token Pooling
Clavié, B., Chaffin, A., Adams, G.: Reducing the footprint of multi-vector retrieval with minimal performance impact via token pooling. arXiv:2409.14683 (2024)
work page internal anchor Pith review Pith/arXiv arXiv 2024
- [11]
-
[12]
Dao, T., Fu, D., Ermon, S., Rudra, A., Ré, C.: FlashAttention: Fast and memory- efficient exact attention with io-awareness. In: NeurIPS. pp. 16344–16359 (2022)
work page 2022
-
[13]
Deng, C., Yuan, J., Bu, P., Wang, P., Li, Z.Z., Xu, J., Li, X.H., Gao, Y., Song, J., Zheng, B., et al.: LongDocURL: a comprehensive multimodal long document benchmark integrating understanding, reasoning, and locating. In: ACL. pp. 1135– 1159 (2025)
work page 2025
-
[14]
Devlin, J., Chang, M., Lee, K., Toutanova, K.: BERT: pre-training of deep bidirec- tional transformers for language understanding. In: NAACL-HLT. pp. 4171–4186 (2019)
work page 2019
- [15]
-
[16]
Dong, K., Chang, Y., Huang, S., Wang, Y., Tang, R., Liu, Y.: Benchmark- ing retrieval-augmented multimodal generation for document question answering. arXiv:2505.16470 (2025)
-
[17]
In: ICLR (2025) CMDR: Contextual Multimodal Document Retrieval 17
Faysse, M., Sibille, H., Wu, T., Viaud, G., Hudelot, C., Colombo, P.: ColPali: Efficient document retrieval with vision language models. In: ICLR (2025) CMDR: Contextual Multimodal Document Retrieval 17
work page 2025
-
[18]
Late Chunking: Contextual Chunk Embeddings Using Long-Context Embedding Models
Günther, M., Mohr, I., Williams, D.J., Wang, B., Xiao, H.: Late Chunking: con- textual chunk embeddings using long-context embedding models. arXiv preprint arXiv:2409.04701 (2024)
work page internal anchor Pith review Pith/arXiv arXiv 2024
- [19]
-
[20]
Hu, E.J., Shen, Y., Wallis, P., Allen-Zhu, Z., Li, Y., Wang, S., Wang, L., Chen, W.: LoRA: Low-rank adaptation of large language models. In: ICLR (2022)
work page 2022
-
[21]
Unsupervised Dense Information Retrieval with Contrastive Learning
Izacard, G., Caron, M., Hosseini, L., Riedel, S., Bojanowski, P., Joulin, A., Grave, E.: Unsupervised dense information retrieval with contrastive learning. arXiv:2112.09118 (2021)
work page internal anchor Pith review Pith/arXiv arXiv 2021
-
[22]
E5-V: Universal Embeddings with Multimodal Large Language Models
Jiang, T., Song, M., Zhang, Z., Huang, H., Deng, W., Sun, F., Zhang, Q., Wang, D., Zhuang, F.: E5-V: Universal embeddings with multimodal large language models. arXiv:2407.12580 (2024)
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[23]
Jiang, Z., Meng, R., Yang, X., Yavuz, S., Zhou, Y., Chen, W.: VLM2Vec: Training vision-language models for massive multimodal embedding tasks. In: ICLR (2025)
work page 2025
-
[24]
Kamalloo, E., Thakur, N., Lassance, C., Ma, X., Yang, J.H., Lin, J.: Resources for brewing beir: Reproducible reference models and an official leaderboard (2023)
work page 2023
- [25]
- [26]
- [27]
- [28]
-
[29]
Li, M., Zhang, Y., Long, D., Chen, K., Song, S., Bai, S., Yang, Z., Xie, P., Yang, A., Liu, D., et al.: Qwen3-vl-embedding and qwen3-vl-reranker: A unified framework for state-of-the-art multimodal retrieval and ranking. arXiv:2601.04720 (2026)
work page internal anchor Pith review Pith/arXiv arXiv 2026
-
[30]
Focus Anywhere for Fine-grained Multi-page Document Understanding
Liu, C., Wei, H., Chen, J., Kong, L., Ge, Z., Zhu, Z., Zhao, L., Sun, J., Han, C., Zhang, X.: Focus anywhere for fine-grained multi-page document understanding. arXiv:2405.14295 (2024)
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[31]
Foundations and Trends® in Information Retrieval3(3), 225–331 (2009)
Liu, T.Y.: Learning to rank for information retrieval. Foundations and Trends® in Information Retrieval3(3), 225–331 (2009)
work page 2009
-
[32]
Liu, Z., Liu, Z., Liang, Z., Zhou, J., Xiao, S., Gao, C., Zhang, C.J., Lian, D.: Any information is just worth one single screenshot: Unifying search with visualized information retrieval. In: ACL. pp. 19238–19261 (2025)
work page 2025
-
[33]
Decoupled Weight Decay Regularization
Loshchilov, I., Hutter, F.: Decoupled weight decay regularization. arXiv:1711.05101 (2017)
work page internal anchor Pith review Pith/arXiv arXiv 2017
-
[34]
BM25S: Orders of magnitude faster lexical search via eager sparse scoring
Lù,X.H.:Bm25s: Ordersof magnitudefasterlexical search viaeager sparsescoring. preprint arXiv:2407.03618 (2024)
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[35]
Unifying Multimodal Retrieval via Document Screenshot Embedding
Ma, X., Lin, S.C., Li, M., Chen, W., Lin, J.: Unifying multimodal retrieval via document screenshot embedding. arXiv:2406.11251 (2024)
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[36]
Ma, X., Zhuang, S., Koopman, B., Zuccon, G., Chen, W., Lin, J.: Visa: Retrieval augmented generation with visual source attribution. In: ACL. pp. 30154–30169 (2025)
work page 2025
-
[37]
Ma, Y., Zang, Y., Chen, L., Chen, M., Jiao, Y., Li, X., Lu, X., Liu, Z., Ma, Y., Dong, X., et al.: MMLongBench-Doc: Benchmarking long-context document 18 R. Tanaka et al. understanding with visualizations. NeurIPS Datasets and Benchmarks Track pp. 95963–96010 (2024)
work page 2024
-
[38]
Macé, Q., Loison, A., Faysse, M.: ViDoRe Benchmark V2: Raising the bar for visual retrieval. arXiv:2505.17166 (2025)
-
[39]
Manualslib: manualslib.com.https://www.manualslib.com/(2024), accessed on April-May, 2025
work page 2024
- [40]
- [41]
-
[42]
Representation Learning with Contrastive Predictive Coding
Oord, A.v.d., Li, Y., Vinyals, O.: Representation learning with contrastive predic- tive coding. arXiv:1807.03748 (2018)
work page internal anchor Pith review Pith/arXiv arXiv 2018
-
[43]
co / datasets / pixparse/pdfa-eng-wds(2024)
Pablo Montalvo, R.W.: pdfa-eng-wds.https : / / huggingface . co / datasets / pixparse/pdfa-eng-wds(2024)
work page 2024
- [44]
-
[45]
Foundations and Trends®in Information Retrieval3(4), 333–389 (2009)
Robertson, S., Zaragoza, H., et al.: The probabilistic relevance framework: BM25 and beyond. Foundations and Trends®in Information Retrieval3(4), 333–389 (2009)
work page 2009
- [46]
- [47]
- [48]
- [49]
-
[50]
Teiletche, P., Macé, Q., Conti, M., Loison, A., Viaud, G., Colombo, P., Faysse, M.: Modernvbert: Towards smaller visual document retrievers. arXiv:2510.01149 (2025)
-
[51]
Pattern Recognition144, 109834 (2023)
Tito, R., Karatzas, D., Valveny, E.: Hierarchical multimodal transformers for mul- tipage docvqa. Pattern Recognition144, 109834 (2023)
work page 2023
-
[52]
Tong, A., Niu, X., Liu, Z., Tian, C., Wei, Y., Shi, Z., Wang, M.: HKRAG: Holistic knowledge retrieval-augmented generation over visually-rich documents. arXiv:2511.20227 (2025)
-
[53]
Wang, K., Reimers, N., Gurevych, I.: DAPR: A benchmark on document-aware passage retrieval. In: ACL. pp. 4313–4330 (2024)
work page 2024
-
[54]
Text Embeddings by Weakly-Supervised Contrastive Pre-training
Wang, L., Yang, N., Huang, X., Jiao, B., Yang, L., Jiang, D., Majumder, R., Wei, F.: Text embeddings by weakly-supervised contrastive pre-training. arXiv:2212.03533 (2022)
work page internal anchor Pith review Pith/arXiv arXiv 2022
-
[55]
Wang, Q., Ding, R., Zeng, Y., Chen, Z., Chen, L., Wang, S., Xie, P., Huang, F., Zhao, F.: Vrag-rl: Empower vision-perception-based rag for visually rich informa- tion understanding via iterative reasoning with reinforcement learning. NeurIPS pp. 57133–57160 (2026)
work page 2026
- [56]
-
[57]
General OCR Theory: Towards OCR-2.0 via a Unified End-to-end Model
Wei, H., Liu, C., Chen, J., Wang, J., Kong, L., Xu, Y., Ge, Z., Zhao, L., Sun, J., Peng, Y., et al.: General ocr theory: Towards ocr-2.0 via a unified end-to-end model. arXiv:2409.01704 (2024) CMDR: Contextual Multimodal Document Retrieval 19
work page internal anchor Pith review Pith/arXiv arXiv 2024
- [58]
- [59]
- [60]
-
[61]
Yu, S., Tang, C., Xu, B., Cui, J., Ran, J., Yan, Y., Liu, Z., Wang, S., Han, X., Liu, Z., et al.: VisRAG: Vision-based retrieval-augmented generation on multi-modality documents. In: ICLR (2025)
work page 2025
- [62]
- [63]
- [64]
-
[65]
Retrieval Augmented Generation and Understanding in Vision: A Survey and New Outlook
Zheng, X., Weng, Z., Lyu, Y., Jiang, L., Xue, H., Ren, B., Paudel, D., Sebe, N., Van Gool, L., Hu, X.: Retrieval augmented generation and understanding in vision: A survey and new outlook. arXiv:2503.18016 (2025)
work page internal anchor Pith review Pith/arXiv arXiv 2025
-
[66]
No” (i.e., “Not self-contained
Zhu, F., Lei, W., Feng, F., Wang, C., Zhang, H., Chua, T.S.: Towards complex document understanding by discrete reasoning. In: ACMM. pp. 4857–4866 (2022) 20 R. Tanaka et al. CMDR: Contextual Multimodal Document Retrieval Supplementary Material ACMDR-BenchDetails Table A.1: Main statisticsof docu- ments and queries inCMDR-Bench. Statistics Number Total Doc...
work page 2022
-
[67]
- At first glance, it should seem that the answer could be in Image 1
The query should appear to be about Image 1, but the correct answer is found only in Image 2. - At first glance, it should seem that the answer could be in Image 1. - Only by reading both pages carefully should it become clear that the answer is actually in Image 2
-
[68]
The query must require contextual understanding across both pages, not a simple keyword search
-
[69]
Query Type: {query type}
-
[70]
- Do not include explicit hints or keywords that would guide the reader to look into Image 2
Do not quote or copy any text from Image 2 directly into the query. - Do not include explicit hints or keywords that would guide the reader to look into Image 2
-
[71]
Only output the query in the specified format without any additional explanation
-
[72]
Use only one question word and keep the query in a single sentence. Output Format: Query: <Your query here> (4) Filtering low-quality queries.Given the prompt below, the context page image (Image 1), and the relevant page image (Image 2), we feed them into Qwen2.5-VL 72B to identify and filter out low-quality or rule-violating queries. CMDR: Contextual Mu...
-
[73]
Apparent Focus on Image 1 - The query should initially appear to ask about Image 1. - It should be plausible that a reader might expect the answer to be found in Image 1 at first glance
-
[74]
- Image 1 alone must be insufficient to answer the query correctly
Answer Actually Located in Image 2 - The correct answer must be found only in Image 2. - Image 1 alone must be insufficient to answer the query correctly
-
[75]
- The answer should NOT be obtainable via simple keyword matching or surface-level lookup
Cross-Page Contextual Reasoning Required - The query must require integrating contextual information across both images. - The answer should NOT be obtainable via simple keyword matching or surface-level lookup
-
[76]
- The query must NOT contain explicit hints or keywords that clearly direct the reader to Image 2
No Leakage from Image 2 - The query must NOT quote or directly copy text from Image 2. - The query must NOT contain explicit hints or keywords that clearly direct the reader to Image 2
-
[77]
- Be written as a single sentence
Single Question Word & Single Sentence - The query must: - Contain exactly one question word (What, Why, When, Where, Who, How). - Be written as a single sentence
-
[78]
- If it does not match the intended reasoning type, mark it as invalid
Query Type Consistency - The query must match the specified Query Type: {query_type}. - If it does not match the intended reasoning type, mark it as invalid. Output Format: Valid: Yes or No Reasoning: - Criterion 1: Pass or Fail – brief explanation - Criterion 2: Pass or Fail – brief explanation - Criterion 3: Pass or Fail – brief explanation - Criterion ...
-
[79]
R. E. Fikes, N. J. Nilsson. STRIPS: a new approach to the application of theorem proving to problem solving. Artificial Intelligence, 2(3-4):189-208
-
[80]
R. James Firby. An investigation into reactive planning in complex domains. Proceedings of the 6th National Conference on AI, Seattle, WA, July 1987, 1987
work page 1987
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.