SlideShare uma empresa Scribd logo
1 de 5
Baixar para ler offline
INTERNATIONAL RESEARCH JOURNAL OF ENGINEERING AND TECHNOLOGY (IRJET) E-ISSN: 2395-0056
VOLUME: 07 ISSUE: 03 | MAR 2020 WWW.IRJET.NET P-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 3857
Fake News Detection using Machine Learning
Abhishek Ratan Dixit1
Department of
Information Technology
Pillai College Of
Engineering
(University of Mumbai)
Mumbai,India
Vignesh Venkatachalam2
Iyer
Department of
Information Technology
Pillai College Of
Engineering
(University of Mumbai)
Rohan Arun Gore3
Department of
Information Technology
Pillai College Of
Engineering
(University of Mumbai)
Mumbai,India
----------------------------------------------------------------------***---------------------------------------------------------------------
Abstract—Social media for news consumption is a mixed
blessing. On the one hand, its low cost, easy access, and rapid
dissemination of information over the social media.On the other
hand, it enables the wide spread of “fake news” , i.e., information
written intentionally to mislead the reader. The extensive spread
of fake news has the potential for extremely negative impacts on
individuals and society.Generally fake news detection methods
classified into two categories.
1) News content models.
2) Social context models.
Many people rely on social media sites and networks for daily
news stories and often it is difficult to tell whether a news is
credible or not.Fake news articles could be in the form of
clickbait(These are stories that are deliberately fabricated to gain
more website visitors and increase advertising revenue for
websites.),propaganda(Stories that are created to deliberately
mislead audiences, promote a biased point of view or particular
political cause or agenda.),etc.
Machine learning, an application of Artificial Intelligence that
provides systems the ability to automatically learn and improve
from experience without being explicitly programmed can be
used to tackle these problems head on.Ours is an effort to use this
technology to help reduce the problem of fake news in social
platform such as Facebook, twitter, etc.
In this approach, we propose a standalone Machine Learning
Fake News Detection model which combines the news contents
and social context features and classify the news content.
1. INTRODUCTION
The traditional algorithms rely on human developers to provide
explicit instructions, machine learning allows data to guide the
process. Using a training set comprised of representative data,
the computer develops a model that can be compared against an
expected output. The more data the computer takes into account,
the more accurate and sophisticated its model becomes without
developers having to write additional lines of code.The same
advancements in storage and processing that have facilitated the
rise of big data have also allowed machine learning to advance by
leaps and bounds. The same advancements in storage and
processing that have facilitated the rise of big data have also
allowed machine learning to advance by leaps and bounds.
Storage and processing frameworks like Hadoop and robust
libraries for programming languages like R, Python, and Java have
made it feasible for the first time to feed machine learning
algorithms tremendous amounts of unstructured data. For data
scientists, the ability to create algorithms that are guided by
actual data is a huge advantage.For data scientists, the ability to
create algorithms that are guided by actual data is a huge
advantage.
These days fake news are growing problems with huge
ramifications in our society.The term ‘fake news’ became
common parlance for the issue, particularly to describe factually
incorrect and misleading articles published mostly for the
purpose of making money through page views. NLP is a field in
machine learning with the ability of a computer to understand,
analyze, manipulate, and potentially generate human language. In
this project, we are demonstrating the application on NLP for
detecting ‘fake news’ i.e. the misleading news stories that comes
from non-reputable sources. However, in order to solve this
problem, it is important to understand what fake news is. Later, it
is needed to look into how the techniques in the fields of machine
learning, natural language processing help us to detect fake news.
A. Objectives
a) To build a model that can differentiate between ‘real’ and
‘fake’ news. b) To design and implement a system that overcomes
the drawbacks of the existing systems. c) To design a system that
is Cost effective, reliable and consumes less power.
B. Scope
Machine Learning is currently one of the hottest topics in IT.
Technologies such as digital, big data, Artificial Intelligence,
automation and machine learning are increasingly shaping future
of work and jobs. is a specific set of techniques that enable
machines to learn from data, and make predictions. When the
biases of our past and present fuel the predictions of the future,
it's a tall order to expect AI to operate independently of human
flaws. The goal of our project is to create a model which can be
used in social platform to detect any fake news which user shared.
2. SYSTEM ARCHITECTURE
A. Existing System
There exists a large body of research on the topic of machine
learning methods for deception detection, most of it has been
focusing on classifying online reviews and publicly available
social media posts.
Conroy, Rubin, and Chen [1] outlines several approaches that
seem promising towards the aim of perfectly classify the
misleading articles. They note that simple content-related n-
grams and shallow parts-of-speech (POS) tagging have proven
insufficient for the classification task, often failing to account for
important context information. Deep Syntax analysis using
Probabilistic Context Free Grammars (PCFG) have been shown to
be particularly valuable in combination with n-gram methods.
Feng, Banerjee, and Choi [2] are able to achieve 85%-91%
accuracy in deception related classification tasks using online
review corpora.
Prof. Krishnendu S Nair4
Department of Computer
Engineering
Pillai College Of
Engineering
(University of Mumbai)
Mumbai,India
INTERNATIONAL RESEARCH JOURNAL OF ENGINEERING AND TECHNOLOGY (IRJET) E-ISSN: 2395-0056
VOLUME: 07 ISSUE: 03 | MAR 2020 WWW.IRJET.NET P-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 3858
Feng and Hirst implemented a semantic analysis looking at
'object: descriptor' pairs for contradictions with the text on top of
Feng's initial deep syntax model for additional improvement.
Rubin, Lukoianova and Tatiana analyze rhetorical structure using
a vector space model with similar success. Ciampaglia et al.
employ language pattern similarity networks requiring a pre-
existing knowledge base.
Existing system block diagram
B. Proposed System
In this approach a model is built based on the count vectorizer or
a tfidf matrix ( i.e ) word tallies relatives to how often they are
used in other artices in your dataset ) can help . Since this
problem is a kind of text classification, Implementing a Naive
Bayes classifier will be best as this is standard for text-based
processing. The actual goal is in developing a model which was
the text transformation (count vectorizer vs tfidf vectorizer) and
choosing which type of text to use (headlines vs full text). Now
the next step is to extract the most optimal features for
countvectorizer or tfidf-vectorizer, this is done by using a n-
number of the most used words, and/or phrases, lower casing or
not, mainly removing the stop words which are common words
such as “the”, “when”, and “there” and only using those words
that appear at least a given number of times in a given text
dataset.
C. Sequence of steps involved
Exploratory Data Analysis.
Generate TFIDF and BOW vectors.
Feature engineering.
Test-Train split.
Training the models.
Prediction on test data.
Evaluating the model based on different evaluation
metrics(f1 score,confusion matrix,etc)
D. System Block Diagram
Cleaning the training Data
Cleaning of the data will be done to remove all the noisy data
from the dataset to bring the data in the form suitable to feed to
machine learning algorithms. It involves, removing all the html
tags, punctuations, applying stemmers, stop words and so on.
Generating Vectors for the text data
Machine learning models cannot be operated on text data. Hence,
we need to convert our text data into numerical form before
feeding it to machine learning models. Our text data will be
converted into vectors using TFIDF and Bag Of Words (BOW)
algorithms.
Test Train splits
After cleaning the data and getting the vectors for the same, we
will split the data generally in a ratio of 80:20. So, the 80% of the
data will be used for training the model and the remaining 20%
will be used for validation of the model and eventually getting its
accuracy.
Training the model
Now, we will be training our model with the training data which
we have prepared. Since this problem is a text classification
problem, we will be using the naive bayes algorithm as it works
best for text classification problems.
Prediction on test set
After the model is trained, we will predict the target variable for
the test set and compare it with the actual data to evaluate the
model and find its accuracy.
Results and pickled model
Since everything is done properly, we will now save our model in
a pickle file so that we can readily use it without building it again.
Naive Bayes Algorithm
Naive Bayes is a simple technique for constructing classifiers:
models that assign class labels to problem instances, represented
as vectors of feature values, where the class labels are drawn
from some finite set[14].Abstractly Naive Bayes is a conditional
probabilistic model: given a problem instance to be classified,
represented by a vector x=(x1,x2,....xn) representing some n
features (independent variables), it assigns to thisinstance
probabilities.
In plain English, using Bayesian probability terminology, the
above equation can be written as
INTERNATIONAL RESEARCH JOURNAL OF ENGINEERING AND TECHNOLOGY (IRJET) E-ISSN: 2395-0056
VOLUME: 07 ISSUE: 03 | MAR 2020 WWW.IRJET.NET P-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 3859
In practice, there is interest only in the numerator of that fraction,
because the denominator does not depend on C and the values of
the features xi are given, so that the denominator is effectively
constant. The numerator is equivalent to the joint probability
model.
which can be rewritten as follows, using the chain rule for
repeated applications of the definition of conditional probability:
Now, assume that each feature xi is conditionally independent of
every other feature xj.This leads to approximation that
Thus, the joint model can be expressed as
Xgboost algorithm
It is collection of decision trees. Initially the dataset assign same
weights. Each decision tree contain model which will do
predictions. It is possible that model do misclassifications(weak
classifiers). Update(increase) weights. Then next DT will take
max weights and do prediction. Again - misclassifications(weak
classifiers). Update(increase) weights. And finally it take
majority.
3. HARDWARE SPECIFICATION
Processor Intel(R) Core(TM) i7-
8550U CPU @ 1.80GHz,
1992 Mhz, 4 Core(s), 8
Logical Processor(s)
OS Name Microsoft Windows 10
Home Single Language
RAM 8 GB DDR4
Internal Memory 2TB
Total virtual memory 9.75GB
Available Virtual Memory 5.71GB
Ram speed 2400MHz
Bluetooth Version 4.2
Wireless LAN 802.11 a/b/g/n/ac
Clockspeed 1.6GHz
4. SOFTWARE SPECIFICATION
Jupyter notebook
Angular 6
Sublime Text IDE
Ionic
NodeJS
5. PROJECT INPUTS AND OUTPUTS
E. Dashboard
Our website has a dashboard where user can get live feeds via
google news api.
F. Input details.
User can enter any article that he/she come across on the
internet or social media on the below textbox and our algorithm
will predict whether the given news article is Fake or Real. User
will also be able to view the related articles which our algorithm
found across the web.
G. Output Details
Following is the sample output which will be displayed when
user enters an article.
INTERNATIONAL RESEARCH JOURNAL OF ENGINEERING AND TECHNOLOGY (IRJET) E-ISSN: 2395-0056
VOLUME: 07 ISSUE: 03 | MAR 2020 WWW.IRJET.NET P-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 3860
6. Applications
 Validity Importance
