Submitted Successfully!
To reward your contribution, here is a gift for you: A free trial for our video production service.
Thank you for your contribution! You can also upload a video entry or images related to this topic.
Version Summary Created by Modification Content Size Created at Operation
1 -- 1460 2024-01-31 15:51:07 |
2 format correct Meta information modification 1460 2024-02-02 03:21:45 |

Video Upload Options

Do you have a full video?

Confirm

Are you sure to Delete?
Cite
If you have any further questions, please contact Encyclopedia Editorial Office.
Ye, N.; Yu, D.; Zhou, Y.; Shang, K.; Zhang, S. False Information Detection. Encyclopedia. Available online: https://encyclopedia.pub/entry/54602 (accessed on 14 May 2024).
Ye N, Yu D, Zhou Y, Shang K, Zhang S. False Information Detection. Encyclopedia. Available at: https://encyclopedia.pub/entry/54602. Accessed May 14, 2024.
Ye, Na, Dingguo Yu, Yijie Zhou, Ke-Ke Shang, Suiyu Zhang. "False Information Detection" Encyclopedia, https://encyclopedia.pub/entry/54602 (accessed May 14, 2024).
Ye, N., Yu, D., Zhou, Y., Shang, K., & Zhang, S. (2024, January 31). False Information Detection. In Encyclopedia. https://encyclopedia.pub/entry/54602
Ye, Na, et al. "False Information Detection." Encyclopedia. Web. 31 January, 2024.
False Information Detection
Edit

An important feature of the information age is the emergence of information, which includes a great deal of disinformation. This disinformation influences people’s decision making and can trigger social conflict. With the spread of the internet, disinformation often comes in the form of online rumors. Online rumors usually refer to words spread through online communication media (such as Weibo, WeChat, forums, etc.), which have no basis in fact and have an offensive and purposeful nature. Online rumors are often used for fraud and phishing, which pose a significant threat to the safety and interests of individuals and society, making the detection of false information increasingly important.

false information detection online rumors deep learning graph convolutional networks machine learning

1. Introduction

The application scenarios of false information detection are extensive, involving multiple fields such as news media, social networks, and e-commerce. In the news media field, false information detection can help news organizations and reporters distinguish and block fake news, improving the credibility of news reporting. In the social network field, false information detection can help social network platforms discover and remove false information in a timely manner, thereby maintaining the health and order of the network space. In the e-commerce field, false information detection can help consumers identify fake goods and false advertising and safeguard the rights and interests of consumers.
In false information detection tasks, there are many research results available for reference. Traditional content-based approaches, which analyze the credibility of individual tweets or claims separately, ignore the high correlation between tweets and events and do not consider information from human–content interaction data. In recent years, many methods based on deep learning and methods based on novel feature fusion have also emerged. For example, Ma proposed a method for rumor detection using a tree-structured recursive neural network, and the results show that the proposed method can achieve excellent early detection of rumors [1]. However, this method may have some difficulties in processing long texts and complex syntax structures. Vu proposed a new model based on graph convolutional networks and propagation embedding for rumor detection in social media and conducted sufficient experiments on real datasets to prove the effectiveness of the method [2]. However, this method is aimed at text propagation in social networks and may not be suitable for cases involving visual or other non-textual information in the propagation process. In addition, Monti proposed a new type of automatic fake news detection model based on geometric deep learning, and experiments showed that social network propagation and structure are important features for the highly accurate detection of fake news [3]. However, this method may be affected by the sparseness and incompleteness of the data. Social media data often have high dynamicity and noise and lack complete information labels, which may lead to a decline in the performance of the model. In addition, since different news data are often interrelated, they are naturally interactive. Graph neural networks that are good at processing graph structures are also applied to rumor detection tasks. For example, Lotfi proposed a model that uses graph convolutional networks to detect rumor conversations, which extracts reply trees and user graphs for each conversation, achieving better performance compared to the baseline method [4]. Bian proposed a bidirectional graph model called a bidirectional graph convolutional network (Bi-GCN) to explore both features through top-down and bottom-up rumor propagation. It uses a GCN with a top-down directed graph of rumor propagation to learn the patterns of rumor propagation, and a GCN with a rumor propagation graph in the opposite direction to capture the structure of rumor propagation, which empirically demonstrated the superiority of this method over state-of-the-art methods [5]. Qian proposed a hierarchical multimodal contextual attention network (HMCAN) that uses the Resnet and Bert models to learn the features of images and text, respectively, and designed a hierarchical coding network to capture hierarchical semantics for fake news detection [6].

