REVIEW 5 major objections 5 minor 1 cited by
E-FreeM2: Efficient Training-Free Multi-Scale and Cross-Modal News Verification via MLLMs
T0 review · 5 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read A training-free retrieval pipeline with two-stage multimodal model reasoning reports 90.0% accuracy on NewsCLIPpings, beating trained baselines.
desk verdict Plausible training-free retrieval pipeline with a headline number that is not yet auditable; the core idea is worth a referee, but the paper overclaims on benchmarks, attacks, and edge deployment. 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 load-bearing mechanism is the two-stage chain-of-thought decision protocol, because it converts retrieved evidence into a verdict without any learned parameters. In Stage 1, a multimodal LLM (Gemini) checks the alignment between the news caption and each candidate's text and metadata, attending to entities, time, place, and consistency; in Stage 2, another model (GPT-4o mini) merges that evidence with its own reading of the pixels to deliver the final out-of-context classification and a confidence score. The retrieval stage feeds this protocol with candidates ranked by visual similarity (S_final = S_visual), on the paper's rationale that a visually similar image is more likely to preserve the true context of the event than a text-similar but unrelated image. The filter module's domain check removes untrustworthy sources, which the ablation shows is essential: low-quality evidence actively degrades the final judgment.
What would settle it
Take a set of fresh out-of-context pairs created after the models' training cutoff, with captions paraphrased so they differ from public benchmark text, and run the same pipeline untouched; if accuracy on those new items falls toward chance while the original NewsCLIPpings score stays at 90%, the benchmark result is driven by memorized or leaked answers rather than by the pipeline's retrieval and reasoning. A simpler check: disable the retrieval stage entirely and measure the drop—the paper reports that removing one evidence type costs about 13 points, but a no-retrieval condition would reveal how much of the 90% depends on live evidence.
Extended reading notes
Core claim
The central discovery claimed is that a training-free pipeline—live web retrieval plus prompted reasoning by large multimodal language models—reaches 90.0% accuracy on the NewsCLIPpings Merged/Balance test set, outperforming every trained baseline the paper compares against. The design choices are a multi-scale cross-modal retrieval stage (claim-conditioned text search plus image reverse search), a three-part filter (similarity threshold θ=0.7, trusted-domain and English language checks, redundancy removal), and a visual-centric ranking rule that uses visual similarity as the final candidate score. Verification then proceeds in two prompted stages: Gemini first judges whether each retrieved candidate does or does not support the caption's claim, and GPT-4o mini then synthesizes those judgments with direct visual inspection to decide whether the image is out-of-context, producing an explanation and a 0–10 confidence score. The claimed ablations show the domain filter is the largest single component of the gain (without it, accuracy falls to 56.46%), with both visual and textual evidence contributing about 13 points each when removed.
Load-bearing premise
The result depends on the two closed API models (Gemini in Stage 1, GPT-4o mini in Stage 2) genuinely reasoning from the retrieved evidence rather than recalling the benchmark's images or captions from their pretraining, and on the search engine actually returning relevant current pages for every test item.
Editorial extensions
If this is right
- On the paper's evidence, a completely training-free system can outscore trained detectors on a standard OOC benchmark, so the bottleneck for this task may be evidence retrieval and prompt design rather than learned model capacity.
- Because the pipeline stores no training data and learns nothing, it can track shifting misinformation by simply re-running retrieval against current web content, avoiding the staleness and poisoning exposure of fixed training datasets.
- The system outputs a natural-language explanation and a confidence score for every verdict, which the paper presents as an interpretability advantage over black-box trained classifiers.
- Domain filtering is not a minor detail: the ablation shows it contributes roughly 33.5 points (90.0% down to 56.46% without it), so the quality and trustworthiness of retrieved sources is load-bearing for the method.
- With zero trainable parameters and an inference time of 12.77 seconds per sample, the paper positions the system as suitable for on-device fact-checking in mobile and wireless settings.
Reading between the lines
- If retrieval quality is what mostly drives the score, a comparable open-weights vision-language model with the same retrieval and prompts should land near the same accuracy; running that experiment would make the result cheaper, auditable, and reproducible without closed APIs.
- The visual-centric ranking rule (visual similarity as the final score) may be brittle for text-critical manipulations, where the misleading claim mentions a different entity than the visually similar image; a dynamic weighting of visual and textual similarity, conditioned on how strongly they agree, is a natural variant to test.
- The live-search dependency means the system's accuracy on future, unseen events is bounded by the search engine's coverage and recency; substituting a curated, timestamped news corpus as the retrieval index would let the authors measure how much of the performance comes from the quality of the index rather than the models.
- The paper's security framing suggests resistance to training-data poisoning, which is structurally true because there is no training set to poison; but the retrieval index and the closed models' priors remain attack surfaces, so a poisoning study on the search results is an open test.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. E-FreeM2 is a training-free, retrieval-based out-of-context misinformation detection system. It retrieves external textual and visual evidence via search engines, filters candidates using modality-specific similarity thresholds and domain heuristics, and finally classifies image-caption pairs through a two-stage Chain-of-Thought procedure using Gemini (Stage 1) and GPT-4o mini (Stage 2). The paper claims 90.0% overall accuracy on the NewsCLIPpings Merged/Balance test set, outperforming trained baselines such as SNIFFER (88.8% in text, 88.4% in Table 1), CCN, and DT-Transformer, while requiring zero trainable parameters. Ablation results show that removing image evidence, text evidence, or domain filters degrades accuracy to 76.48%, 77.05%, and 56.46%, respectively. The paper also promises evaluation on two benchmarks and robustness against attack vectors, but the experimental section covers only one benchmark and no attack robustness experiments.
Significance. If the 90.0% accuracy claim is valid and attributable to the proposed retrieval-and-reasoning pipeline, the result is significant: a completely training-free system beating trained state-of-the-art methods on a standard out-of-context benchmark, with zero trainable parameters and generated explanations, would be an important step for lightweight, adaptable misinformation detection. The paper's core strengths are the clear pipeline design and the explicit focus on training-free efficiency, which contrasts with the expensive training paradigms of prior work. However, the significance is contingent on the auditability of the evaluation: the reliance on closed API models, unspecified prompts, and a public benchmark that may overlap with those models' pretraining data means that the central accuracy claim is not yet verifiable. The ablation study provides some internal consistency but also reveals a strong benchmark prior even without external evidence, which must be contextualized with a no-retrieval control.
major comments (5)
- [Abstract, §4.1.1] The abstract and introduction claim 'experiments on two fact-checking benchmarks achieve SOTA results' and 'robustness against various attack vectors,' but §4.1.1 evaluates only the NewsCLIPpings Merged/Balance test set, and no adversarial attack experiments appear in the paper. The claims must either be substantiated by additional experiments or removed/rephrased to match the actual evaluation.
- [§4.2.1 and Table 1] The SNIFFER baseline is reported as 88.4 in Table 1 but as 88.8 in the text of §4.2.1. This internal inconsistency is in the central comparison that supports the SOTA claim. Additionally, the paper reports no confidence intervals, significance tests, or multiple trial statistics for the 90.0% accuracy; with 7,264 test samples, the difference from SNIFFER may be within sampling error. Please provide error bars or at least a statistical significance test.
- [§3.2] The final decisions are made by proprietary closed models (Gemini and GPT-4o mini), and the paper does not state model versions, snapshot dates, prompts, temperatures, or any retrieval logs. Because NewsCLIPpings is a public benchmark derived from web articles, the 90.0% figure could partly reflect benchmark memorization during pretraining or reverse-image-search leakage that recovers the original source context, rather than the proposed cross-modal reasoning. The authors should release the exact prompts and model versions, and should run a no-retrieval control on the same test items (i.e., the MLLMs alone with only the image-caption pair) to demonstrate that the retrieval pipeline adds value beyond the MLLMs' priors. Table 3 shows that without image or text evidence accuracy is about 76-77%, but this is not the same as a fully no-retrieval control, since the model still sees the other evidence modality.
- [§4.3 and Eq. (1)] The similarity threshold θ=0.7, the visual-centric ranking weight, and the top-k candidate count are hyperparameters whose effects are evaluated directly on the same test split (Section 4.3). Since no validation split is used and the method is training-free, selecting these values based on test performance risks overfitting the reported 90.0% to the test set. The paper should describe how these values were chosen and report sensitivity to them across a reasonable range.
- [§4.3.3, Table 3] The ablation in Table 3 shows that removing image or text evidence leaves accuracy at 76.48% and 77.05%, respectively, which is still close to or above several trained baselines. This suggests that the underlying MLLMs alone already capture a large portion of the signal, making the specific contribution of the multi-scale retrieval pipeline unclear. The paper should report the accuracy of the two-stage CoT pipeline with no external retrieval at all, and should discuss how much of the 90.0% is attributable to retrieval versus the MLLMs' intrinsic reasoning on the NewsCLIPpings distribution.
minor comments (5)
- [§4.2.2] The text says 'our approach achieves an inference time of 12.77 seconds ... as shown in Table 1' but Table 1 contains no inference time and Table 2 lists only trainable parameters. Please add the inference time to the appropriate table or state it only in the text.
- [Table 3] The table caption says 'Evaluation results for different evidence filtering methods,' but the rows are ablations of evidence types (image, text, domain filters). Please adjust the caption to accurately describe the content.
- [Figure 2] The description of the ranking/filter ablation in §4.3.1 is very brief and does not specify which similarity model, which domain list, or how top-k candidates were selected. This figure is not reproducible from the text.
- [§5] The limitation section mentions reliance on external search engines but does not mention the cost or rate limits of commercial search APIs and closed MLLM APIs, which are relevant to the 'lightweight edge device' claim. Please clarify the practical cost and dependency assumptions.
- [References] Several references have incomplete bibliographic information (e.g., missing venue or DOIs) and reference [13] is cited as both NewsCLIPpings and 'Newsclippings: Automatic generation...' with inconsistent capitalization. A thorough reference cleanup is needed.
Circularity Check
No significant circularity: the reported 90.0% is an external benchmark measurement, not a construction from the method's own definitions; the paper's risks are auditability and test-set selection, not circular derivation.
full rationale
E-FreeM2 does not present a derivation whose conclusion is assumed in its premises. The headline 90.0% accuracy (Section 4.2.1) is a measured outcome on the fixed NewsCLIPpings Merged/Balance test set, not a quantity constructed from the method's definitions: the retrieval, the filtering threshold (theta = 0.7, Eq. 1), the visual-centric ranking (Eq. 2), and the two-stage prompting (Section 3.2) are all defined independently of the test labels. The ablations in Section 4.3 compare configurations on the same split, which can inflate optimism, but the paper labels the threshold as 'predefined' and reports no fitting procedure; test-set reuse is a validity/selection concern, not a circular equivalence. Self-citations [18] and [30] appear only in related-work enumerations and are not load-bearing for the SOTA claim; no uniqueness theorem or ansatz is imported from prior work. The main weaknesses are auditability (closed API models, prompts/retrieval logs not released) and the abstract's claim of two benchmarks while only NewsCLIPpings is evaluated in Section 4.1.1; these are reproducibility and completeness problems rather than circularity. No step in the paper reduces by construction to its own input.
Assumptions & free parameters
free parameters (3)
- Similarity threshold theta =
0.7
- Visual ranking weight =
S_final = S_visual (visual-only)
- Top-k candidate count =
not reported
assumptions (5)
- domain assumption External search engines return relevant and temporally appropriate evidence for each query.
- domain assumption The curated list of trusted news domains is correct and complete.
- domain assumption Dense-embedding cosine similarities (all-MiniLM-L6-v2 for text, ViT for images) accurately measure task-relevant relevance.
- domain assumption Gemini and GPT-4o mini provide reliable fact-verification judgments under the given prompts.
- domain assumption NewsCLIPpings test labels are ground truth and have not been memorized by the proprietary MLLMs.
Cite this review
Pith. "Pith review of E-FreeM2: Efficient Training-Free Multi-Scale and Cross-Modal News Verification via MLLMs." pith.science (2026). https://pith.science/paper/JVL3FIUB
@misc{pith2026250620944,
author = {Pith},
title = {Pith review of: E-FreeM2: Efficient Training-Free Multi-Scale and Cross-Modal News Verification via MLLMs},
year = {2026},
howpublished = {\url{https://pith.science/paper/JVL3FIUB}},
note = {Machine review of arXiv:2506.20944}
}
read the original abstract
The rapid spread of misinformation in mobile and wireless networks presents critical security challenges. This study introduces a training-free, retrieval-based multimodal fact verification system that leverages pretrained vision-language models and large language models for credibility assessment. By dynamically retrieving and cross-referencing trusted data sources, our approach mitigates vulnerabilities of traditional training-based models, such as adversarial attacks and data poisoning. Additionally, its lightweight design enables seamless edge device integration without extensive on-device processing. Experiments on two fact-checking benchmarks achieve SOTA results, confirming its effectiveness in misinformation detection and its robustness against various attack vectors, highlighting its potential to enhance security in mobile and wireless communication environments.
Figures
Forward citations
Cited by 1 Pith paper
-
Multimedia Verification Through Multi-Agent Deep Research Multimodal Large Language Models
A six-stage multi-agent MLLM pipeline with reverse image search, metadata analysis, and fact-checking tools is demonstrated on a single Ukraine missile-strike video, with no quantitative evaluation.
Reference graph
Works this paper leans on
-
[1]
Sahar Abdelnabi, Rakibul Hasan, and Mario Fritz. 2022. Open-domain, content- based, multi-modal fact-checking of out-of-context images via online resources. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition . 14940–14949
work page 2022
-
[2]
Nadia Alonso-López, Pavel Sidorenko Bautista, and Fábio Giacomelli. 2021. Be- yond Challenges and Viral Dance Moves: TikTok as a Vehicle for Disinformation and Fact-Checking in Spain, Portugal, Brazil, and the USA. Anàlisi 64 (06 2021), 65–84. https://doi.org/10.5565/rev/analisi.3411>
-
[3]
Shivangi Aneja, Chris Bregler, and Matthias Nießner. 2023. COSMOS: catching out-of-context image misuse using self-supervised learning. In Proceedings of the AAAI conference on artificial intelligence , Vol. 37. 14084–14092
work page 2023
-
[4]
Sarah Evanega, Mark Lynas, Jordan Adams, and Karinne Smolenyak. 2020. Coro- navirus misinformation: quantifying sources and themes in the COVID-19 ‘info- demic’ (Preprint). https://doi.org/10.2196/preprints.25143
-
[5]
Lisa Fazio. 2020. Out-of-context photos are a powerful low-tech form of misin- formation. The Conversation 14, 1 (2020)
work page 2020
-
[6]
Yimeng Gu, Mengqi Zhang, Ignacio Castro, Shu Wu, and Gareth Tyson. 2024. Learning Domain-Invariant Features for Out-of-Context News Detection. arXiv preprint arXiv:2406.07430 (2024)
work page Pith review arXiv 2024
-
[7]
Shaohan Huang, Li Dong, Wenhui Wang, Yaru Hao, Saksham Singhal, Shuming Ma, Tengchao Lv, Lei Cui, Owais Khan Mohammed, Barun Patra, et al. 2023. Lan- guage is not all you need: Aligning perception with language models. Advances in Neural Information Processing Systems 36 (2023), 72096–72109
2023
-
[8]
Ayush Jaiswal, Ekraam Sabir, Wael AbdAlmageed, and Premkumar Natarajan
Show all 43 references
-
[9]
Ayush Jaiswal, Yue Wu, Wael AbdAlmageed, Iacopo Masi, and Premkumar Natara- jan. 2019. Aird: Adversarial learning framework for image repurposing detection. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recog- nition. 11330–11339
2019
-
[10]
Liunian Harold Li, Mark Yatskar, Da Yin, Cho-Jui Hsieh, and Kai-Wei Chang
-
[11]
Yihui Li, Xiaoyue Yan, Hao Zhou, and Borong Lin. 2024. Question Answering for Decisionmaking in Green Building Design: A Multimodal Data Reasoning Method Driven by Large Language Models. arXiv preprint arXiv:2412.04741 (2024)
2024
-
[12]
Piper Liu and Vincent Huang. 2020. Digital Disinformation About COVID-19 and the Third-Person Effect: Examining the Channel Differences and Negative Emotional Outcomes. Cyberpsychology, Behavior, and Social Networking 23 (07 2020). https://doi.org/10.1089/cyber.2020.0363
2020
-
[13]
Grace Luo, Trevor Darrell, and Anna Rohrbach. 2021. Newsclippings: Automatic generation of out-of-context multimodal media. arXiv preprint arXiv:2104.05893 (2021)
2021 arXiv
-
[14]
Michael Mu, Sreyasee Das Bhattacharjee, and Junsong Yuan. 2023. Self-supervised distilled learning for multi-modal misinformation identification. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision . 2819–2828
2023
-
[15]
Alex Nikolov, Giovanni Da San Martino, Ivan Koychev, and Preslav Nakov. 2020. Team Alex at CLEF CheckThat! 2020: Identifying Check-Worthy Tweets With Transformer Models. arXiv:2009.02931 [cs.CL] https://arxiv.org/abs/2009.02931
2020 arXiv
-
[16]
Stefanos-Iordanis Papadopoulos, Christos Koutlis, Symeon Papadopoulos, and Panagiotis Petrantonakis. 2023. Synthetic misinformers: Generating and com- bating multimodal misinformation. In Proceedings of the 2nd ACM International Workshop on Multimedia AI against Disinformation . 36–44
2023
-
[17]
Stefanos-Iordanis Papadopoulos, Christos Koutlis, Symeon Papadopoulos, and Panagiotis C Petrantonakis. 2023. Red-dot: Multimodal fact-checking via relevant evidence detection. arXiv preprint arXiv:2311.09939 (2023)
2023 arXiv
-
[18]
Long-Khanh Pham, Hoa-Vien Vo-Hoang, and Anh-Duy Tran. 2024. A Generative Adaptive Context Learning Framework for Large Language Models in Cheapfake Detection (ICMR ’24). Association for Computing Machinery, New York, NY, USA, 1288–1293. https://doi.org/10.1145/3652583.3657597
2024
-
[19]
Gwenyth Portillo Wightman, Alexandra Delucia, and Mark Dredze. 2023. Strength in Numbers: Estimating Confidence of Large Language Models by Prompt Agreement. In Proceedings of the 3rd Workshop on Trustworthy Natural Language Processing (TrustNLP 2023), Anaelia Ovalle, Kai-Wei ...
2023
-
[20]
Shraman Pramanick, Rama Chellappa, and Subhashini Venugopalan. 2025. SPIQA: A Dataset for Multimodal Question Answering on Scientific Papers. arXiv:2407.09413 [cs.CL] https://arxiv.org/abs/2407.09413
2025 arXiv
-
[21]
Peng Qi, Zehong Yan, Wynne Hsu, and Mong Li Lee. 2024. Sniffer: Multimodal large language model for explainable out-of-context misinformation detection. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition . 13052–13062
2024
-
[22]
Shuofei Qiao, Yixin Ou, Ningyu Zhang, Xiang Chen, Yunzhi Yao, Shumin Deng, Chuanqi Tan, Fei Huang, and Huajun Chen. 2023. Reasoning with Language Model Prompting: A Survey. arXiv:2212.09597 [cs.CL] https://arxiv.org/abs/ 2212.09597
2023 arXiv
-
[23]
Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. 2021. Learning transferable visual models from natural language supervision. In International conference on machine learni...
2021
-
[24]
Ekraam Sabir, Wael AbdAlmageed, Yue Wu, and Prem Natarajan. 2018. Deep multimodal image-repurposing detection. In Proceedings of the 26th ACM inter- national conference on Multimedia . 1337–1345
2018
-
[25]
Ian Sample. 2020. What are deepfakes – and how can you spot them? Re- trieved Mar 08, 2024 from https://www.reuters.com/world/middle-east/false- claims-israel-hamas-war-mushroom-online-put-focus-musks-x-2023-10-10/
2020
-
[26]
Rui Shao, Tianxing Wu, and Ziwei Liu. 2023. Detecting and grounding multi- modal media manipulation. In Proceedings of the IEEE/CVF Conference on Com- puter Vision and Pattern Recognition . 6904–6913
2023
-
[27]
Sahar Tahmasebi, Eric Müller-Budack, and Ralph Ewerth. 2024. Multimodal misinformation detection using large vision-language models. In Proceedings of the 33rd ACM International Conference on Information and Knowledge Management. 2189–2199
2024
-
[28]
Ruben Tolosana, Ruben Vera-Rodriguez, Julian Fierrez, Aythami Morales, and Javier Ortega-Garcia. 2020. Deepfakes and beyond: A survey of face manipulation and fake detection. Information Fusion 64 (2020), 131–148
2020
-
[29]
Image, Tell me your story!
Jonathan Tonglet, Marie-Francine Moens, and Iryna Gurevych. 2024. “Image, Tell me your story!” Predicting the original meta-context of visual misinfor- mation. In Proceedings of the 2024 Conference on Empirical Methods in Natu- ral Language Processing, Yaser Al-Onaizan, Mohit ...
2024
-
[30]
Hoa-Vien Vo-Hoang, Long-Khanh Pham, and Minh-Son Dao. 2024. Detecting Out- of-Context Media with LLaMa-Adapter V2 and RoBERTa: An Effective Method for Cheapfakes Detection. In Proceedings of the 2024 International Conference on Multimedia Retrieval (Phuket, Thailand) (ICMR ’24...
2024 doi
-
[31]
Xueyu Wang, Jiajun Huang, Siqi Ma, Surya Nepal, and Chang Xu. 2022. Deepfake disrupter: The detector of deepfake is my friend. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition . 14920–14929
2022
-
[32]
Yaqing Wang, Fenglong Ma, Zhiwei Jin, Ye Yuan, Guangxu Xun, Kishlay Jha, Lu Su, and Jing Gao. 2018. Eann: Event adversarial neural networks for multi-modal fake news detection. In Proceedings of the 24th acm sigkdd international conference on knowledge discovery & data mining ...
2018
-
[33]
Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Brian Ichter, Fei Xia, Ed Chi, Quoc Le, and Denny Zhou. 2023. Chain-of-Thought Prompting Elicits Reasoning in Large Language Models. arXiv:2201.11903 [cs.CL] https: //arxiv.org/abs/2201.11903
2023 arXiv
-
[34]
Tianhe Wu, Kede Ma, Jie Liang, Yujiu Yang, and Lei Zhang. 2024. A Comprehen- sive Study of Multimodal Large Language Models for Image Quality Assessment. arXiv:2403.10854 [cs.CV] https://arxiv.org/abs/2403.10854
2024 arXiv
-
[35]
Haotian Xia, Zhengbang Yang, Junbo Zou, Rhys Tracy, Yuqing Wang, Chi Lu, Christopher Lai, Yanjun He, Xun Shao, Zhuoqing Xie, Yuan fang Wang, Weining Shen, and Hanjie Chen. 2024. SPORTU: A Comprehensive Sports Understanding Benchmark for Multimodal Large Language Models. arXiv:...
2024 arXiv
-
[36]
Xin Yuan, Jie Guo, Weidong Qiu, Zheng Huang, and Shujun Li. 2023. Support or refute: Analyzing the stance of evidence to detect out-of-context mis-and disinformation. arXiv preprint arXiv:2311.01766 (2023)
2023 arXiv
-
[37]
Fanrui Zhang, Jiawei Liu, Qiang Zhang, Esther Sun, Jingyi Xie, and Zheng-Jun Zha. 2023. Ecenet: explainable and context-enhanced network for muti-modal fact verification. In Proceedings of the 31st ACM International Conference on Multimedia. 1231–1240
2023
-
[38]
Yizhou Zhang, Loc Trinh, Defu Cao, Zijun Cui, and Yan Liu. 2024. Interpretable Detection of Out-of-Context Misinformation with Neural-Symbolic-Enhanced Large Multimodal Model. arXiv:2304.07633 [cs.CL] https://arxiv.org/abs/2304. 07633
2024 arXiv
-
[39]
Hanqing Zhao, Wenbo Zhou, Dongdong Chen, Tianyi Wei, Weiming Zhang, and Nenghai Yu. 2021. Multi-attentional deepfake detection. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition . 2185–2194. SCID ’25, August 25–29, 2025, Hanoi, Vietnam Van-Ho...
2021
-
[40]
Xinyi Zhou, Jindi Wu, and Reza Zafarani. 2020. : Similarity-aware multi-modal fake news detection. In Pacific-Asia Conference on knowledge discovery and data mining. Springer, 354–367
2020
-
[2017]
In Proceedings of the 25th ACM international conference on Multimedia
Multimedia semantic integrity assessment using joint embedding of images and text. In Proceedings of the 25th ACM international conference on Multimedia . 1465–1471
-
[2019]
arXiv preprint arXiv:1908.03557 (2019)
Visualbert: A simple and performant baseline for vision and language. arXiv preprint arXiv:1908.03557 (2019)
2019 arXiv
-
[7864]
https://doi.org/10.18653/v1/2024.emnlp-main.448
2024 doi
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.