In various news networks where validity of information
is of at most importance.
 Organisations :-
In various multinational or national organisations, to
prevent misunderstandings and yet decreasing the morale
of workers/employees.
 Social Networks : -
In social networking sites, where a message being
received can be identified as authentic or fake, thus
stopping a rumour from going viral.
 Mobile Application :-
It could also be used as a mobile application to verify the
news a person might have heard during a verbal
conversation.
7. SUMMARY
With the increasing popularity of social media, more and
more people consume news from social media instead of
traditional news media. However, social media has also
been used to spread fake news, which has strong negative
impacts on individual users and broader society.
In thisarticle, we explored the fake news problem by
reviewing existing literature in two phases:
characterization and detection. In the characterization
phase, we introduced the basic concepts and principles of
fake news in both traditional media and social media. In
the detection phase, we reviewed existing fake news
detection approaches from a data mining perspective,
including feature extraction and model construction. We
also further discussed the datasets, evaluation metrics, and
promising future directions in fake news detection
research and expand the field to other applications
REFERENCES
1. Marco L. Della Vedova,Eugenio Tacchini,Stefano
Moret,Gabriele Ballarin,Massimo DiPierro,Luca de
Alfaro. Automatic Online Fake News Detection
Combining Content and Social Signals.
2. Mykhailo Granik, Volodymyr Mesyura. Fake News
Detection Using Naive Bayes Classifier(2017)
3. Kai Shu,Amy Sliva, Suhang Wang, Jiliang Tang, and
Huan Liu (ACM digital library)June (2017). Fake
News Detection on Social Media: A Data Mining
Perspective
4. LUÍS BORGES, BRUNO MARTINS,PÁVEL CALADO.
Combining Similarity Features and Deep
Representation Learning for Stance Detection in
the Context of Checking Fake News
5. Sebastian Tschiatschek,Adish Singla,Manuel
Gomez Rodriguez,Arpit Merchant,Andreas Krause.
Fake News Detection in Social Networks via
Crowd Signals
6. Georg Rehm, Julian,Moreno-Schneider, Peter
Bourgonje. Automatic and Manual Web
Annotations in an Infrastructure to handle Fake
News and other Online Media Phenomena
7. Georg Rehm, Julian Moreno-Schneider, Peter
Bourgonje (22 May 2018). Fake News Detection
with Deep Diffusive Network Model
8. Kai Shu, Deepak Mahudeswaran, and Huan Liu.
Fake News Tracker: A Tool for Fake News
Collection, Detection, and Visualization
9. Veronica Perez-Rosas, Bennett Kleinberg,
Alexandra Lefevre,Rada Mihalcea. Automatic
Detection of Fake News
10. Aswini Thota,Priyanka Tilak,Simrat
Ahluwalia,Nibrat Lohia. Fake News Detection: A
Deep Learning Approach
11. Shubham Gupta , Dishant Grover , Anushka Gupta ,
Deepanshu Kapoor , and Narina Thakur. A Survey
on Identification of Fake News
12. Fernando Cardoso Durier da Silva ,Rafael Vieira da
Costa Alves,Ana Cristina Bicharra Garcia. Can
Machines Learn to Detect Fake News? A Survey
Focused on Social Media
13. http://news.mit.edu/2018/mit-csail-machine-
learning-system-detects-fake-news-from-source-
1004
14. https://en.wikipedia.org/wiki/Naive_Bayes_classi
fier
15. https://en.wikipedia.org/wiki/Support-
vector_machine
16. Eason, B. Noble, and I. N. Sneddon, “On certain
integrals of Lipschitz-Hankel type involving
products of Bessel functions,” Phil. Trans. Roy. Soc.
INTERNATIONAL RESEARCH JOURNAL OF ENGINEERING AND TECHNOLOGY (IRJET) E-ISSN: 2395-0056
VOLUME: 07 ISSUE: 03 | MAR 2020 WWW.IRJET.NET P-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 3861
London, vol. A247, pp. 529–551, April 1955.
(references)
17. J. Clerk Maxwell, A Treatise on Electricity and
Magnetism, 3rd ed., vol. 2. Oxford: Clarendon,
1892, pp.68–73.
18. I. S. Jacobs and C. P. Bean, “Fine particles, thin films
and exchange anisotropy,” in Magnetism, vol. III, G.
T. Rado and H. Suhl, Eds. New York: Academic,
1963, pp. 271–350.
19. K. Elissa, “Title of paper if known,” unpublished.
20. R. Nicole, “Title of paper with only first word
capitalized,” J. Name Stand. Abbrev., in press.
21. Y. Yorozu, M. Hirano, K. Oka, and Y. Tagawa,
“Electron spectroscopy studies on magneto-optical
media and plastic substrate interface,” IEEE
Transl. J. Magn. Japan, vol. 2, pp. 740–741, August
1987 [Digests 9th Annual Conf. Magnetics Japan, p.
301, 1982].
22. M. Young, The Technical Writer’s Handbook. Mill
Valley, CA: University Science, 1989.

