REVIEW 4 major objections 6 minor 1 cited by
Document Haystacks: Vision-Language Reasoning Over Piles of 1000+ Documents
T0 review · 4 major / 6 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read Large multimodal models can answer questions over a 1,000-document haystack when paired with a vision-centric retrieval pipeline, and the proposed V-RAG framework achieves the highest reported scores on two new benchmarks.
desk verdict Useful benchmark at a genuinely new scale, but the unique-answer guarantee is unproven and the test sets are too small to support the 'new standard' claim. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The machinery is V-RAG, a two-stage vision-centric retrieval pipeline. In stage one, an ensemble of three pretrained vision-language encoders, CLIP, SigLIP, and OpenCLIP, computes cosine similarity $S(q, D_j) = \cos(\phi_t(q), \phi_v(D_j))$ between the question and each document image; the three scores are averaged to produce $\mathrm{Sim}_{\mathrm{avg}}$, and the top-60 documents are kept. In stage two, an LMM is prompted with each candidate image and the question ('Can this image provide answers to this question? Only answer yes or no') to discard irrelevant documents, and the top-5 remaining images are passed to the VQA module, optionally fine-tuned with distractor images. The load-bearing design choice is that retrieval happens in image space rather than after OCR, so the pipeline does not depend on text extraction.
What would settle it
Run all retained questions through GPT-4o and an open LMM without any images; if a substantial fraction, say more than 5%, can be answered correctly from the question alone, the generic-knowledge filter failed and the VQA scores overstate visual understanding. Likewise, OCR all 1,000 documents and search for each question's answer text: any question whose answer string appears in multiple documents would violate the uniqueness guarantee.
Extended reading notes
Core claim
The central claim is that a vision-centric retrieval pipeline lets large multimodal models answer questions over thousands of document images where direct input is impossible. The benchmark construction assumes a three-stage filter, LLM screening, manual review, and OCR-based uniqueness checks, guarantees each retained question has a unique, document-specific answer. V-RAG's design treats retrieval as a two-stage process: an ensemble of CLIP, SigLIP, and OpenCLIP computes averaged cosine similarities between question text and each document image, a vision-language model then filters the top candidates by asking 'Can this image provide answers to this question?', and the surviving top-k images go to a VQA model. The paper's evidence is the Recall@1 gains and the VQA accuracy improvements across GPT-4o, Gemini, LLaVA-OneVision, and Qwen2-VL, with the fine-tuned Qwen2-VL + V-RAG reaching the headline numbers on both 1000-document benchmarks.
Load-bearing premise
The benchmark's integrity rests on the assumption that the three-stage filtering, LLM screening, manual review, and OCR-based uniqueness search, guarantees every retained question has exactly one answer among the 1,000 documents and cannot be answered from general knowledge or memorized training data.
Editorial extensions
If this is right
- V-RAG's two-stage design means existing LMMs that cannot natively handle 1,000 images, such as GPT-4o, Gemini, Qwen2-VL, and LLaVA-OneVision, can all be evaluated on these benchmarks, and every one improves when retrieval is added.
- The 1,000-document splits leave headroom: the best reported VQA accuracy is 73.39% on DocHaystack-1000 and 60.00% on InfoHaystack-1000, so retrieval-and-reasoning over document collections is not a solved problem.
- Retrieval results depend on the full pipeline: on DocHaystack-1000, CLIP alone reaches 23.85% Recall@1 while the full V-RAG reaches 66.06%, implying the gains come from the ensemble and LMM-filter rather than any single encoder.
- Fine-tuning the VQA module with 1 to 10 randomly sampled distractor images per question improves answer robustness and produces the top reported numbers, suggesting distractors are a useful training signal for multi-image QA.
Reading between the lines
- The three-stage filtering pipeline could be reused to expand DocHaystack-style benchmarks to even larger pools or other document-VQA sources, which would help isolate whether retrieval accuracy or reasoning capacity is the binding constraint at higher scales.
- Because V-RAG's first stage is a simple score average over independent encoders, any new image-text model could be dropped into the ensemble without retraining, making the framework an architecture that improves automatically as encoders improve.
- A testable expectation: V-RAG's advantage over BM25/OCR-based retrieval should be largest on visually dense documents where OCR loses layout or small-font information, and smallest on clean text documents; observing that gradient would confirm the retrieval is genuinely visual rather than text-mediated.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces DocHaystack and InfoHaystack, two document-retrieval and visual-question-answering benchmarks built from DocVQA and InfographicVQA, with the largest setting requiring retrieval from a pool of 1,000 documents per question. A three-stage filtering pipeline (LLM screening, manual review, and OCR-based uniqueness search) is used to enforce that each question has a unique, document-specific answer that cannot be answered from language priors. The paper also proposes V-RAG, a retrieval-augmented generation framework that combines an ensemble of CLIP, SigLIP, and OpenCLIP similarity scores with an LMM-based relevance filter and an LMM-VQA module. Experiments report that V-RAG outperforms previous retrieval baselines by 9% and 11% Recall@1 on DocHaystack-1000 and InfoHaystack-1000, and that integrating V-RAG with LMMs—especially a fine-tuned Qwen2-VL—substantially improves VQA accuracy on the new benchmarks.
Significance. If the benchmarks are valid, they fill a real gap: existing multi-image VQA benchmarks pair each question with at most about 30 images, while the 1,000-document setting is a more realistic test of large-scale visual retrieval. The V-RAG pipeline is simple and sensible, and the ablation in Table 4 shows that each component contributes, with the LMM-filter providing the largest gain. The paper also commits to releasing code and datasets, which would enable reproducibility. However, the benchmark-construction pipeline is the load-bearing part of the paper, and its validation is incomplete; the small test sets and the lack of uncertainty quantification further weaken the quantitative claims. The overall direction appears sound, but the manuscript needs substantial additional evidence before the headline numbers can be trusted.
major comments (4)
- [Section 3 and Table 1] The benchmark's central guarantee that every retained question has exactly one valid answer among the 1,000-document pool is never validated on the final evaluation sets. The paper reports no counts of how many questions were removed at each filtering stage, no information on how distractor documents were sampled, no confirmation that the OCR uniqueness search was run against the exact evaluation pools, and no inter-annotator agreement for the manual review. Moreover, Table 1 reports the no-vision protocol on the source datasets, not on the final 109 DocHaystack and 155 InfoHaystack questions, so it does not demonstrate that the final benchmark is free of language-answerable or ambiguous questions. Since GPT-4o answers 26.4% of DocVQA and 54.9% of InfographicVQA questions without vision, the filter is doing substantial work, and a few remaining such questions could account for the headline 9-11 point Recall@1 gains. The authors should re-run the no-vision protocol on the final questions, report the per-stage filtering statistics, and describe how the 1,000-document pools were constructed for each question.
- [Section 5.1 and final dataset profile] The fine-tuning set for Qwen2-VL-f.t. is built from the same DocVQA and InfographicVQA sources as the test set, and the paper does not state that the 2,835 training questions and their associated documents are disjoint from the 109/155 test questions and their evidence documents. Without an explicit disjointness statement or a deduplication step, the large VQA gains of Qwen2-VL-f.t.+V-RAG over Qwen2-VL+V-RAG in Table 3 could be inflated by memorization of test answers during fine-tuning rather than by improved retrieval and reasoning. The authors should report the overlap check and, if any overlap exists, retrain and re-evaluate after removing overlapping questions.
- [Tables 2 and 3] The test sets contain only 109 (DocHaystack-1000) and 155 (InfoHaystack-1000) questions, so the headline 9-point and 11-point Recall@1 gains correspond to approximately 10 and 17 correct questions, respectively. No confidence intervals or significance tests are reported. The consistent ordering across the 100/200/1000 settings and the ablation in Table 4 support the qualitative conclusion, but the quantitative claims need uncertainty quantification, such as bootstrap confidence intervals or an exact McNemar test, to show that the observed differences are not within sampling noise.
- [Section 5.1] The hyperparameters m=60 and k=5 are stated without a selection procedure or a sensitivity analysis. Because these values are chosen on the same benchmark that is used for the headline results, and because the LMM-filter itself is a trained model applied at inference, the risk of overfitting the benchmark is nontrivial. The authors should describe the validation split used to select m and k and report sensitivity of Recall@1 and VQA accuracy to these values (for example, m in {20, 40, 60, 80} and k in {1, 3, 5}).
minor comments (6)
- [Abstract and Introduction] The abstract and introduction state that the 9% and 11% improvements are over 'previous best text-to-image retrieval methods,' but the best DocHaystack-1000 baseline in Table 2 is BM25, a text-based method operating on OCR output, not a text-to-image retrieval model. This wording should be corrected.
- [References] Reference [3] is cited in Section 5.1 for Qwen2-VL, but the entry is for 'Qwen-VL,' and the author list contains repeated names; reference [1] for Gemini points to a blog post rather than a technical report. Please update these citations.
- [Table 1] The table label 'LLaV A-Onevision' contains a spurious space, and the caption says the evaluation is 'from our dataset' while the text describes it as applying to the original DocVQA and InfographicVQA data; clarify which data the percentages refer to.
- [Figure 4] The question-type categories in Figure 4 (for example, 'Form', 'Layout', 'Visual/Layout') are not defined in the text, and the caption does not explain how a single question can fall into multiple categories. A short definition and a note on the multi-label nature would improve interpretability.
- [Section 5.2] The sentence 'The table presents VQA results...' does not refer to a table number, and the final sentence of that section, 'underscores the difficulty our benchmarks,' is missing the word 'of.'
- [Section 4 and 5.1] The method description emphasizes high-resolution image encoding for LMMs, but Section 5.1 says that low-resolution mode and adjusted image sizes are used for GPT-4o and Qwen2-VL when processing hundreds of images; clarify which resolution is used for the top-k retrieved documents in the VQA stage.
Circularity Check
No significant circularity: V-RAG's reported gains are empirical evaluations against an independent benchmark, not conclusions that reduce to the paper's own fitting choices.
full rationale
This is an empirical benchmark-and-method paper rather than a derivation, and I find no step in which a reported 'prediction' is equivalent by construction to an input or to a self-citation. The benchmark filters source questions to enforce uniqueness and non-answerability from language priors, but the filtering procedure does not define the retrieval metric or the VQA accuracy; the final Recall@1 values on DocHaystack-1000 and InfoHaystack-1000 remain contingent on model behavior and could in principle go either way. V-RAG combines external pretrained encoders (CLIP, SigLIP, OpenCLIP) with an LMM relevance filter and a VQA module; none of these components is fitted to the benchmark's ground-truth answers in a way that forces the reported 66.06 and 64.52 Recall@1 or the 73.39 and 60.00 VQA numbers. The authors' self-citations (MiniGPT-v2, MiniGPT-4, VQA4CIR) appear only in related-work positioning and are not load-bearing. The use of GPT-4o to filter generic-knowledge questions and GPT-4o-mini to judge answer correctness is a potential evaluation-validity concern, and the lack of an explicit disjointness statement between the 2,835-question fine-tuning set and the 109/155 test questions is a data-hygiene risk, but neither is a circularity by construction: the paper's central claim is not logically forced by these choices. Per the hard rule against speculation, I do not upgrade the score without a quoted reduction.
Assumptions & free parameters
free parameters (4)
- m (number of candidates sent to LMM-filter) =
60
- k (number of documents given to LMM-VQA) =
5
- Equal ensemble weights for Simavg =
1/3 each
- Qwen2-VL fine-tuning hyperparameters =
LoRA rank 8, lr 1e-4, batch 32, 1 epoch
assumptions (4)
- domain assumption Every question in DocHaystack and InfoHaystack has exactly one valid answer among the document pool.
- domain assumption GPT-4o can reliably identify questions answerable without image input, and GPT-4o-mini can reliably judge answer correctness.
- domain assumption The 1,000-document pools are representative negative distractors, not cherry-picked to make retrieval artificially hard or easy.
- domain assumption The evaluated LMMs have not memorized the test questions from DocVQA and InfographicVQA during pretraining or fine-tuning.
Cite this review
Pith. "Pith review of Document Haystacks: Vision-Language Reasoning Over Piles of 1000+ Documents." pith.science (2026). https://pith.science/paper/X7XQ7B2X
@misc{pith2026241116740,
author = {Pith},
title = {Pith review of: Document Haystacks: Vision-Language Reasoning Over Piles of 1000+ Documents},
year = {2026},
howpublished = {\url{https://pith.science/paper/X7XQ7B2X}},
note = {Machine review of arXiv:2411.16740}
}
read the original abstract
Large multimodal models (LMMs) have achieved impressive progress in vision-language understanding, yet they face limitations in real-world applications requiring complex reasoning over a large number of images. Existing benchmarks for multi-image question-answering are limited in scope, each question is paired with only up to 30 images, which does not fully capture the demands of large-scale retrieval tasks encountered in the real-world usages. To reduce these gaps, we introduce two document haystack benchmarks, dubbed DocHaystack and InfoHaystack, designed to evaluate LMM performance on large-scale visual document retrieval and understanding. Additionally, we propose V-RAG, a novel, vision-centric retrieval-augmented generation (RAG) framework that leverages a suite of multimodal vision encoders, each optimized for specific strengths, and a dedicated question-document relevance module. V-RAG sets a new standard, with a 9% and 11% improvement in Recall@1 on the challenging DocHaystack-1000 and InfoHaystack-1000 benchmarks, respectively, compared to the previous best baseline models. Additionally, integrating V-RAG with LMMs enables them to efficiently operate across thousands of images, yielding significant improvements on our DocHaystack and InfoHaystack benchmarks. Our code and datasets are available at https://github.com/Vision-CAIR/dochaystacks
Figures
Figures from the paper (2 more)
Forward citations
Cited by 1 Pith paper
-
Engineering RAG Systems for Real-World Applications: Design, Development, and Evaluation
A field study of five real-world RAG systems evaluated by 100 users, yielding user ratings and twelve engineering lessons.
Reference graph
Works this paper leans on
-
[1]
Gemini: Google’s multimodal ai model
Google AI. Gemini: Google’s multimodal ai model. Google AI Research, 2024. https://fireflies.ai/blog/ gemini-vs-gpt-4 . 2, 3, 7
work page 2024
-
[2]
Self-rag: Learning to retrieve, gen- erate, and critique through self-reflection
Akari Asai, Zeqiu Wu, Yizhong Wang, Avirup Sil, and Hannaneh Hajishirzi. Self-rag: Learning to retrieve, gen- erate, and critique through self-reflection. arXiv preprint arXiv:2310.11511, 2023. 3
arXiv 2023
-
[3]
Yifan Bai, Zhen Zhang, Yifan Zhang, Yuxuan Li, Yi- fan Zhang, Yifan Zhang, Yifan Zhang, Yifan Zhang, Yi- fan Zhang, Yifan Zhang, et al. Qwen-vl: A frontier vision-language model with larger-scale vision pre-training and aligned cross-modal instruction tuning. arXiv preprint arXiv:2310.06726, 2023. 2, 6
-
[4]
Sentence-level prompts benefit composed image retrieval
Yang Bai, Xinxing Xu, Yong Liu, Salman Khan, Fahad Khan, Wangmeng Zuo, Rick Siow Mong Goh, and Chun- Mei Feng. Sentence-level prompts benefit composed image retrieval. In Proceedings of the International Conference on Learning Representations (ICLR), 2024. Spotlight Presenta- tion. 3
work page 2024
-
[5]
Visual question answering on image sets
Aayush Bansal, Karan Sikka, Gaurav Sharma, and Rama Chellappa. Visual question answering on image sets. In Pro- ceedings of the European Conference on Computer Vision (ECCV), pages 35–51, 2020. 3
work page 2020
-
[6]
An introduction to vision-language modeling
Florian Bordes, Richard Yuanzhe Pang, Anurag Ajay, Alexander C Li, Adrien Bardes, Suzanne Petryk, Oscar Ma˜nas, Zhiqiu Lin, Anas Mahmoud, Bargav Jayaraman, et al. An introduction to vision-language modeling. arXiv preprint arXiv:2405.17247, 2024. 2
arXiv 2024
-
[7]
Webqa: Multihop and multimodal qa
Yingshan Chang, Mridu Narang, Hisami Suzuki, Guihong Cao, Jianfeng Gao, and Yonatan Bisk. Webqa: Multihop and multimodal qa. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 14178–14188, 2022. 1, 3
work page 2022
-
[8]
Minigpt-v2: Large language model as a unified interface for vision-language multi-task learning
Jun Chen, Deyao Zhu, Xiaoqian Shen, Xiang Li, Zechun Liu, Pengchuan Zhang, Raghuraman Krishnamoorthi, Vikas Chandra, Yunyang Xiong, and Mohamed Elhoseiny. Minigpt-v2: Large language model as a unified interface for vision-language multi-task learning. arXiv preprint arXiv:2310.15339, 2023. 2, 3
Show all 47 references
-
[9]
Wenhu Chen, Hexiang Hu, Xi Chen, Pat Verga, and William W. Cohen. MuRAG: Multimodal retrieval- augmented generator for open question answering over im- ages and text. In Proceedings of the 2022 Conference on Em- pirical Methods in Natural Language Processing (EMNLP), pages 555...
2022
-
[10]
Bert: Pre-training of deep bidirectional trans- formers for language understanding
Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional trans- formers for language understanding. In Proceedings of the 2019 Conference of the North American Chapter of the As- sociation for Computational Linguistics: Human L...
2019
-
[11]
Vqa4cir: Boosting composed image re- trieval with visual question answering
Chun-Mei Feng, Yang Bai, Tao Luo, Zhen Li, Salman Khan, Wangmeng Zuo, Xinxing Xu, Rick Siow Mong Goh, and Yong Liu. Vqa4cir: Boosting composed image re- trieval with visual question answering. arXiv preprint arXiv:2312.12273, 2023. 2, 3
2023 arXiv
-
[12]
Making the V in VQA matter: Ele- vating the role of image understanding in Visual Question Answering
Yash Goyal, Tejas Khot, Douglas Summers-Stay, Dhruv Ba- tra, and Devi Parikh. Making the V in VQA matter: Ele- vating the role of image understanding in Visual Question Answering. In Conference on Computer Vision and Pattern Recognition (CVPR), 2017. 2, 3
2017
-
[13]
Realm: Retrieval-augmented lan- guage model pre-training
Kelvin Guu, Kenton Lee, Zora Tung, Panupong Pasupat, and Ming-Wei Chang. Realm: Retrieval-augmented lan- guage model pre-training. In Proceedings of the 37th In- ternational Conference on Machine Learning (ICML), pages 3929–3938. PMLR, 2020. 3
2020
-
[14]
Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen- Zhu, Yuanzhi Li, Shean Wang, Lu Wang, and Weizhu Chen
Edward J. Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen- Zhu, Yuanzhi Li, Shean Wang, Lu Wang, and Weizhu Chen. Lora: Low-rank adaptation of large language models, 2021. 7
2021
-
[15]
Gqa: A new dataset for real-world visual reasoning and compositional question answering
Drew A Hudson and Christopher D Manning. Gqa: A new dataset for real-world visual reasoning and compositional question answering. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition , pages 6700– 6709, 2019. 2
2019
-
[16]
Open- clip
Gabriel Ilharco, Mitchell Wortsman, Ross Wightman, Cade Gordon, Nicholas Carlini, Rohan Taori, Achal Dave, Vaishaal Shankar, Hongseok Namkoong, John Miller, Han- naneh Hajishirzi, Ali Farhadi, and Ludwig Schmidt. Open- clip. 2021. If you use this software, please cite it as be...
2021
-
[17]
Dense passage retrieval for open-domain question answering
Vladimir Karpukhin, Barlas O ˘guz, Sewon Min, Patrick Lewis, Ledell Wu, Sergey Edunov, Danqi Chen, and Wen- tau Yih. Dense passage retrieval for open-domain question answering. In Proceedings of the 2020 Conference on Em- pirical Methods in Natural Language Processing (EMNLP),...
2020
-
[18]
Jina clip: Your clip model is also your text re- triever, 2024
Andreas Koukounas, Georgios Mastrapas, Michael G ¨unther, Bo Wang, Scott Martens, Isabelle Mohr, Saba Sturua, Mo- hammad Kalim Akram, Joan Fontanals Mart´ınez, Saahil Og- nawala, Susana Guzman, Maximilian Werk, Nan Wang, and Han Xiao. Jina clip: Your clip model is also your te...
2024
-
[19]
Shamma, Michael S
Ranjay Krishna, Yuke Zhu, Oliver Groth, Justin Johnson, Kenji Hata, Joshua Kravitz, Stephanie Chen, Yannis Kalan- tidis, Li-Jia Li, David A. Shamma, Michael S. Bernstein, and Li Fei-Fei. Visual genome: Connecting language and vision using crowdsourced dense image annotations. ...
2017
-
[20]
Llava-onevision: Easy visual task transfer
Bo Li, Yuanhan Zhang, Dong Guo, Renrui Zhang, Feng Li, Hao Zhang, Kaichen Zhang, Peiyuan Zhang, Yanwei Li, Zi- wei Liu, and Chunyuan Li. Llava-onevision: Easy visual task transfer. arXiv preprint arXiv:2408.03326, 2024. 2, 3, 6, 7 9
2024 arXiv
-
[21]
A convnet for the 2020s
Zhuang Liu, Hanzi Mao, Chao-Yuan Wu, Christoph Feicht- enhofer, Trevor Darrell, and Saining Xie. A convnet for the 2020s. In Proceedings of the IEEE/CVF Conference on Com- puter Vision and Pattern Recognition (CVPR), pages 11976– 11986, 2022. 6
2022
-
[22]
Learn to explain: Multimodal reasoning via thought chains for sci- ence question answering
Pan Lu, Tony Xia, Weicheng Shi, Ahmed El Kholy, Xi Victor Lin, Jianfeng Gao, Xiang Chen, and Kai-Wei Chang. Learn to explain: Multimodal reasoning via thought chains for sci- ence question answering. In Advances in Neural Information Processing Systems, 2022. 2
2022
-
[23]
Mathvista: Evaluating mathemat- ical reasoning of foundation models in visual contexts.arXiv preprint arXiv:2310.02255, 2023
Pan Lu, Hritik Bansal, Tony Xia, Jiacheng Liu, Chunyuan Li, Hannaneh Hajishirzi, Hao Cheng, Kai-Wei Chang, Michel Galley, and Jianfeng Gao. Mathvista: Evaluating mathemat- ical reasoning of foundation models in visual contexts.arXiv preprint arXiv:2310.02255, 2023. 2, 3
-
[24]
SAIL: Search-augmented instruction learning
Hongyin Luo, Yung-Sung Chuang, Yuan Gong, Tianhua Zhang, Yoon Kim, Xixin Wu, Danny Fox, Helen Meng, and James Glass. SAIL: Search-augmented instruction learning. arXiv preprint arXiv:2305.15225, 2023. 3
2023 arXiv
-
[25]
Ok-vqa: A visual question answering benchmark requiring external knowledge
Kenneth Marino, Mohammad Rastegari, Ali Farhadi, and Roozbeh Mottaghi. Ok-vqa: A visual question answering benchmark requiring external knowledge. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pages 3195–3204, 2019. 2
2019
-
[26]
Chartqa: A benchmark for question an- swering about charts with visual and logical reasoning
Ahmed Masry, Do Xuan Long, Jia Qing Tan, Shafiq Joty, and Enamul Hoque. Chartqa: A benchmark for question an- swering about charts with visual and logical reasoning. In Findings of the Association for Computational Linguistics: ACL 2022, pages 2263–2279, 2022. 2
2022
-
[27]
Info- graphicvqa
Minesh Mathew, Viraj Bagal, Rub `en P ´erez Tito, Dimos- thenis Karatzas, Ernest Valveny, and CV Jawahar. Info- graphicvqa. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 4390– 4399, 2021. 2, 3
2021
-
[28]
Docvqa: A dataset for vqa on document images
Minesh Mathew, Dimosthenis Karatzas, and CV Jawahar. Docvqa: A dataset for vqa on document images. In Proceed- ings of the IEEE/CVF Winter Conference on Applications of Computer Vision, pages 2200–2209, 2021. 2, 3
2021
-
[29]
Nomic embed vision: Expanding the latent space, 2024
Zach Nussbaum, Brandon Duderstadt, and Andriy Mulyar. Nomic embed vision: Expanding the latent space, 2024. 6, 7
2024
-
[30]
Gpt-4o: Enhanced multimodal language model
OpenAI. Gpt-4o: Enhanced multimodal language model. OpenAI Research , 2024. https : / / openai . com / index/hello-gpt-4o/. 2, 3, 4, 6, 7
2024
-
[31]
Gpt-4v: Multimodal language model with vision capabilities
OpenAI. Gpt-4v: Multimodal language model with vision capabilities. OpenAI Research, 2024. https://openai. com/index/gpt-4/. 2
2024
-
[32]
Answer mining from a pool of images: Towards retrieval-based visual question answering
Abhirama Subramanyam Penamakuri, Manish Gupta, Mithun Das Gupta, and Anand Mishra. Answer mining from a pool of images: Towards retrieval-based visual question answering. In Proceedings of the International Joint Con- ference on Artificial Intelligence (IJCAI), pages 1052–1058,
-
[33]
Learn- ing transferable visual models from natural language super- vision
Alec Radford, Jong Wook Kim, Karthik Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. Learn- ing transferable visual models from natural language super- vision. In Proceedings of the 38th International Conf...
2021
-
[34]
Faster r-cnn: Towards real-time object detection with region proposal networks
Shaoqing Ren, Kaiming He, Ross Girshick, and Jian Sun. Faster r-cnn: Towards real-time object detection with region proposal networks. Advances in Neural Information Pro- cessing Systems, 28, 2015. 3
2015
-
[35]
A-okvqa: A benchmark for visual question answering using world knowl- edge
Dustin Schwenk, Apoorv Khandelwal, Christopher Clark, Kenneth Marino, and Roozbeh Mottaghi. A-okvqa: A benchmark for visual question answering using world knowl- edge. In European Conference on Computer Vision (ECCV), pages 1–17, 2022. 2
2022
-
[36]
Tesseract ocr engine
Ray Smith et al. Tesseract ocr engine. https://github. com/tesseract- ocr/tesseract, 2024. Accessed: 2024-11-06. 5
2024
-
[37]
Multimodalqa: Com- plex question answering over text, tables, and images
Alon Talmor, Sewon Min, Robin Jia, Yanai Elazar, Uriel Singer Hasson, and Danqi Chen. Multimodalqa: Com- plex question answering over text, tables, and images. In Proceedings of the International Conference on Learning Representations (ICLR), 2021. 2, 3
2021
-
[38]
Slidevqa: A dataset for document visual question answering on multiple images
Ryota Tanaka, Kyosuke Nishida, Kosuke Nishida, Taku Hasegawa, Itsumi Saito, and Kuniko Saito. Slidevqa: A dataset for document visual question answering on multiple images. In Proceedings of the AAAI Conference on Artificial Intelligence, pages 13636–13645, 2023. 3
2023
-
[39]
Mini-gemini: An efficient and versatile vision-language model
Ke Wang, Yichi Zhang, and Hongsheng Li. Mini-gemini: An efficient and versatile vision-language model. arXiv preprint arXiv:2310.12345, 2023. 2
2023 arXiv
-
[40]
Measuring multimodal mathe- matical reasoning with math-vision dataset
Ke Wang, Junting Pan, Weikang Shi, Zimu Lu, Mingjie Zhan, and Hongsheng Li. Measuring multimodal mathe- matical reasoning with math-vision dataset. arXiv preprint arXiv:2402.14804, 2024. 2
2024 arXiv
-
[41]
Qwen2-vl: Enhancing vision-language model’s perception of the world at any resolution
Peng Wang, Shuai Bai, Sinan Tan, Shijie Wang, Zhihao Fan, Jinze Bai, Keqin Chen, Xuejing Liu, Jialin Wang, Wenbin Ge, et al. Qwen2-vl: Enhancing vision-language model’s perception of the world at any resolution. arXiv preprint arXiv:2409.12191, 2024. 2, 3, 7
2024 arXiv
-
[42]
Needle in a multimodal haystack
Weiyun Wang, Shuibo Zhang, Yiming Ren, Yuchen Duan, Tiantong Li, Shuo Liu, Mengkang Hu, Zhe Chen, Kaipeng Zhang, Lewei Lu, et al. Needle in a multimodal haystack. arXiv preprint arXiv:2406.07230, 2024. 3
2024 arXiv
-
[43]
Gonzalez, Trevor Darrell, and David M
Tsung-Han Wu, Giscard Biamby, Jerome Quenum, Ritwik Gupta, Joseph E. Gonzalez, Trevor Darrell, and David M. Chan. Visual haystacks: A vision-centric needle-in-a- haystack benchmark. arXiv preprint arXiv:2407.13766 ,
-
[44]
Mmmu: A massive multi-discipline multimodal understanding and reasoning benchmark for ex- pert agi
Xiang Yue, Yuansheng Ni, Kai Zhang, Tianyu Zheng, Ruoqi Liu, Ge Zhang, Samuel Stevens, Dongfu Jiang, Weiming Ren, Yuxuan Sun, et al. Mmmu: A massive multi-discipline multimodal understanding and reasoning benchmark for ex- pert agi. arXiv preprint arXiv:2311.16502, 2024. 2, 3
2024 arXiv
-
[45]
Sigmoid loss for language image pre-training
Xiaohua Zhai, Basil Mustafa, Alexander Kolesnikov, and Lucas Beyer. Sigmoid loss for language image pre-training. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), pages 11975–11985, 2023. 3, 6, 7
2023
-
[46]
Mathverse: Does your multi-modal llm truly see the diagrams in visual math prob- lems? arXiv preprint arXiv:2403.14624, 2024
Renrui Zhang, Dongzhi Jiang, Yichi Zhang, Haokun Lin, Ziyu Guo, Pengshuo Qiu, Aojun Zhou, Pan Lu, Kai-Wei 10 Chang, Peng Gao, and Hongsheng Li. Mathverse: Does your multi-modal llm truly see the diagrams in visual math prob- lems? arXiv preprint arXiv:2403.14624, 2024. 2, 3
2024 arXiv
-
[47]
Minigpt-4: Enhancing vision-language understanding with advanced large language models
Deyao Zhu, Jun Chen, Xiaoqian Shen, Xiang Li, and Mo- hamed Elhoseiny. Minigpt-4: Enhancing vision-language understanding with advanced large language models. In In- ternational Conference on Learning Representations (ICLR),
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.