2. Methods for Detecting Fake Information

Traditional methods for detecting fake information can be categorized into two types: rule-based methods and machine learning-based methods. Rule-based methods classify real and fake information using the differences between them, including features like keywords, sentence structures, and sentiment polarities in the text [7]. On the other hand, machine learning-based methods classify real and fake information by building models, such as using support vector machines, random forests, or other algorithms to train and classify data. Ma et al. first used deep learning models to detect rumors on Weibo [8]. In subsequent studies, they proposed two recursive neural network models based on top-down and bottom-up tree structures to better capture rumor structures and text features. The results showed that this model achieved high accuracy in detecting early propagating rumors [1].
Since introducing deep learning methods, the accuracy and efficiency of fake information detection have significantly improved. Among them, graph neural networks, as a powerful representation learning method, have a wide range of applications in fake information detection. Graph neural network-based fake information detection methods usually fall into two categories: node-based methods and graph-based methods.
Node-based methods mainly focus on node features and contextual information, whereas graph-based methods use the entire graph as input and utilize graph neural networks to learn graph representations. In node-based methods, the most commonly used approach is to use the social and content attributes of nodes for fake information detection, for example, by using features such as user information, text content [1][9], and time information to determine whether the node is spreading fake information. Y Liu et al. used recurrent and convolutional networks to construct a time-series classifier to capture global and local variations in user features on the propagation path, thus detecting fake news [10]. This method is the first to model the news dissemination path on social media as multi-dimensional time series and practice fake news detection through a sequence classifier. Ling Sun et al. discussed a novel joint learning model called HG-SL for the early detection of fake news. This model uses a hyper-GNN to embed the global relationships of users, and multi-head self-attention modules to simultaneously learn local contexts (local context in specific news) during propagation in order to comprehensively capture the differences between true and false news. The introduction of global node centrality and local propagation status further highlights user influence and news dissemination ability. The experiments show that HG-SL is significantly better than the SOTA models in the early detection of fake news [11]. In addition, some studies have also considered the propagation behavior of nodes as one of the node features, such as the forwarding and like counts of nodes [12][13].
In graph-based methods, the main approach is to learn the representation of the entire graph through graph neural networks and then perform fake information detection. For example, Tian Bian et al. proposed a novel bidirectional graph convolutional network (Bi-GCN) model, which uses a rumor propagation-directed graph with a top-down structure to learn the propagation patterns of rumors, and a rumor propagation graph with a reverse direction to capture the structure of rumor propagation. The influence of the original post of the rumor is enhanced in the graph structure, and the model achieved excellent results in fake information detection [5]. K Tu et al. proposed a framework for rumor representation learning and detection. This framework uses combined text and propagation structure representation learning to improve rumor detection performance. The researchers proposed a joint graph concept to integrate the propagation structure of all tweets to alleviate the sparsity issue of the propagation structure in the early stage [14]. Some researchers have also combined graph neural networks with attention mechanisms to learn graph representations more accurately. For instance, Qi Huang et al. proposed a meta-path-based heterogeneous graph attention network framework. The heterogeneous graph is decomposed into tweet word and user subgraphs according to tweet words and tweet user paths, and node representations are learned using subgraph attention networks to capture the global semantic relationships of text content and fuse information involved in source tweet propagation for rumor detection [15]. Chunyuan Yuan et al. proposed a novel global-local attention network (GLAN) for rumor detection on social media. Their method combines local semantic relationships with global structural information, uses multi-head attention mechanisms to integrate the semantic information of relevant retweets into the source tweet, generates a better-integrated representation, establishes a heterogeneous graph using global structural information to capture the complex global information between different source tweets, and uses global attention for rumor detection. Experimental results show that the GLAN is significantly better than existing models in rumor detection and early detection [16]. In addition, Ma et al. used statistical features in three aspects, including rumor content language characteristics, user characteristics participating in rumor transmission, and the propagation network structure to build a feature graph. The researchers integrated entity recognition, sentence reconstruction, and ordinary differential equation networks into a unified framework called ESODE, which improved the performance of rumor detection [17].