Mais conteúdo relacionado

Mais procurados

IRJET - Suicidal Text Detection using Machine Learning
IRJET -  	  Suicidal Text Detection using Machine LearningIRJET -  	  Suicidal Text Detection using Machine Learning
IRJET - Suicidal Text Detection using Machine LearningIRJET Journal
 
IRJET- Detecting Fake News
IRJET- Detecting Fake NewsIRJET- Detecting Fake News
IRJET- Detecting Fake NewsIRJET Journal
 
FAKE NEWS DETECTION WITH SEMANTIC FEATURES AND TEXT MINING
FAKE NEWS DETECTION WITH SEMANTIC FEATURES AND TEXT MININGFAKE NEWS DETECTION WITH SEMANTIC FEATURES AND TEXT MINING
FAKE NEWS DETECTION WITH SEMANTIC FEATURES AND TEXT MININGijnlc
 
IRJET- Twitter Sentimental Analysis for Predicting Election Result using ...
IRJET-  	  Twitter Sentimental Analysis for Predicting Election Result using ...IRJET-  	  Twitter Sentimental Analysis for Predicting Election Result using ...
IRJET- Twitter Sentimental Analysis for Predicting Election Result using ...IRJET Journal
 
A RELIABLE ARTIFICIAL INTELLIGENCE MODEL FOR FALSE NEWS DETECTION MADE BY PUB...
A RELIABLE ARTIFICIAL INTELLIGENCE MODEL FOR FALSE NEWS DETECTION MADE BY PUB...A RELIABLE ARTIFICIAL INTELLIGENCE MODEL FOR FALSE NEWS DETECTION MADE BY PUB...
A RELIABLE ARTIFICIAL INTELLIGENCE MODEL FOR FALSE NEWS DETECTION MADE BY PUB...caijjournal
 
A Survey Of Collaborative Filtering Techniques
A Survey Of Collaborative Filtering TechniquesA Survey Of Collaborative Filtering Techniques
A Survey Of Collaborative Filtering Techniquestengyue5i5j
 
IRJET - Implementation of Twitter Sentimental Analysis According to Hash Tag
 IRJET - Implementation of Twitter Sentimental Analysis According to Hash Tag IRJET - Implementation of Twitter Sentimental Analysis According to Hash Tag
IRJET - Implementation of Twitter Sentimental Analysis According to Hash TagIRJET Journal
 
Political prediction analysis using text mining and deep learning
Political prediction analysis using text mining and deep learningPolitical prediction analysis using text mining and deep learning
Political prediction analysis using text mining and deep learningVishwambhar Deshpande
 
CATEGORIZING 2019-N-COV TWITTER HASHTAG DATA BY CLUSTERING
CATEGORIZING 2019-N-COV TWITTER HASHTAG DATA BY CLUSTERINGCATEGORIZING 2019-N-COV TWITTER HASHTAG DATA BY CLUSTERING
CATEGORIZING 2019-N-COV TWITTER HASHTAG DATA BY CLUSTERINGijaia
 
