REVIEW 4 major objections 6 minor 1 cited by
Verifying Cross-modal Entity Consistency in News using Vision-language Models
T0 review · 4 major / 6 minor · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read Large vision-language models can verify, entity by entity, whether the people, places, and events named in a news article actually appear in its photo, and adding web-crawled evidence images improves accuracy for persons and events.
desk verdict Useful task formulation and prompting ideas, but the evaluation is under-specified enough that the headline accuracy numbers are not yet interpretable. 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 mechanism is a per-entity yes/no question template posed to an LVLM, combined with an evidence-image aggregation strategy. Entity extraction uses spaCy and Wikifier to find persons, locations, and events; the model's output is restricted to yes/no token classes to avoid free-form hallucination; and evidence images crawled from Google, Bing, and Wikidata are merged into a composite image (single-image LVLMs) or presented as a series (multi-image LVLMs), with majority voting producing the final decision. This machinery lets a zero-shot model ground each named entity in visual evidence rather than guessing from the news image alone.
What would settle it
Re-annotate a random sample of the TamperedNews-Ent and News400-Ent entities with at least two independent annotators and measure inter-annotator agreement; if agreement is low, or if the corrected labels move the reported accuracy gaps, the claims that evidence images help persons and events and that LVLMs beat the CNN baseline for locations and events would not stand. A simpler check is to download the released datasets and confirm that the annotated entity counts match Table 1.
Extended reading notes
Core claim
On its own terms, the paper's central discovery is that off-the-shelf LVLMs, asked simple yes/no visibility questions, can perform entity-level cross-modal verification without any task-specific training. When evidence images of an entity are added—either as a bordered composite image for single-image models or as an image series for multi-image models, with majority voting over the answers—accuracy rises for persons and events on TamperedNews-Ent and News400-Ent. For locations, evidence images do not help on average, because search-engine images for coarse place names often depict different landmarks or a different entity altogether. At the document level, the LVLM approach beats the CNN baseline for locations and events, while the baseline retains an advantage on person identification.
Load-bearing premise
The manual ground-truth labels that score every model are treated as reliable, yet they come from a single annotator with no reported inter-annotator agreement, and the paper's dataset description conflicts with its own table of statistics; if the labels are noisy, every accuracy figure and every baseline comparison rests on shaky ground.
Editorial extensions
If this is right
- Fact-checking pipelines could use the framework to flag the specific entity a news photo contradicts, rather than only labeling an article as consistent or inconsistent.
- Because the method works zero-shot, it can be applied to new languages and news domains without collecting training labels for each entity type.
- Evidence images are a cheap accuracy lever for persons and events, so improving evidence retrieval is a direct route to better verification.
- The document-level result indicates that general-purpose LVLMs can replace specialized CNN components for location and event verification in this setting.
Reading between the lines
- My inference: the same prompts should transfer across news domains, so accuracy on a different-language news set would be a clean test of whether the zero-shot gains are language-dependent.
- My inference: the location failure is likely evidence-retrieval noise, so swapping search-engine images for a curated set of canonical landmarks per city could recover location accuracy without changing the model.
- My inference: combining LVLM votes with a face-recognition model such as FaceNet could push person verification above both methods, since the baseline's face-specific embeddings already outperform the LVLMs on persons.
- My inference: if the dataset statistics do not match the released files, the reported accuracy differences should be re-estimated on a consistently annotated sample before relying on them.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes LVLM4CEC, a zero-shot pipeline for verifying cross-modal entity consistency in news, i.e., determining whether a person, location, or event mentioned in the text is visible in the accompanying news image. The system uses large vision-language models, supports verification with and without web-crawled evidence images (via composite-image and image-series strategies for single- and multi-image models), and is evaluated on three datasets extended with manual ground-truth annotations (TamperedNews-Ent, News400-Ent, MMG-Ent). The headline empirical claims are that evidence images improve accuracy for persons and events, and that the LVLM approach outperforms a CNN-based baseline for location and event verification in documents.
Significance. The task itself is well-motivated and fills a genuine gap: prior out-of-context detection operates at the whole-document level, while entity-level cross-modal verification can provide more actionable signals for fact-checking. The paper is the first to apply LVLMs to this entity-level task, and the public release of source code and extended datasets is a concrete contribution. If the reported evaluation were trustworthy, the findings would be useful to the multimedia verification community. However, the current evaluation protocol has serious gaps—prompt selection on the test set, unknown class balance and test-set sizes, single-annotator ground truth without agreement statistics, and an underspecified baseline comparison—that prevent the quantitative claims from being assessed as stated. The strengths of the method (multiple LVLMs, two evidence-integration strategies, zero-shot framing) are clear, but the evidence supporting the central claims needs to be re-derived under a sounder evaluation protocol.
major comments (4)
- [Section 4.2, Table 2 and Table 3]
- [Section 4.1 vs Table 1 and Table 3]
- [Section 4.1, annotation process]
- [Section 4.3, baseline comparison]
minor comments (6)
- [Section 3.3]
- [Figure 1 caption]
- [Section 4.2]
- [Section 4.1, implementation details]
- [Section 4.1, models]
- [Table 3 and Section 4.1]
Circularity Check
Test-set prompt selection makes the reported zero-shot accuracies partially self-confirming; no other load-bearing circularity.
-
fitted input called prediction
[Section 4.2 (Prompt Impact) and Section 4.1 (Implementation Details)]
"Both InstructBLIP [7] and LLaVA[17] performed better with visibility questions for persons and events entities, while they excelled with consistency questions for location entities. For each model, we used the best-performing prompt in further experiments."
The prompt templates are compared on TamperedNews-Ent, and the best template per model is then used in further experiments on the same test dataset. Because the prompt is the task-specific instruction for the zero-shot LVLM and its choice is decided by accuracy on the evaluation labels, the numbers reported in Tables 2 and 3 are effectively a post-hoc maximum over the tested templates on the same data. This is a fitted input (prompt selection) being reported as an independent zero-shot prediction, so the headline zero-shot performance is partly constructed by the evaluation protocol rather than derived from the model alone.
full rationale
The central derivation is empirical and not circular in the strict sense of X defined via Y: the LVLMs are externally pre-trained, the evidence images are web-crawled references, and the ground truth is manual annotation. The baseline comparison, the datasets, and the evidence-image protocol come from the same author group's earlier work, but that lineage is not load-bearing because the reported numbers do not reduce to those citations. The one genuine circular element is prompt selection: the best prompt is chosen on the test set and then the same test set is used to report zero-shot accuracy, making the figures an optimistic selected maximum. This weakens the quantitative claims but does not make the central finding equivalent to its inputs. The dataset-size inconsistency and single-annotator labels are serious data-quality and reproducibility risks, but they are correctness issues rather than circularity. Therefore the score is 4.
Assumptions & free parameters
free parameters (3)
- prompt template per model and entity type =
e.g., 'Is <type> <name> shown in the image?' vs 'Is the content of the image consistent with the <type> <name>?'
- baseline CMS threshold for yes/no classification =
0.65
- number of evidence images (n) =
max 20
assumptions (4)
- domain assumption spaCy and Wikifier entity extraction is correct and complete
- domain assumption The manually annotated ground truth is accurate
- domain assumption Evidence images from Google, Bing, and Wikidata depict the queried entity
- domain assumption LVLM probability-of-yes-token can serve as a cross-modal similarity score comparable to the baseline CMS
Cite this review
Pith. "Pith review of Verifying Cross-modal Entity Consistency in News using Vision-language Models." pith.science (2026). https://pith.science/paper/EEXJWPXR
@misc{pith2026250111403,
author = {Pith},
title = {Pith review of: Verifying Cross-modal Entity Consistency in News using Vision-language Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/EEXJWPXR}},
note = {Machine review of arXiv:2501.11403}
}
read the original abstract
The web has become a crucial source of information, but it is also used to spread disinformation, often conveyed through multiple modalities like images and text. The identification of inconsistent cross-modal information, in particular entities such as persons, locations, and events, is critical to detect disinformation. Previous works either identify out-of-context disinformation by assessing the consistency of images to the whole document, neglecting relations of individual entities, or focus on generic entities that are not relevant to news. So far, only few approaches have addressed the task of validating entity consistency between images and text in news. However, the potential of large vision-language models (LVLMs) has not been explored yet. In this paper, we propose an LVLM-based framework for verifying Cross-modal Entity Consistency~(LVLM4CEC), to assess whether persons, locations and events in news articles are consistent across both modalities. We suggest effective prompting strategies for LVLMs for entity verification that leverage reference images crawled from web. Moreover, we extend three existing datasets for the task of entity verification in news providing manual ground-truth data. Our results show the potential of LVLMs for automating cross-modal entity verification, showing improved accuracy in identifying persons and events when using evidence images. Moreover, our method outperforms a baseline for location and event verification in documents. The datasets and source code are available on GitHub at https://github.com/TIBHannover/LVLM4CEC.
Figures
Forward citations
Cited by 1 Pith paper
-
COVE: COntext and VEracity prediction for out-of-context images
COVE predicts an image's true context before judging caption veracity, improving real-world out-of-context detection and providing a reusable context artifact for human verifiers.
Reference graph
Works this paper leans on
-
[1]
Abdelnabi, S., Hasan, R., Fritz, M.: Open-domain, content-based, multi-modal fact-checking of out-of-context images via online resources. In: IEEE/CVF Con- ference on Computer Vision and Pattern Recognition, CVPR 2022, New Orleans, LA, USA, June 18-24, 2022. pp. 14920–14929. IEEE (2022).https://doi.org/10. 1109/CVPR52688.2022.01452
arXiv 2022
-
[2]
arXiv preprint abs/2311.07453 (2023)
Akhtar, M., Subedi, N., Gupta, V., Tahmasebi, S., Cocarascu, O., Simperl, E.: Chartcheck: An evidence-based fact-checking dataset over real-world chart images. arXiv preprint abs/2311.07453 (2023). https://doi.org/10.48550/ ARXIV.2311.07453
-
[3]
Ayoola, T., Tyagi, S., Fisher, J., Christodoulopoulos, C., Pierleoni, A.: Refined: An efficient zero-shot-capable approach to end-to-end entity linking. In: Conference of the North American Chapter of the Association for Computational Linguistics: Hu- man Language Technologies: Industry Track, NAACL 2022, Hybrid: Seattle, Wash- ington, USA + Online, July ...
-
[4]
Bateman, J.: Text and image: A critical introduction to the visual/verbal divide. Routledge (2014)
work page 2014
-
[5]
Proceedings of SiKDD472 (2017)
Brank, J., Leban, G., Grobelnik, M.: Annotating documents with relevant wikipedia concepts. Proceedings of SiKDD472 (2017)
work page 2017
-
[6]
Frontiers in Artificial Intelligence6 (2023)
Cheema, G.S., Hakimov, S., Müller-Budack, E., Otto, C., Bateman, J.A., Ewerth, R.: Understanding image-text relations and news values for multimodal news anal- ysis. Frontiers in Artificial Intelligence6 (2023). https://doi.org/10.3389/FRAI. 2023.1125533
arXiv 2023
-
[7]
Dai, W., Li, J., Li, D., Tiong, A.M.H., Zhao, J., Wang, W., Li, B., Fung, P., Hoi, S.C.H.: Instructblip: Towards general-purpose vision-language models with 14 S. Tahmasebi et al. instruction tuning. In: Annual Conference on Neural Information Processing Sys- tems, NeurIPS 2023, New Orleans, LA, USA, December 10 - 16, 2023 (2023), https://openreview.net/f...
work page 2023
-
[8]
Fazio, L.: Out-of-context photos are a powerful low-tech form of misinformation. The Conversation 14, 1 (2020)
work page 2020
Show all 40 references
-
[9]
In: International Conference on Multimedia Retrieval, ICMR 2017, Bucharest, Romania, June 6-9, 2017
Henning, C.A., Ewerth, R.: Estimating the information gap between textual and visual representations. In: International Conference on Multimedia Retrieval, ICMR 2017, Bucharest, Romania, June 6-9, 2017. pp. 14–22. ACM (2017).https: //doi.org/10.1145/3078971.3078991
2017
-
[10]
To appear 7(1), 411–420 (2017)
Honnibal, M., Montani, I.: spaCy 2: Natural language understanding with Bloom embeddings, convolutional neural networks and incremental parsing. To appear 7(1), 411–420 (2017)
2017
-
[11]
In: IEEE Conference on Computer Vision and Pattern Recognition, CVPR 2019, Long Beach, CA, USA, June 16-20, 2019
Jaiswal, A., Wu, Y., AbdAlmageed, W., Masi, I., Natarajan, P.: AIRD: adversar- ial learning framework for image repurposing detection. In: IEEE Conference on Computer Vision and Pattern Recognition, CVPR 2019, Long Beach, CA, USA, June 16-20, 2019. pp. 11330–11339. Computer Vi...
2019
- [12]
-
[13]
Kruk, J., Lubin, J., Sikka, K., Lin, X., Jurafsky, D., Divakaran, A.: Integrating text and image: Determining multimodal document intent in instagram posts. In: ConferenceonEmpiricalMethodsinNaturalLanguageProcessingandtheInterna- tional Joint Conference on Natural Language Pr...
2019 doi
- [14]
-
[15]
In: International Conference on Machine Learning, ICML 2023, 23-29 July 2023, Honolulu, Hawaii, USA
Li, J., Li, D., Savarese, S., Hoi, S.C.H.: BLIP-2: bootstrapping language-image pre- training with frozen image encoders and large language models. In: International Conference on Machine Learning, ICML 2023, 23-29 July 2023, Honolulu, Hawaii, USA. pp. 19730–19742. PMLR (2023)...
2023
-
[16]
arXiv preprintabs/1908.03557 (2019)
Li, L.H., Yatskar, M., Yin, D., Hsieh, C., Chang, K.: Visualbert: A simple and per- formant baseline for vision and language. arXiv preprintabs/1908.03557 (2019)
2019 arXiv
-
[17]
In: Annual Conference on Neural Information Processing Systems, NeurIPS 2023, New Orleans, LA, USA, December 10 - 16, 2023 (2023),https://openreview.net/forum?id=w0H2xGHlkw
Liu, H., Li, C., Wu, Q., Lee, Y.J.: Visual instruction tuning. In: Annual Conference on Neural Information Processing Systems, NeurIPS 2023, New Orleans, LA, USA, December 10 - 16, 2023 (2023),https://openreview.net/forum?id=w0H2xGHlkw
2023
-
[18]
https://doi.org/10.48550/ARXIV.2403.05525
Lu, H., Liu, W., Zhang, B., Wang, B., Dong, K., Liu, B., Sun, J., Ren, T., Li, Z., Yang, H., Sun, Y., Deng, C., Xu, H., Xie, Z., Ruan, C.: Deepseek-vl: Towards real-worldvision-languageunderstanding.arXivpreprint abs/2403.05525(2024). https://doi.org/10.48550/ARXIV.2403.05525
-
[19]
In: Conference on Empirical Methods in Natural Language Processing, EMNLP 2021, Virtual Event / Punta Cana, Dominican Re- public, 7-11 November, 2021
Luo, G., Darrell, T., Rohrbach, A.: Newsclippings: Automatic generation of out- of-context multimodal media. In: Conference on Empirical Methods in Natural Language Processing, EMNLP 2021, Virtual Event / Punta Cana, Dominican Re- public, 7-11 November, 2021. pp. 6801–6817. As...
2021 doi
-
[20]
In: European Conference on Title Suppressed Due to Excessive Length 15 Computer Vision, ECCV 2018, Munich, Germany, September 8-14, 2018
Müller-Budack, E., Pustu-Iren, K., Ewerth, R.: Geolocation estimation of photos using a hierarchical model and scene classification. In: European Conference on Title Suppressed Due to Excessive Length 15 Computer Vision, ECCV 2018, Munich, Germany, September 8-14, 2018. pp. 575–
2018
-
[21]
Müller-Budack, E., Springstein, M., Hakimov, S., Mrutzek, K., Ewerth, R.: Ontology-driveneventtypeclassificationinimages.In:IEEEWinterConferenceon Applications of Computer Vision, WACV 2021, Virtual Event, January 3-8, 2021. pp. 2927–2937. IEEE (2021).https://doi.org/10.1109/W...
2021
-
[22]
In: International Conference on Multimedia Retrieval, ICMR 2020, Dublin, Ireland, June 8-11, 2020
Müller-Budack, E., Theiner, J., Diering, S., Idahl, M., Ewerth, R.: Multimodal analytics for real-world news using measures of cross-modal entity consistency. In: International Conference on Multimedia Retrieval, ICMR 2020, Dublin, Ireland, June 8-11, 2020. pp. 16–25. ACM (202...
2020 doi
-
[23]
OpenAI: Gpt-4v(ision) system card (2023), https://cdn.openai.com/papers/ GPTV_System_Card.pdf
2023
-
[24]
In: International Conference on Multime- dia Retrieval, ICMR 2019, Ottawa, ON, Canada, June 10-13, 2019
Otto, C., Springstein, M., Anand, A., Ewerth, R.: Understanding, categorizing and predicting semantic image-text relations. In: International Conference on Multime- dia Retrieval, ICMR 2019, Ottawa, ON, Canada, June 10-13, 2019. pp. 168–176. ACM (2019). https://doi.org/10.1145...
2019
-
[25]
Papadopoulos, S., Koutlis, C., Papadopoulos, S., Petrantonakis, P.: Synthetic mis- informers:Generatingandcombatingmultimodalmisinformation.In:International Workshop on Multimedia AI against Disinformation, MAD@ICMR 2023, Thessa- loniki, Greece, June 12-15, 2023. pp. 36–44. AC...
2023
-
[26]
In: IEEE/CVF Conference on Computer Vision and Pattern Recognition, CVPR 2024, Seattle, WA, USA, June 16-22, 2024
Qi, P., Yan, Z., Hsu, W., Lee, M.: Sniffer: Multimodal large language model for explainable out-of-context misinformation detection. In: IEEE/CVF Conference on Computer Vision and Pattern Recognition, CVPR 2024, Seattle, WA, USA, June 16-22, 2024. pp. 13052–13062. IEEE (2024)....
2024
-
[27]
In: International Conference on Machine Learning, ICML 2021, Virtual Event, 18-24 July, 2021
Radford, A., Kim, J.W., Hallacy, C., Ramesh, A., Goh, G., Agarwal, S., Sastry, G., Askell, A., Mishkin, P., Clark, J., Krueger, G., Sutskever, I.: Learning transferable visual models from natural language supervision. In: International Conference on Machine Learning, ICML 2021...
2021
-
[28]
IEEE Transactions on Pattern Analysis and Machine Intelligence 40(5), 1072–1085 (2018)
Ramisa, A., Yan, F., Moreno-Noguer, F., Mikolajczyk, K.: Breakingnews: Article annotation by image and text processing. IEEE Transactions on Pattern Analysis and Machine Intelligence 40(5), 1072–1085 (2018). https://doi.org/10.1109/ TPAMI.2017.2721945
2018
-
[29]
In: ACM Multimedia Conference on Multimedia Confer- ence, MM 2018, Seoul, Republic of Korea, October 22-26, 2018
Sabir, E., AbdAlmageed, W., Wu, Y., Natarajan, P.: Deep multimodal image- repurposing detection. In: ACM Multimedia Conference on Multimedia Confer- ence, MM 2018, Seoul, Republic of Korea, October 22-26, 2018. pp. 1337–1345. ACM (2018). https://doi.org/10.1145/3240508.3240707
2018
-
[30]
In: IEEE Conference on Computer Vision and Pattern Recognition, CVPR 2015, Boston, MA, USA, June 7-12, 2015
Schroff, F., Kalenichenko, D., Philbin, J.: Facenet: A unified embedding for face recognition and clustering. In: IEEE Conference on Computer Vision and Pattern Recognition, CVPR 2015, Boston, MA, USA, June 7-12, 2015. pp. 815–823. IEEE Computer Society (2015).https://doi.org/...
2015
-
[31]
In: International Conference on Informa- tion and Knowledge Management, CIKM 2024, Boise, ID, USA, October 21 – 25
Tahmasebi, S., Müller-Budack, E., Ewerth, R.: Multimodal misinformation detec- tion using large vision-language models. In: International Conference on Informa- tion and Knowledge Management, CIKM 2024, Boise, ID, USA, October 21 – 25
2024
-
[32]
In: European Conference on Information Re- trieval, ECIR 2023, Dublin, Ireland, April 2-6, 2023, Proceedings, Part II
Tahmasebzadeh, G., Hakimov, S., Ewerth, R., Müller-Budack, E.: Multimodal ge- olocation estimation of news photos. In: European Conference on Information Re- trieval, ECIR 2023, Dublin, Ireland, April 2-6, 2023, Proceedings, Part II. pp. 204–220. Springer (2023).https://doi.or...
2023 doi
-
[33]
Communications of the ACM57(10), 78–85 (2014)
Vrandečić, D., Krötzsch, M.: Wikidata: a free collaborative knowledgebase. Communications of the ACM57(10), 78–85 (2014). https://doi.org/10.1145/ 2629489
2014
-
[34]
In: Conference on Empirical Methods in Natural Language Processing, EMNLP 2020, Online, November 16-20, 2020
Wu, L., Petroni, F., Josifoski, M., Riedel, S., Zettlemoyer, L.: Scalable zero-shot entity linking with dense entity retrieval. In: Conference on Empirical Methods in Natural Language Processing, EMNLP 2020, Online, November 16-20, 2020. pp. 6397–6407. Association for Computat...
2020 doi
-
[35]
arXiv preprintabs/2306.09265 (2023)
Xu, P., Shao, W., Zhang, K., Gao, P., Liu, S., Lei, M., Meng, F., Huang, S., Qiao, Y., Luo, P.: Lvlm-ehub: A comprehensive evaluation benchmark for large vision- language models. arXiv preprintabs/2306.09265 (2023). https://doi.org/10. 48550/ARXIV.2306.09265
- [36]
-
[37]
In: British Machine Vision Conference 2018, BMVC 2018, Newcastle, UK, September 3-6, 2018
Zhang, M., Hwa, R., Kovashka, A.: Equal but not the same: Understanding the im- plicit relationship between persuasive images and text. In: British Machine Vision Conference 2018, BMVC 2018, Newcastle, UK, September 3-6, 2018. p. 8. BMVA Press (2018), http://bmvc2018.org/conte...
2018
-
[38]
ACM Computing Surveys51(2), 32:1–32:36 (2018)
Zubiaga, A., Aker, A., Bontcheva, K., Liakata, M., Procter, R.: Detection and resolution of rumours in social media: A survey. ACM Computing Surveys51(2), 32:1–32:36 (2018). https://doi.org/10.1145/3161603
2018 doi
-
[592]
Springer (2018).https://doi.org/10.1007/978-3-030-01258-8_35
2018 doi
-
[2024]
2189–2199
p. 2189–2199. Association for Computing Machinery, New York, NY, USA (2024). https://doi.org/10.1145/3627673.3679826 16 S. Tahmasebi et al
2024
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.