References

  1. Ma, J.; Gao, W.; Wong, K.-F. Rumor Detection on Twitter with Tree-Structured Recursive Neural Networks; Association for Computational Linguistics: Melbourne, Australia, 2018.
  2. Vu, D.T.; Jung, J.J. Rumor Detection by Propagation Embedding Based on Graph Convolutional Network. Int. J. Comput. Intell. Syst. 2021, 14, 1053–1065.
  3. Monti, F.; Frasca, F.; Eynard, D.; Mannion, D.; Bronstein, M.M. Fake News Detection on Social Media Using Geometric Deep Learning. arXiv 2019, arXiv:1902.06673.
  4. Lotfi, S.; Mirzarezaee, M.; Hosseinzadeh, M.; Seydi, V. Detection of rumor conversations in Twitter using graph convolutional networks. Appl. Intell. 2021, 51, 4774–4787.
  5. Bian, T.; Xiao, X.; Xu, T.; Zhao, P.; Huang, W.; Rong, Y.; Huang, J. Rumor detection on social media with bi-directional graph convolutional networks. In Proceedings of the AAAI Conference on Artificial Intelligence, New York, NY, USA, 7–12 February 2020; Volume 34, pp. 549–556.
  6. Qian, S.; Wang, J.; Hu, J.; Fang, Q.; Xu, C. Hierarchical multi-modal contextual attention network for fake news detection. In Proceedings of the 44th International ACM SIGIR Conference on Research and Development in Information Retrieval, Virtual Event, Canada, 11–15 July 2021; pp. 153–162.
  7. Andreevskaia, A.; Bergler, S. Sentiment Tag Extraction from WordNet Glosses. In Proceedings of the 5th Conference on Language Resources and Evaluation (LREC’06), Genoa, Italy, 22–28 May 2006.
  8. Ma, J.; Gao, W.; Mitra, P.; Kwon, S.; Jansen, B.J.; Wong, K.-F.; Cha, M. Detecting Rumors from Microblogs with Recurrent Neural Networks. In Proceedings of the Proceedings of the Twenty-Fifth International Joint Conference on Artificial Intelligence (IJCAI-16), New York, NY, USA, 9–15 July 2016.
  9. Castillo, C.; Mendoza, M.; Poblete, B. Information Credibility on Twitter. In Proceedings of the 20th International Conference on World Wide Web, Hyderabad, India, 28 March–1 April 2011; pp. 675–684.
  10. Liu, Y.; Wu, Y.-F. Early Detection of Fake News on Social Media through Propagation Path Classification with Recurrent and Convolutional Networks. In Proceedings of the AAAI Conference on Artificial Intelligence, New Orleans, LA, USA, 2–7 February 2018; Volume 32.
  11. Sun, L.; Rao, Y.; Lan, Y.; Xia, B.; Li, Y. HG-SL: Jointly Learning of Global and Local User Spreading Behavior for Fake News Early Detection. Proc. AAAI Conf. Artif. Intell. 2023, 37, 5248–5256.
  12. Jin, Z.; Cao, J.; Jiang, Y.-G.; Zhang, Y. News Credibility Evaluation on Microblog with a Hierarchical Propagation Model. In Proceedings of the 2014 IEEE International Conference on Data Mining, Shenzhen, China, 14–17 December 2014; pp. 230–239.
  13. Ruchansky, N.; Seo, S.; Liu, Y. Csi: A Hybrid Deep Model for Fake News Detection. In Proceedings of the 2017 ACM on Conference on Information and Knowledge Management, Singapore, 6–10 November 2017; pp. 797–806.
  14. Tu, K.; Chen, C.; Hou, C.; Yuan, J.; Li, J.; Yuan, X. Rumor2vec: A Rumor Detection Framework with Joint Text and Propagation Structure Representation Learning. Inf. Sci. 2021, 560, 137–151.
  15. Huang, Q.; Yu, J.; Wu, J.; Wang, B. Heterogeneous Graph Attention Networks for Early Detection of Rumors on Twitter. In Proceedings of the 2020 International Joint Conference on Neural Networks (IJCNN), Glasgow, UK, 19–24 July 2020; pp. 1–8.
  16. Yuan, C.; Ma, Q.; Zhou, W.; Han, J.; Hu, S. Jointly Embedding the Local and Global Relations of Heterogeneous Graph for Rumor Detection. In Proceedings of the 2019 IEEE international conference on data mining (ICDM), Beijing, China, 8–11 November 2019; pp. 796–805.
  17. Ma, T.; Zhou, H.; Tian, Y.; Al-Nabhan, N. A Novel Rumor Detection Algorithm Based on Entity Recognition, Sentence Reconfiguration, and Ordinary Differential Equation Network. Neurocomputing 2021, 447, 224–234.
More
Information
Subjects: Communication
Contributors MDPI registered users' name will be linked to their SciProfiles pages. To register with us, please refer to https://encyclopedia.pub/register : , , , ,
View Times: 95
Revisions: 2 times (View History)
Update Date: 02 Feb 2024
1000/1000