IRJET - Sentiment Analysis for Marketing and Product Review using a Hybrid Ap...
IRJET - Sentiment Analysis for Marketing and Product Review using a Hybrid Ap...IRJET - Sentiment Analysis for Marketing and Product Review using a Hybrid Ap...
IRJET - Sentiment Analysis for Marketing and Product Review using a Hybrid Ap...IRJET Journal
 
Automatic Hate Speech Detection: A Literature Review
Automatic Hate Speech Detection: A Literature ReviewAutomatic Hate Speech Detection: A Literature Review
Automatic Hate Speech Detection: A Literature ReviewDr. Amarjeet Singh
 
Exploiting Wikipedia and Twitter for Text Mining Applications
Exploiting Wikipedia and Twitter for Text Mining ApplicationsExploiting Wikipedia and Twitter for Text Mining Applications
Exploiting Wikipedia and Twitter for Text Mining ApplicationsIRJET Journal
 
Tweet Segmentation and Its Application to Named Entity Recognition
Tweet Segmentation and Its Application to Named Entity RecognitionTweet Segmentation and Its Application to Named Entity Recognition
Tweet Segmentation and Its Application to Named Entity Recognition1crore projects
 
IRJET- A Pragmatic Supervised Learning Methodology of Hate Speech Detection i...
IRJET- A Pragmatic Supervised Learning Methodology of Hate Speech Detection i...IRJET- A Pragmatic Supervised Learning Methodology of Hate Speech Detection i...
IRJET- A Pragmatic Supervised Learning Methodology of Hate Speech Detection i...IRJET Journal
 
76201960
7620196076201960
76201960IJRAT
 
Tweet sentiment analysis
Tweet sentiment analysisTweet sentiment analysis
Tweet sentiment analysisAnil Shrestha
 
Prediction of User Rare Sequential Topic Patterns of Internet Users
Prediction of User Rare Sequential Topic Patterns of Internet UsersPrediction of User Rare Sequential Topic Patterns of Internet Users
Prediction of User Rare Sequential Topic Patterns of Internet UsersIRJET Journal
 
IRJET- Effective Countering of Communal Hatred During Disaster Events in Soci...
IRJET- Effective Countering of Communal Hatred During Disaster Events in Soci...IRJET- Effective Countering of Communal Hatred During Disaster Events in Soci...
IRJET- Effective Countering of Communal Hatred During Disaster Events in Soci...IRJET Journal
 

Mais procurados (20)

IRJET - Suicidal Text Detection using Machine Learning
IRJET -  	  Suicidal Text Detection using Machine LearningIRJET -  	  Suicidal Text Detection using Machine Learning
IRJET - Suicidal Text Detection using Machine Learning
 
IRJET- Detecting Fake News
IRJET- Detecting Fake NewsIRJET- Detecting Fake News
IRJET- Detecting Fake News
 
FAKE NEWS DETECTION WITH SEMANTIC FEATURES AND TEXT MINING
FAKE NEWS DETECTION WITH SEMANTIC FEATURES AND TEXT MININGFAKE NEWS DETECTION WITH SEMANTIC FEATURES AND TEXT MINING
FAKE NEWS DETECTION WITH SEMANTIC FEATURES AND TEXT MINING
 
IRJET- Twitter Sentimental Analysis for Predicting Election Result using ...
IRJET-  	  Twitter Sentimental Analysis for Predicting Election Result using ...IRJET-  	  Twitter Sentimental Analysis for Predicting Election Result using ...
IRJET- Twitter Sentimental Analysis for Predicting Election Result using ...
 
A RELIABLE ARTIFICIAL INTELLIGENCE MODEL FOR FALSE NEWS DETECTION MADE BY PUB...
A RELIABLE ARTIFICIAL INTELLIGENCE MODEL FOR FALSE NEWS DETECTION MADE BY PUB...A RELIABLE ARTIFICIAL INTELLIGENCE MODEL FOR FALSE NEWS DETECTION MADE BY PUB...
A RELIABLE ARTIFICIAL INTELLIGENCE MODEL FOR FALSE NEWS DETECTION MADE BY PUB...
 
A Survey Of Collaborative Filtering Techniques
A Survey Of Collaborative Filtering TechniquesA Survey Of Collaborative Filtering Techniques
A Survey Of Collaborative Filtering Techniques
 
IRJET - Implementation of Twitter Sentimental Analysis According to Hash Tag
 IRJET - Implementation of Twitter Sentimental Analysis According to Hash Tag IRJET - Implementation of Twitter Sentimental Analysis According to Hash Tag
IRJET - Implementation of Twitter Sentimental Analysis According to Hash Tag
 
Political prediction analysis using text mining and deep learning
Political prediction analysis using text mining and deep learningPolitical prediction analysis using text mining and deep learning
Political prediction analysis using text mining and deep learning
 
CATEGORIZING 2019-N-COV TWITTER HASHTAG DATA BY CLUSTERING
CATEGORIZING 2019-N-COV TWITTER HASHTAG DATA BY CLUSTERINGCATEGORIZING 2019-N-COV TWITTER HASHTAG DATA BY CLUSTERING
CATEGORIZING 2019-N-COV TWITTER HASHTAG DATA BY CLUSTERING
 
IRJET - Sentiment Analysis for Marketing and Product Review using a Hybrid Ap...
IRJET - Sentiment Analysis for Marketing and Product Review using a Hybrid Ap...IRJET - Sentiment Analysis for Marketing and Product Review using a Hybrid Ap...
IRJET - Sentiment Analysis for Marketing and Product Review using a Hybrid Ap...
 
Abstract
AbstractAbstract
Abstract
 
Automatic Hate Speech Detection: A Literature Review
Automatic Hate Speech Detection: A Literature ReviewAutomatic Hate Speech Detection: A Literature Review
Automatic Hate Speech Detection: A Literature Review
 
E017433538
E017433538E017433538
E017433538
 
Exploiting Wikipedia and Twitter for Text Mining Applications
Exploiting Wikipedia and Twitter for Text Mining ApplicationsExploiting Wikipedia and Twitter for Text Mining Applications
Exploiting Wikipedia and Twitter for Text Mining Applications
 
Tweet Segmentation and Its Application to Named Entity Recognition
Tweet Segmentation and Its Application to Named Entity RecognitionTweet Segmentation and Its Application to Named Entity Recognition
Tweet Segmentation and Its Application to Named Entity Recognition
 
