Detect, Investigate, Judge and Determine: A Novel LLM-based Framework for Few-shot Fake News Detection

Ye Liu,Jiajun Zhu,Kai Zhang,Haoyu Tang,Yanghai Zhang,Xukai Liu,Qi Liu,Enhong Chen
2024-07-12
Abstract:Few-Shot Fake News Detection (FS-FND) aims to distinguish inaccurate news from real ones in extremely low-resource scenarios. This task has garnered increased attention due to the widespread dissemination and harmful impact of fake news on social media. Large Language Models (LLMs) have demonstrated competitive performance with the help of their rich prior knowledge and excellent in-context learning abilities. However, existing methods face significant limitations, such as the Understanding Ambiguity and Information Scarcity, which significantly undermine the potential of LLMs. To address these shortcomings, we propose a Dual-perspective Augmented Fake News Detection (DAFND) model, designed to enhance LLMs from both inside and outside perspectives. Specifically, DAFND first identifies the keywords of each news article through a Detection Module. Subsequently, DAFND creatively designs an Investigation Module to retrieve inside and outside valuable information concerning to the current news, followed by another Judge Module to derive its respective two prediction results. Finally, a Determination Module further integrates these two predictions and derives the final result. Extensive experiments on two publicly available datasets show the efficacy of our proposed method, particularly in low-resource settings.
Computation and Language,Artificial Intelligence
What problem does this paper attempt to address?
The paper primarily addresses the problem of how to effectively detect fake news under extremely limited resources (Few-Shot Fake News Detection, FS-FND). Specifically, the main challenges faced by researchers include: 1. **Understanding Ambiguity**: Large Language Models (LLMs) may fail to correctly understand or grasp the core meaning of the news, which poses difficulties for the detection process. 2. **Information Scarcity**: Due to the timeliness of news content and the often outdated training corpora of LLMs, there is a fundamental challenge in detecting fake news. To tackle these challenges, the authors propose a new model called "Dual-perspective Augmented Fake News Detection" (DAFND). This model mainly includes four parts: - **Detection Module**: Utilizes LLMs to extract key information from each news article, providing an effective query basis for subsequent steps. - **Investigation Module**: Collects valuable information related to the target news from both internal (i.e., training set) and external (e.g., search engines) perspectives to enhance the understanding of the news. - **Judge Module**: Designs prompts to allow LLMs to generate predictions and explanations based on the results of internal and external investigations. - **Determination Module**: Considers the prediction results and explanations from both internal and external perspectives to make the final decision. The main contributions of the paper can be summarized as follows: - For the first time, it explores the method of enhancing LLMs for few-shot fake news detection from both internal and external perspectives, opening a new direction in this field. - The DAFND model is designed to effectively address the issues of understanding ambiguity and information scarcity, particularly excelling in situations with scarce data resources. - Extensive experiments were conducted on two public datasets to validate the effectiveness of the proposed method, and the authors plan to release the code after the paper is accepted.