IRJET- A Pragmatic Supervised Learning Methodology of Hate Speech Detection i...
IRJET- A Pragmatic Supervised Learning Methodology of Hate Speech Detection i...IRJET- A Pragmatic Supervised Learning Methodology of Hate Speech Detection i...
IRJET- A Pragmatic Supervised Learning Methodology of Hate Speech Detection i...
 
76201960
7620196076201960
76201960
 
Tweet sentiment analysis
Tweet sentiment analysisTweet sentiment analysis
Tweet sentiment analysis
 
Prediction of User Rare Sequential Topic Patterns of Internet Users
Prediction of User Rare Sequential Topic Patterns of Internet UsersPrediction of User Rare Sequential Topic Patterns of Internet Users
Prediction of User Rare Sequential Topic Patterns of Internet Users
 
IRJET- Effective Countering of Communal Hatred During Disaster Events in Soci...
IRJET- Effective Countering of Communal Hatred During Disaster Events in Soci...IRJET- Effective Countering of Communal Hatred During Disaster Events in Soci...
IRJET- Effective Countering of Communal Hatred During Disaster Events in Soci...
 

Semelhante a IRJET - Fake News Detection using Machine Learning

BANKING CHATBOT USING NLP AND MACHINE LEARNING ALGORITHMS
BANKING CHATBOT USING NLP AND MACHINE LEARNING ALGORITHMSBANKING CHATBOT USING NLP AND MACHINE LEARNING ALGORITHMS
BANKING CHATBOT USING NLP AND MACHINE LEARNING ALGORITHMSIRJET Journal
 
Machine Learning
Machine Learning Machine Learning
Machine Learning AyanGain
 
GEETHAhshansbbsbsbhshnsnsn_INTERNSHIP.pptx
GEETHAhshansbbsbsbhshnsnsn_INTERNSHIP.pptxGEETHAhshansbbsbsbhshnsnsn_INTERNSHIP.pptx
GEETHAhshansbbsbsbhshnsnsn_INTERNSHIP.pptxGeetha982072
 
Deepcoder to Self-Code with Machine Learning
Deepcoder to Self-Code with Machine LearningDeepcoder to Self-Code with Machine Learning
Deepcoder to Self-Code with Machine LearningIRJET Journal
 
IRJET - Conversion of Unsupervised Data to Supervised Data using Topic Mo...
IRJET -  	  Conversion of Unsupervised Data to Supervised Data using Topic Mo...IRJET -  	  Conversion of Unsupervised Data to Supervised Data using Topic Mo...
IRJET - Conversion of Unsupervised Data to Supervised Data using Topic Mo...IRJET Journal
 
Email Spam Detection Using Machine Learning
Email Spam Detection Using Machine LearningEmail Spam Detection Using Machine Learning
Email Spam Detection Using Machine LearningIRJET Journal
 
Visualization of Computer Forensics Analysis on Digital Evidence
Visualization of Computer Forensics Analysis on Digital EvidenceVisualization of Computer Forensics Analysis on Digital Evidence
Visualization of Computer Forensics Analysis on Digital EvidenceMuhd Mu'izuddin
 
IRJET - Mobile Chatbot for Information Search
 IRJET - Mobile Chatbot for Information Search IRJET - Mobile Chatbot for Information Search
IRJET - Mobile Chatbot for Information SearchIRJET Journal
 
IRJET- Machine Learning
IRJET- Machine LearningIRJET- Machine Learning
IRJET- Machine LearningIRJET Journal
 
IRJET- Semantic Question Matching
IRJET- Semantic Question MatchingIRJET- Semantic Question Matching
IRJET- Semantic Question MatchingIRJET Journal
 
Threat Detection System Using Data-science and NLP
Threat Detection System Using Data-science and NLPThreat Detection System Using Data-science and NLP
Threat Detection System Using Data-science and NLPIRJET Journal
 
Implementation of Spam Classifier using Naïve Bayes Algorithm
Implementation of Spam Classifier using Naïve Bayes AlgorithmImplementation of Spam Classifier using Naïve Bayes Algorithm
Implementation of Spam Classifier using Naïve Bayes AlgorithmIRJET Journal
 
Design of Chatbot using Deep Learning
Design of Chatbot using Deep LearningDesign of Chatbot using Deep Learning
Design of Chatbot using Deep LearningIRJET Journal
 
A survey on Machine Learning and Artificial Neural Networks
A survey on Machine Learning and Artificial Neural NetworksA survey on Machine Learning and Artificial Neural Networks
A survey on Machine Learning and Artificial Neural NetworksIRJET Journal
 
IRJET - Query Processing using NLP
IRJET - Query Processing using NLPIRJET - Query Processing using NLP
IRJET - Query Processing using NLPIRJET Journal
 
Bug Triage: An Automated Process
Bug Triage: An Automated ProcessBug Triage: An Automated Process
Bug Triage: An Automated ProcessIRJET Journal
 
IRJET- Data Reduction in Bug Triage using Supervised Machine Learning
IRJET- Data Reduction in Bug Triage using Supervised Machine LearningIRJET- Data Reduction in Bug Triage using Supervised Machine Learning
IRJET- Data Reduction in Bug Triage using Supervised Machine LearningIRJET Journal
 
IRJET- Factoid Question and Answering System
IRJET-  	  Factoid Question and Answering SystemIRJET-  	  Factoid Question and Answering System
IRJET- Factoid Question and Answering SystemIRJET Journal
 

Semelhante a IRJET - Fake News Detection using Machine Learning (20)

BANKING CHATBOT USING NLP AND MACHINE LEARNING ALGORITHMS
BANKING CHATBOT USING NLP AND MACHINE LEARNING ALGORITHMSBANKING CHATBOT USING NLP AND MACHINE LEARNING ALGORITHMS
BANKING CHATBOT USING NLP AND MACHINE LEARNING ALGORITHMS
 
Machine Learning
Machine Learning Machine Learning
Machine Learning
 
GEETHAhshansbbsbsbhshnsnsn_INTERNSHIP.pptx
GEETHAhshansbbsbsbhshnsnsn_INTERNSHIP.pptxGEETHAhshansbbsbsbhshnsnsn_INTERNSHIP.pptx
GEETHAhshansbbsbsbhshnsnsn_INTERNSHIP.pptx
 
Deepcoder to Self-Code with Machine Learning
Deepcoder to Self-Code with Machine LearningDeepcoder to Self-Code with Machine Learning
Deepcoder to Self-Code with Machine Learning
 
IRJET - Conversion of Unsupervised Data to Supervised Data using Topic Mo...
IRJET -  	  Conversion of Unsupervised Data to Supervised Data using Topic Mo...IRJET -  	  Conversion of Unsupervised Data to Supervised Data using Topic Mo...
IRJET - Conversion of Unsupervised Data to Supervised Data using Topic Mo...
 
Email Spam Detection Using Machine Learning
Email Spam Detection Using Machine LearningEmail Spam Detection Using Machine Learning
Email Spam Detection Using Machine Learning
 
Visualization of Computer Forensics Analysis on Digital Evidence
Visualization of Computer Forensics Analysis on Digital EvidenceVisualization of Computer Forensics Analysis on Digital Evidence
Visualization of Computer Forensics Analysis on Digital Evidence
 
IRJET - Mobile Chatbot for Information Search
 IRJET - Mobile Chatbot for Information Search IRJET - Mobile Chatbot for Information Search
IRJET - Mobile Chatbot for Information Search
 
IRJET- Machine Learning
IRJET- Machine LearningIRJET- Machine Learning
IRJET- Machine Learning
 
IRJET- Semantic Question Matching
IRJET- Semantic Question MatchingIRJET- Semantic Question Matching
IRJET- Semantic Question Matching
 
Threat Detection System Using Data-science and NLP
Threat Detection System Using Data-science and NLPThreat Detection System Using Data-science and NLP
Threat Detection System Using Data-science and NLP
 
Implementation of Spam Classifier using Naïve Bayes Algorithm
Implementation of Spam Classifier using Naïve Bayes AlgorithmImplementation of Spam Classifier using Naïve Bayes Algorithm
Implementation of Spam Classifier using Naïve Bayes Algorithm
 
Design of Chatbot using Deep Learning
Design of Chatbot using Deep LearningDesign of Chatbot using Deep Learning
Design of Chatbot using Deep Learning
 
Technovision
TechnovisionTechnovision
Technovision
 
A survey on Machine Learning and Artificial Neural Networks
A survey on Machine Learning and Artificial Neural NetworksA survey on Machine Learning and Artificial Neural Networks
A survey on Machine Learning and Artificial Neural Networks
 
IRJET - Query Processing using NLP
IRJET - Query Processing using NLPIRJET - Query Processing using NLP
IRJET - Query Processing using NLP
 
Bug Triage: An Automated Process
Bug Triage: An Automated ProcessBug Triage: An Automated Process
Bug Triage: An Automated Process
 
IRJET- Data Reduction in Bug Triage using Supervised Machine Learning
IRJET- Data Reduction in Bug Triage using Supervised Machine LearningIRJET- Data Reduction in Bug Triage using Supervised Machine Learning
IRJET- Data Reduction in Bug Triage using Supervised Machine Learning
 
Machine learning
Machine learningMachine learning
Machine learning
 
IRJET- Factoid Question and Answering System
IRJET-  	  Factoid Question and Answering SystemIRJET-  	  Factoid Question and Answering System
IRJET- Factoid Question and Answering System
 

Mais de IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

Mais de IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Último

Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...Call Girls in Nagpur High Profile
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringmulugeta48
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...ranjana rawat
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VDineshKumar4165
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...tanu pandey
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . pptDineshKumar4165
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Christo Ananth
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueBhangaleSonal
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfRagavanV2
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01KreezheaRecto
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)simmis5
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756dollysharma2066
 

Último (20)

Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 

IRJET - Fake News Detection using Machine Learning

  • 1. INTERNATIONAL RESEARCH JOURNAL OF ENGINEERING AND TECHNOLOGY (IRJET) E-ISSN: 2395-0056 VOLUME: 07 ISSUE: 03 | MAR 2020 WWW.IRJET.NET P-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 3857 Fake News Detection using Machine Learning Abhishek Ratan Dixit1 Department of Information Technology Pillai College Of Engineering (University of Mumbai) Mumbai,India Vignesh Venkatachalam2 Iyer Department of Information Technology Pillai College Of Engineering (University of Mumbai) Rohan Arun Gore3 Department of Information Technology Pillai College Of Engineering (University of Mumbai) Mumbai,India ----------------------------------------------------------------------***--------------------------------------------------------------------- Abstract—Social media for news consumption is a mixed blessing. On the one hand, its low cost, easy access, and rapid dissemination of information over the social media.On the other hand, it enables the wide spread of “fake news” , i.e., information written intentionally to mislead the reader. The extensive spread of fake news has the potential for extremely negative impacts on individuals and society.Generally fake news detection methods classified into two categories. 1) News content models. 2) Social context models. Many people rely on social media sites and networks for daily news stories and often it is difficult to tell whether a news is credible or not.Fake news articles could be in the form of clickbait(These are stories that are deliberately fabricated to gain more website visitors and increase advertising revenue for websites.),propaganda(Stories that are created to deliberately mislead audiences, promote a biased point of view or particular political cause or agenda.),etc. Machine learning, an application of Artificial Intelligence that provides systems the ability to automatically learn and improve from experience without being explicitly programmed can be used to tackle these problems head on.Ours is an effort to use this technology to help reduce the problem of fake news in social platform such as Facebook, twitter, etc. In this approach, we propose a standalone Machine Learning Fake News Detection model which combines the news contents and social context features and classify the news content. 1. INTRODUCTION The traditional algorithms rely on human developers to provide explicit instructions, machine learning allows data to guide the process. Using a training set comprised of representative data, the computer develops a model that can be compared against an expected output. The more data the computer takes into account, the more accurate and sophisticated its model becomes without developers having to write additional lines of code.The same advancements in storage and processing that have facilitated the rise of big data have also allowed machine learning to advance by leaps and bounds. The same advancements in storage and processing that have facilitated the rise of big data have also allowed machine learning to advance by leaps and bounds. Storage and processing frameworks like Hadoop and robust libraries for programming languages like R, Python, and Java have made it feasible for the first time to feed machine learning algorithms tremendous amounts of unstructured data. For data scientists, the ability to create algorithms that are guided by actual data is a huge advantage.For data scientists, the ability to create algorithms that are guided by actual data is a huge advantage. These days fake news are growing problems with huge ramifications in our society.The term ‘fake news’ became common parlance for the issue, particularly to describe factually incorrect and misleading articles published mostly for the purpose of making money through page views. NLP is a field in machine learning with the ability of a computer to understand, analyze, manipulate, and potentially generate human language. In this project, we are demonstrating the application on NLP for detecting ‘fake news’ i.e. the misleading news stories that comes from non-reputable sources. However, in order to solve this problem, it is important to understand what fake news is. Later, it is needed to look into how the techniques in the fields of machine learning, natural language processing help us to detect fake news. A. Objectives a) To build a model that can differentiate between ‘real’ and ‘fake’ news. b) To design and implement a system that overcomes the drawbacks of the existing systems. c) To design a system that is Cost effective, reliable and consumes less power. B. Scope Machine Learning is currently one of the hottest topics in IT. Technologies such as digital, big data, Artificial Intelligence, automation and machine learning are increasingly shaping future of work and jobs. is a specific set of techniques that enable machines to learn from data, and make predictions. When the biases of our past and present fuel the predictions of the future, it's a tall order to expect AI to operate independently of human flaws. The goal of our project is to create a model which can be used in social platform to detect any fake news which user shared. 2. SYSTEM ARCHITECTURE A. Existing System There exists a large body of research on the topic of machine learning methods for deception detection, most of it has been focusing on classifying online reviews and publicly available social media posts. Conroy, Rubin, and Chen [1] outlines several approaches that seem promising towards the aim of perfectly classify the misleading articles. They note that simple content-related n- grams and shallow parts-of-speech (POS) tagging have proven insufficient for the classification task, often failing to account for important context information. Deep Syntax analysis using Probabilistic Context Free Grammars (PCFG) have been shown to be particularly valuable in combination with n-gram methods. Feng, Banerjee, and Choi [2] are able to achieve 85%-91% accuracy in deception related classification tasks using online review corpora. Prof. Krishnendu S Nair4 Department of Computer Engineering Pillai College Of Engineering (University of Mumbai) Mumbai,India
  • 2. INTERNATIONAL RESEARCH JOURNAL OF ENGINEERING AND TECHNOLOGY (IRJET) E-ISSN: 2395-0056 VOLUME: 07 ISSUE: 03 | MAR 2020 WWW.IRJET.NET P-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 3858 Feng and Hirst implemented a semantic analysis looking at 'object: descriptor' pairs for contradictions with the text on top of Feng's initial deep syntax model for additional improvement. Rubin, Lukoianova and Tatiana analyze rhetorical structure using a vector space model with similar success. Ciampaglia et al. employ language pattern similarity networks requiring a pre- existing knowledge base. Existing system block diagram B. Proposed System In this approach a model is built based on the count vectorizer or a tfidf matrix ( i.e ) word tallies relatives to how often they are used in other artices in your dataset ) can help . Since this problem is a kind of text classification, Implementing a Naive Bayes classifier will be best as this is standard for text-based processing. The actual goal is in developing a model which was the text transformation (count vectorizer vs tfidf vectorizer) and choosing which type of text to use (headlines vs full text). Now the next step is to extract the most optimal features for countvectorizer or tfidf-vectorizer, this is done by using a n- number of the most used words, and/or phrases, lower casing or not, mainly removing the stop words which are common words such as “the”, “when”, and “there” and only using those words that appear at least a given number of times in a given text dataset. C. Sequence of steps involved Exploratory Data Analysis. Generate TFIDF and BOW vectors. Feature engineering. Test-Train split. Training the models. Prediction on test data. Evaluating the model based on different evaluation metrics(f1 score,confusion matrix,etc) D. System Block Diagram Cleaning the training Data Cleaning of the data will be done to remove all the noisy data from the dataset to bring the data in the form suitable to feed to machine learning algorithms. It involves, removing all the html tags, punctuations, applying stemmers, stop words and so on. Generating Vectors for the text data Machine learning models cannot be operated on text data. Hence, we need to convert our text data into numerical form before feeding it to machine learning models. Our text data will be converted into vectors using TFIDF and Bag Of Words (BOW) algorithms. Test Train splits After cleaning the data and getting the vectors for the same, we will split the data generally in a ratio of 80:20. So, the 80% of the data will be used for training the model and the remaining 20% will be used for validation of the model and eventually getting its accuracy. Training the model Now, we will be training our model with the training data which we have prepared. Since this problem is a text classification problem, we will be using the naive bayes algorithm as it works best for text classification problems. Prediction on test set After the model is trained, we will predict the target variable for the test set and compare it with the actual data to evaluate the model and find its accuracy. Results and pickled model Since everything is done properly, we will now save our model in a pickle file so that we can readily use it without building it again. Naive Bayes Algorithm Naive Bayes is a simple technique for constructing classifiers: models that assign class labels to problem instances, represented as vectors of feature values, where the class labels are drawn from some finite set[14].Abstractly Naive Bayes is a conditional probabilistic model: given a problem instance to be classified, represented by a vector x=(x1,x2,....xn) representing some n features (independent variables), it assigns to thisinstance probabilities. In plain English, using Bayesian probability terminology, the above equation can be written as
  • 3. INTERNATIONAL RESEARCH JOURNAL OF ENGINEERING AND TECHNOLOGY (IRJET) E-ISSN: 2395-0056 VOLUME: 07 ISSUE: 03 | MAR 2020 WWW.IRJET.NET P-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 3859 In practice, there is interest only in the numerator of that fraction, because the denominator does not depend on C and the values of the features xi are given, so that the denominator is effectively constant. The numerator is equivalent to the joint probability model. which can be rewritten as follows, using the chain rule for repeated applications of the definition of conditional probability: Now, assume that each feature xi is conditionally independent of every other feature xj.This leads to approximation that Thus, the joint model can be expressed as Xgboost algorithm It is collection of decision trees. Initially the dataset assign same weights. Each decision tree contain model which will do predictions. It is possible that model do misclassifications(weak classifiers). Update(increase) weights. Then next DT will take max weights and do prediction. Again - misclassifications(weak classifiers). Update(increase) weights. And finally it take majority. 3. HARDWARE SPECIFICATION Processor Intel(R) Core(TM) i7- 8550U CPU @ 1.80GHz, 1992 Mhz, 4 Core(s), 8 Logical Processor(s) OS Name Microsoft Windows 10 Home Single Language RAM 8 GB DDR4 Internal Memory 2TB Total virtual memory 9.75GB Available Virtual Memory 5.71GB Ram speed 2400MHz Bluetooth Version 4.2 Wireless LAN 802.11 a/b/g/n/ac Clockspeed 1.6GHz 4. SOFTWARE SPECIFICATION Jupyter notebook Angular 6 Sublime Text IDE Ionic NodeJS 5. PROJECT INPUTS AND OUTPUTS E. Dashboard Our website has a dashboard where user can get live feeds via google news api. F. Input details. User can enter any article that he/she come across on the internet or social media on the below textbox and our algorithm will predict whether the given news article is Fake or Real. User will also be able to view the related articles which our algorithm found across the web. G. Output Details Following is the sample output which will be displayed when user enters an article.
  • 4. INTERNATIONAL RESEARCH JOURNAL OF ENGINEERING AND TECHNOLOGY (IRJET) E-ISSN: 2395-0056 VOLUME: 07 ISSUE: 03 | MAR 2020 WWW.IRJET.NET P-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 3860 6. Applications  Validity Importance In various news networks where validity of information is of at most importance.  Organisations :- In various multinational or national organisations, to prevent misunderstandings and yet decreasing the morale of workers/employees.  Social Networks : - In social networking sites, where a message being received can be identified as authentic or fake, thus stopping a rumour from going viral.  Mobile Application :- It could also be used as a mobile application to verify the news a person might have heard during a verbal conversation. 7. SUMMARY With the increasing popularity of social media, more and more people consume news from social media instead of traditional news media. However, social media has also been used to spread fake news, which has strong negative impacts on individual users and broader society. In thisarticle, we explored the fake news problem by reviewing existing literature in two phases: characterization and detection. In the characterization phase, we introduced the basic concepts and principles of fake news in both traditional media and social media. In the detection phase, we reviewed existing fake news detection approaches from a data mining perspective, including feature extraction and model construction. We also further discussed the datasets, evaluation metrics, and promising future directions in fake news detection research and expand the field to other applications REFERENCES 1. Marco L. Della Vedova,Eugenio Tacchini,Stefano Moret,Gabriele Ballarin,Massimo DiPierro,Luca de Alfaro. Automatic Online Fake News Detection Combining Content and Social Signals. 2. Mykhailo Granik, Volodymyr Mesyura. Fake News Detection Using Naive Bayes Classifier(2017) 3. Kai Shu,Amy Sliva, Suhang Wang, Jiliang Tang, and Huan Liu (ACM digital library)June (2017). Fake News Detection on Social Media: A Data Mining Perspective 4. LUÍS BORGES, BRUNO MARTINS,PÁVEL CALADO. Combining Similarity Features and Deep Representation Learning for Stance Detection in the Context of Checking Fake News 5. Sebastian Tschiatschek,Adish Singla,Manuel Gomez Rodriguez,Arpit Merchant,Andreas Krause. Fake News Detection in Social Networks via Crowd Signals 6. Georg Rehm, Julian,Moreno-Schneider, Peter Bourgonje. Automatic and Manual Web Annotations in an Infrastructure to handle Fake News and other Online Media Phenomena 7. Georg Rehm, Julian Moreno-Schneider, Peter Bourgonje (22 May 2018). Fake News Detection with Deep Diffusive Network Model 8. Kai Shu, Deepak Mahudeswaran, and Huan Liu. Fake News Tracker: A Tool for Fake News Collection, Detection, and Visualization 9. Veronica Perez-Rosas, Bennett Kleinberg, Alexandra Lefevre,Rada Mihalcea. Automatic Detection of Fake News 10. Aswini Thota,Priyanka Tilak,Simrat Ahluwalia,Nibrat Lohia. Fake News Detection: A Deep Learning Approach 11. Shubham Gupta , Dishant Grover , Anushka Gupta , Deepanshu Kapoor , and Narina Thakur. A Survey on Identification of Fake News 12. Fernando Cardoso Durier da Silva ,Rafael Vieira da Costa Alves,Ana Cristina Bicharra Garcia. Can Machines Learn to Detect Fake News? A Survey Focused on Social Media 13. http://news.mit.edu/2018/mit-csail-machine- learning-system-detects-fake-news-from-source- 1004 14. https://en.wikipedia.org/wiki/Naive_Bayes_classi fier 15. https://en.wikipedia.org/wiki/Support- vector_machine 16. Eason, B. Noble, and I. N. Sneddon, “On certain integrals of Lipschitz-Hankel type involving products of Bessel functions,” Phil. Trans. Roy. Soc.
  • 5. INTERNATIONAL RESEARCH JOURNAL OF ENGINEERING AND TECHNOLOGY (IRJET) E-ISSN: 2395-0056 VOLUME: 07 ISSUE: 03 | MAR 2020 WWW.IRJET.NET P-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 3861 London, vol. A247, pp. 529–551, April 1955. (references) 17. J. Clerk Maxwell, A Treatise on Electricity and Magnetism, 3rd ed., vol. 2. Oxford: Clarendon, 1892, pp.68–73. 18. I. S. Jacobs and C. P. Bean, “Fine particles, thin films and exchange anisotropy,” in Magnetism, vol. III, G. T. Rado and H. Suhl, Eds. New York: Academic, 1963, pp. 271–350. 19. K. Elissa, “Title of paper if known,” unpublished. 20. R. Nicole, “Title of paper with only first word capitalized,” J. Name Stand. Abbrev., in press. 21. Y. Yorozu, M. Hirano, K. Oka, and Y. Tagawa, “Electron spectroscopy studies on magneto-optical media and plastic substrate interface,” IEEE Transl. J. Magn. Japan, vol. 2, pp. 740–741, August 1987 [Digests 9th Annual Conf. Magnetics Japan, p. 301, 1982]. 22. M. Young, The Technical Writer’s Handbook. Mill Valley, CA: University Science, 1989.