SlideShare a Scribd company logo
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1572
Effective Countering of Communal Hatred during Disaster Events in
Social Media
N. Antony Sophia[1], J. Angelin Jenifer[2], D. Hinduja[3]
1Assistant Professor, Department of Computer Science and Engineering, Jeppiaar SRR Engineering College,
Tamil Nadu, India
1,2Student, Department of Computer Science and Engineering, Jeppiaar SRR Engineering College, Tamil Nadu, India
---------------------------------------------------------------------***----------------------------------------------------------------------
Abstract - As we are living in an era of digitization and
information technology is progressivelygrowing, weareusing
websites like Twitter, Facebook, Instagram, etc. The use of
social media has been in a hike in our day to day life.
Especially the teenagers are highly affected by the use of it.
Our daily life, social involvement are affected by social media.
Social media has changed the way people communicate and
socialize on the web. There is a positive effect on business,
politics, socialization as well as some negative effects such as
cyberbullying, privacy, fake news and communal hate speech.
Communal hatred and offensive words in twitter are mainly
addressed in this paper. People are forwarding information
without checking the credibility of the message. In this
scenario a tweet with hatred message also propagates swiftly
leading to unrest in the society. To check these kinds of
messages propagating and to find a way not to promote these
messages, Machine learning technology is used to address
these issues. This paper not only helps in identifying hatred
speech against communities and religions but also classifies
vulgar and offensive or hatred words. The main objective of
this project is to plot a graph which displays the percentage of
offensive or hatred words used in the tweets. By doing so, the
propagation of communal hate speech can be reduced.
Key Words: Cyberbullying, communal hatred, Machine
learning, vulgar, offensive, hatred words, hate speech.
1. INTRODUCTION
Social media reach is widespread such that information
travels very fast without any geographical border or
constraints. The age of Internet has changed the way people
express their views and opinions. It is now mainly done
through social media.Nowadays,millionsofpeopleareusing
social network sites like Twitter, Facebook, Google Plus, etc.
to express one’s emotions, opinion and share views about
their daily lives. But they may not be aware of the issues and
clashes arousing among different class of people in the
society.
In 2013, an article in the Hindustan Times cited Professor
Badri Narayan from the GB Pant Social Science Institute in
Allahabad as saying, “From word of mouth, communal
polarization is now moving online. This is a dangeroustrend
as the internet is very potent."
Twitter users are likely to stick around the content that has
already gotten a lot of retweets and mentions, compared
with content that has fewer. The flow of this misinformation
on Twitter is a function of both human and technical factors.
Human’s role is the major factor: Since we are more likely to
react to content that taps into our existing grievances and
beliefs, inflammatory tweets will generate quick
engagement. It is only after that engagement happens that
the technical side kicks in: If a tweet is retweeted favorited
or replied to by enough of its first viewers, the newsfeed
algorithm will show it to large number of users, at which
point it will tap into the biases of those users too –
prompting even more engagement, and so on. And because
of this reason, these buzz tweets are bubbling virally.
This paper mainly focuses on a machine learning technique
to analyze and classify the tweets on the basis of parameters
like offensive, hatred or neither. The output is displayed in
the form of a graph which is shown to the user who posted
such tweet.
2. RELATED WORKS
Koustav Rudra, Ashish Sharma, NiloyGanguly,andSaptarshi
Ghosh[1]
Have proposed a rule- based classifier to automatically
separate communal tweets from non-communal tweets.The
tweets are mainly collected from initiators, who initiate a
communal tweet and propagators, who retweet the
communal tweets. Those users are identified in this paper.
After the first-level classification an analysis is made on the
non-communal tweets toseparatetheanti-communal tweets
from it. The anti-communal tweetsareusedto encounter the
communal tweets.
Ying Chen, Sencun Zhu, Yilu Zhou and Heng Xu[2]
Have proposed a Lexical Syntactic Feature architecture to
detect offensive content and to identify potential offensive
users in social media. A hand-authoring syntactic rule is
being introduced to identify the name-calling harassments.
The user’s potentiality to send offensive contentispredicted
using certain features like user’s writing style, structureand
specific cyberbullying content.
Pete Burnap and Matthew L. Williams[3]
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1573
Have proposed a study on online hate speech based on the
massive public reaction that arouse during the murder of
Drummer Lee Rigby, Woolwich, London. Human annotated
Twitter data’s regarding the Woolwich attack was collected
to train and test a supervised machinelearningtextclassifier
that distinguishes between hateful responses that focusses
religion and race. Classification features were derived from
the twitter contents including grammatical dependencies
between words to recognize “othering” phrases. The results
of the classifier was optimal using a combination of
probabilistic, rule-based, spatial- based classifiers with a
voted ensemble meta-classifier.
Edel Greevy and Alan F. Smeaton[4]
Have proposed a text categorization system for PRINCIP
project to automatically identify the racist text. Support
Vector Machine (SVM) learning technique is used here to
automatically categorize webpagesandidentifieswhetherit
is racist or not.
3. DATA COLLECTION
3.1 Accessing Twitter API:
OAuth is an open standard framework for accessing the
delegation, which is used by users to grant permission or
applications access to their information on other websites
but without giving the passwords. This mechanism is used
by Twitter to permit the users to share information about
their accounts with third party applications or websites
without revealingtheircredentials.OAuthdefinesfourmajor
roles:
 Resource Owner: The resource owner is the one
who owns an application and allows users to
access their account.
 Client: The client is the application that wants to
access the user’s accounts.
 Resource Server: The resource server conducts
the protected user accounts.
 Authorization Server: The authorization server
verifies the identity of the user and then issues
access tokens to the application.
Fig – 1 A protocol flow of OAuth
Tweepy supports accessing Twitter via OAuth.
Tweepy is a library in python thatenablesPythonto
communicate with Twitter platform anduseitsAPI.
Fig – 2 Access tokens
The above screenshot has the data needed to talk with
Twitter Network. The main classes that are used in the
Twitter API are Tweets, Users, Entities and Places. With
Tweepy it is possible to get any object and use any method
offered by Twitter API. Access to each returns a JSON-
formatted response and traversing through information is
made much easier in Python. The importanttasksofTweepy
are monitoring the tweets and doing actions on it. The key
component is Stream Listener this object monitorstweetsin
real-time and obtains them. Fig. 1. Illustrates the raw data
collected from the Twitter server.
Fig – 3 View of the raw text data collected
4. DATA PREPROCESSING
After collecting the raw Tweets from the Twitter data pre-
processing take place. Followingstepsillustratestheprocess
involved
 The fetched Tweets that are obtained in the JSON
format is formatted using Pandas
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1574
 Measures are also taken to handle and display
exceptions.
 A minimum of 40 tweets under this hash tag will be
obtained as a csv file. Later a cleaning process is
done to remove spaces, emoji’s, URL and links.
 This would be obtained in another csv file.
 The missing values are also cleaned and the data is
encoded. The pandas will recognize both empty
cells and ‘NA’ types as missing values.
Fig – 4 The pre-processed data
5. IDENTIFICATION OF COMMUNAL TWEET
A manually prepared training dataset is used to train a
supervised algorithm called Support Vector Machine
learning algorithm. Supervised Learning is a machine
learning method used to map an input to the output based
on examples input-output pairs. It infers a function from
labelled training data consistingofa setoftrainingexamples.
In supervised learning, each example is a pair consisting of
an input object (typically a vector) and a desired output
value (supervisory signal). A supervised learning algorithm
analyses the dataset prepared for training and produces an
inferred function, which can be used for mapping new
examples. Supervised learning problems are grouped into
Regression and Classification problems.
 Regression –
When the output variable is a real value then
it is said to be a regression problem Eg: such as
‘dollars’ or ‘weight’.
 Classification –
When the output is a category, then it is
said to be a classification problem Eg:
such as ‘red’ or ‘blue’ or ‘disease’ or ‘no
disease’.
In this paper, a supervised classification algorithmcalledthe
Support Vector Machine learning algorithm is used.
Support Vector Machine (SVM) is one among the supervised
learning techniques which can be used for either
classification or regression challenges. However, itismostly
used in classification problems. This algorithm is used to
plot each data item as a point in n-dimensional space where
n is number of features. Here in this paper three featuresare
used. They are, hatred, offensive and neutral words. Based
on these features, the algorithm classifies the tweets
collected from the Twitter.Thealgorithmtakestwoinputs. It
takes specific keywords listwhichisthedatasetpreparedfor
training the algorithm which is shown in Fig – 5 as one input
and the tweet to be identified as another input. The results
were plotted in a graph.
Fig – 5 The training dataset
6. DATA VISUALIZATION
The trained model can be stored as a Python object so that
one need not train each and every time we need to predict.
The accuracy of the trained model is calculated before
prediction. A convolution matrix is calculated. We use data
visualization to present the resultina visualizedmanner. Fig
– 6 Shows the output of the pie chart.
Fig – 6 Plotted graph
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1575
7. CONCLUSION
This paper is the first attempt which is involved in
identifying not only communal tweets but also the tweets
which contains offensive or vulgar contents that has to be
concealed from children below 18 years of age. It also helps
in preventing conflicts that may arouse betweenpeople who
belongs to different communities. This paper is a prototype
built on the idea given in the paper “Characterizing and
Countering Communal MicroblogsduringDisasterEvents”[1].
Here live Tweets are obtained and pre-processed. Those
cleaned Twitter data’s are fetched to the machine which is
trained with manual dataset using Support Vector Machine
Learning Technique. A classifier is used to classify the pre-
processed data. Now, a graph is displayed which gives
information regarding the percentage of hatred, offensive
and neutral contents available in the collected Tweets. The
Tweets collected not only concentrates on particular
incident or a community or a personality, but considers the
Tweets randomly that does not come under any particular
category and identifies communal tweets[1], offensive
contents[2], online hatespeech[3] andvulgarTweets.Finally,a
real-time system that automatically classifies the Tweets is
proposed in this paper.
8. LIMITATIONS OF THE PROPOSED SYSTEM
The proposed system has some limitations as follows:
 Only the Tweets in English are taken into account.
This system cannot be applied to words notpresent
in the English dictionaries.Thosewordsareignored
in this process, which is one of the major limitation
faced in this paper.
 Some Tweets may contain words with improper
spellings, abbreviations, emoji’s are just ignored
while pre-processing the tweets, which can be
treated.
 A graph is being displayed to the user on the basis
of his Tweet and it can be removed only by the user,
even if it is found to be offensive.
9. FUTURE ENHANCEMENTS
 It can be used by the Government in taking
decisions like regarding eliminating the
troublesome tweet, and find a solution to stop the
problems that arise in the society.
 The communal, offensive, hatred or vulgar Tweets
can be replaced with neutral Tweets, so that it does
not create any problems or clashes in the society.
 It would be effective if such trouble causing Tweets
can be blocked immediately.
 It would be more effective, when the user is
intimated while typing an offensive or a vulgar
content and not allowing to proceed further.
10. REFERENCES
[1] K. Rudra, A. Sharma, N. Ganguly, and S. Ghosh,
“Characterizing and Countering communal microblogs
during disaster events,”IEEE TransactionsonComputational
Social Systems 5 (2), 403-417
[2] Y. Chen, Y. Zhou, S. Zhu, and H. Xu, “Detecting offensive
language in social media to protectadolescentonlinesafety,”
in Proc. Int. Conf. Social Comput. Privacy, Secur, Risk Trust
(PASSAT), (SocialCom), Sep. 2012, pp. 71–80.
[3] P. Burnap and M. L. Williams, “Cyber hate speech on
Twitter: An application of machine classification and
statistical modeling for policy and decision making,” Policy
Internet, vol. 7, no. 2, pp. 223–242, 2015.
[4] E. Greevy and A. F. Smeaton, “Classifying racist texts
using a support vector machine,” in Proc. SIGIR, 2004, pp.
468–469.
[5] I. Kwok and Y.Wang, “Locate the hate: Detecting tweets
against blacks,”in Proc. 27th AAAI Conf. Artif. Intell., 2013,
pp. 1621–1622.
[6] K. Rudra, A. Sharma, N. Ganguly, and S. Ghosh,
“Characterizing communal microblogs during disaster
events,” in Proc. IEEE/ACM ASONAM, Aug. 2016, pp. 96–99.
[7] K. Rudra, S. Ghosh, N. Ganguly, P. Goyal, and S. Ghosh,
“Extracting situational information from microblogs during
disasterevents:Aclassification-summarizationapproach,”in
Proc. ACM CIKM, 2015, pp. 583–592.
[8] F. Pedregosa et al., “Scikit-learn: Machine learning in
Python,” J. Mach. Learn. Res., vol. 12, pp. 2825–2830, Oct.
2011.

More Related Content

What's hot

IRJET - Profanity Statistical Analyzer
 IRJET -  	  Profanity Statistical Analyzer IRJET -  	  Profanity Statistical Analyzer
IRJET - Profanity Statistical Analyzer
IRJET Journal
 
IRJET - Social Network Question and Answer System
IRJET - Social Network Question and Answer SystemIRJET - Social Network Question and Answer System
IRJET - Social Network Question and Answer System
IRJET Journal
 
Vol 7 No 1 - November 2013
Vol 7 No 1 - November 2013Vol 7 No 1 - November 2013
Vol 7 No 1 - November 2013
ijcsbi
 
IRJET - Fake News Detection: A Survey
IRJET -  	  Fake News Detection: A SurveyIRJET -  	  Fake News Detection: A Survey
IRJET - Fake News Detection: A Survey
IRJET Journal
 
FRAMEWORK FOR ANALYZING TWITTER TO DETECT COMMUNITY SUSPICIOUS CRIME ACTIVITY
FRAMEWORK FOR ANALYZING TWITTER TO DETECT COMMUNITY SUSPICIOUS CRIME ACTIVITYFRAMEWORK FOR ANALYZING TWITTER TO DETECT COMMUNITY SUSPICIOUS CRIME ACTIVITY
FRAMEWORK FOR ANALYZING TWITTER TO DETECT COMMUNITY SUSPICIOUS CRIME ACTIVITY
cscpconf
 
Social Tagging Of Multimedia Content A Model
Social Tagging Of Multimedia Content A ModelSocial Tagging Of Multimedia Content A Model
Social Tagging Of Multimedia Content A Model
IJMER
 
IRJET - An Automated System for Detection of Social Engineering Phishing Atta...
IRJET - An Automated System for Detection of Social Engineering Phishing Atta...IRJET - An Automated System for Detection of Social Engineering Phishing Atta...
IRJET - An Automated System for Detection of Social Engineering Phishing Atta...
IRJET Journal
 
Smart detection of offensive words in social media using the soundex algorith...
Smart detection of offensive words in social media using the soundex algorith...Smart detection of offensive words in social media using the soundex algorith...
Smart detection of offensive words in social media using the soundex algorith...
IJECEIAES
 
Current trends of opinion mining and sentiment analysis in social networks
Current trends of opinion mining and sentiment analysis in social networksCurrent trends of opinion mining and sentiment analysis in social networks
Current trends of opinion mining and sentiment analysis in social networks
eSAT Publishing House
 
Link prediction with the linkpred tool
Link prediction with the linkpred toolLink prediction with the linkpred tool
Link prediction with the linkpred tool
Raf Guns
 
SENTIMENT ANALYSIS OF TWITTER DATA
SENTIMENT ANALYSIS OF TWITTER DATASENTIMENT ANALYSIS OF TWITTER DATA
SENTIMENT ANALYSIS OF TWITTER DATAParvathy Devaraj
 
A Survey on Privacy in Social Networking Websites
A Survey on Privacy in Social Networking WebsitesA Survey on Privacy in Social Networking Websites
A Survey on Privacy in Social Networking Websites
IRJET Journal
 
WARRANTS GENERATIONS USING A LANGUAGE MODEL AND A MULTI-AGENT SYSTEM
WARRANTS GENERATIONS USING A LANGUAGE MODEL AND A MULTI-AGENT SYSTEMWARRANTS GENERATIONS USING A LANGUAGE MODEL AND A MULTI-AGENT SYSTEM
WARRANTS GENERATIONS USING A LANGUAGE MODEL AND A MULTI-AGENT SYSTEM
ijnlc
 
Alluding Communities in Social Networking Websites using Enhanced Quasi-cliqu...
Alluding Communities in Social Networking Websites using Enhanced Quasi-cliqu...Alluding Communities in Social Networking Websites using Enhanced Quasi-cliqu...
Alluding Communities in Social Networking Websites using Enhanced Quasi-cliqu...
IJMTST Journal
 
Privacy Protection Using Formal Logics in Onlne Social Networks
Privacy Protection Using   Formal Logics in Onlne Social NetworksPrivacy Protection Using   Formal Logics in Onlne Social Networks
Privacy Protection Using Formal Logics in Onlne Social Networks
IRJET Journal
 
ACM WebSci 2018 presentation/発表資料
ACM WebSci 2018 presentation/発表資料ACM WebSci 2018 presentation/発表資料
ACM WebSci 2018 presentation/発表資料
Yusuke Yamamoto
 
Ppt
PptPpt
INFORMATION RETRIEVAL TOPICS IN TWITTER USING WEIGHTED PREDICTION NETWORK
INFORMATION RETRIEVAL TOPICS IN TWITTER USING WEIGHTED PREDICTION NETWORKINFORMATION RETRIEVAL TOPICS IN TWITTER USING WEIGHTED PREDICTION NETWORK
INFORMATION RETRIEVAL TOPICS IN TWITTER USING WEIGHTED PREDICTION NETWORK
IAEME Publication
 
An iac approach for detecting profile cloning
An iac approach for detecting profile cloningAn iac approach for detecting profile cloning
An iac approach for detecting profile cloning
IJNSA Journal
 
Efficient and effective video sharing in online Social network using revocati...
Efficient and effective video sharing in online Social network using revocati...Efficient and effective video sharing in online Social network using revocati...
Efficient and effective video sharing in online Social network using revocati...
IRJET Journal
 

What's hot (20)

IRJET - Profanity Statistical Analyzer
 IRJET -  	  Profanity Statistical Analyzer IRJET -  	  Profanity Statistical Analyzer
IRJET - Profanity Statistical Analyzer
 
IRJET - Social Network Question and Answer System
IRJET - Social Network Question and Answer SystemIRJET - Social Network Question and Answer System
IRJET - Social Network Question and Answer System
 
Vol 7 No 1 - November 2013
Vol 7 No 1 - November 2013Vol 7 No 1 - November 2013
Vol 7 No 1 - November 2013
 
IRJET - Fake News Detection: A Survey
IRJET -  	  Fake News Detection: A SurveyIRJET -  	  Fake News Detection: A Survey
IRJET - Fake News Detection: A Survey
 
FRAMEWORK FOR ANALYZING TWITTER TO DETECT COMMUNITY SUSPICIOUS CRIME ACTIVITY
FRAMEWORK FOR ANALYZING TWITTER TO DETECT COMMUNITY SUSPICIOUS CRIME ACTIVITYFRAMEWORK FOR ANALYZING TWITTER TO DETECT COMMUNITY SUSPICIOUS CRIME ACTIVITY
FRAMEWORK FOR ANALYZING TWITTER TO DETECT COMMUNITY SUSPICIOUS CRIME ACTIVITY
 
Social Tagging Of Multimedia Content A Model
Social Tagging Of Multimedia Content A ModelSocial Tagging Of Multimedia Content A Model
Social Tagging Of Multimedia Content A Model
 
IRJET - An Automated System for Detection of Social Engineering Phishing Atta...
IRJET - An Automated System for Detection of Social Engineering Phishing Atta...IRJET - An Automated System for Detection of Social Engineering Phishing Atta...
IRJET - An Automated System for Detection of Social Engineering Phishing Atta...
 
Smart detection of offensive words in social media using the soundex algorith...
Smart detection of offensive words in social media using the soundex algorith...Smart detection of offensive words in social media using the soundex algorith...
Smart detection of offensive words in social media using the soundex algorith...
 
Current trends of opinion mining and sentiment analysis in social networks
Current trends of opinion mining and sentiment analysis in social networksCurrent trends of opinion mining and sentiment analysis in social networks
Current trends of opinion mining and sentiment analysis in social networks
 
Link prediction with the linkpred tool
Link prediction with the linkpred toolLink prediction with the linkpred tool
Link prediction with the linkpred tool
 
SENTIMENT ANALYSIS OF TWITTER DATA
SENTIMENT ANALYSIS OF TWITTER DATASENTIMENT ANALYSIS OF TWITTER DATA
SENTIMENT ANALYSIS OF TWITTER DATA
 
A Survey on Privacy in Social Networking Websites
A Survey on Privacy in Social Networking WebsitesA Survey on Privacy in Social Networking Websites
A Survey on Privacy in Social Networking Websites
 
WARRANTS GENERATIONS USING A LANGUAGE MODEL AND A MULTI-AGENT SYSTEM
WARRANTS GENERATIONS USING A LANGUAGE MODEL AND A MULTI-AGENT SYSTEMWARRANTS GENERATIONS USING A LANGUAGE MODEL AND A MULTI-AGENT SYSTEM
WARRANTS GENERATIONS USING A LANGUAGE MODEL AND A MULTI-AGENT SYSTEM
 
Alluding Communities in Social Networking Websites using Enhanced Quasi-cliqu...
Alluding Communities in Social Networking Websites using Enhanced Quasi-cliqu...Alluding Communities in Social Networking Websites using Enhanced Quasi-cliqu...
Alluding Communities in Social Networking Websites using Enhanced Quasi-cliqu...
 
Privacy Protection Using Formal Logics in Onlne Social Networks
Privacy Protection Using   Formal Logics in Onlne Social NetworksPrivacy Protection Using   Formal Logics in Onlne Social Networks
Privacy Protection Using Formal Logics in Onlne Social Networks
 
ACM WebSci 2018 presentation/発表資料
ACM WebSci 2018 presentation/発表資料ACM WebSci 2018 presentation/発表資料
ACM WebSci 2018 presentation/発表資料
 
Ppt
PptPpt
Ppt
 
INFORMATION RETRIEVAL TOPICS IN TWITTER USING WEIGHTED PREDICTION NETWORK
INFORMATION RETRIEVAL TOPICS IN TWITTER USING WEIGHTED PREDICTION NETWORKINFORMATION RETRIEVAL TOPICS IN TWITTER USING WEIGHTED PREDICTION NETWORK
INFORMATION RETRIEVAL TOPICS IN TWITTER USING WEIGHTED PREDICTION NETWORK
 
An iac approach for detecting profile cloning
An iac approach for detecting profile cloningAn iac approach for detecting profile cloning
An iac approach for detecting profile cloning
 
Efficient and effective video sharing in online Social network using revocati...
Efficient and effective video sharing in online Social network using revocati...Efficient and effective video sharing in online Social network using revocati...
Efficient and effective video sharing in online Social network using revocati...
 

Similar to IRJET- Effective Countering of Communal Hatred During Disaster Events in Social Media

IRJET- Improved Real-Time Twitter Sentiment Analysis using ML & Word2Vec
IRJET-  	  Improved Real-Time Twitter Sentiment Analysis using ML & Word2VecIRJET-  	  Improved Real-Time Twitter Sentiment Analysis using ML & Word2Vec
IRJET- Improved Real-Time Twitter Sentiment Analysis using ML & Word2Vec
IRJET Journal
 
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
IRJET Journal
 
SENTIMENT ANALYSIS OF SOCIAL MEDIA DATA USING DEEP LEARNING
SENTIMENT ANALYSIS OF SOCIAL MEDIA DATA USING DEEP LEARNINGSENTIMENT ANALYSIS OF SOCIAL MEDIA DATA USING DEEP LEARNING
SENTIMENT ANALYSIS OF SOCIAL MEDIA DATA USING DEEP LEARNING
IRJET Journal
 
Categorize balanced dataset for troll detection
Categorize balanced dataset for troll detectionCategorize balanced dataset for troll detection
Categorize balanced dataset for troll detection
vivatechijri
 
[IJET-V2I1P14] Authors:Aditi Verma, Rachana Agarwal, Sameer Bardia, Simran Sh...
[IJET-V2I1P14] Authors:Aditi Verma, Rachana Agarwal, Sameer Bardia, Simran Sh...[IJET-V2I1P14] Authors:Aditi Verma, Rachana Agarwal, Sameer Bardia, Simran Sh...
[IJET-V2I1P14] Authors:Aditi Verma, Rachana Agarwal, Sameer Bardia, Simran Sh...
IJET - International Journal of Engineering and Techniques
 
IRJET- Identification of Prevalent News from Twitter and Traditional Media us...
IRJET- Identification of Prevalent News from Twitter and Traditional Media us...IRJET- Identification of Prevalent News from Twitter and Traditional Media us...
IRJET- Identification of Prevalent News from Twitter and Traditional Media us...
IRJET Journal
 
DETECTION OF MALICIOUS SOCIAL BOTS USING ML TECHNIQUE IN TWITTER NETWORK
DETECTION OF MALICIOUS SOCIAL BOTS USING ML TECHNIQUE IN TWITTER NETWORKDETECTION OF MALICIOUS SOCIAL BOTS USING ML TECHNIQUE IN TWITTER NETWORK
DETECTION OF MALICIOUS SOCIAL BOTS USING ML TECHNIQUE IN TWITTER NETWORK
IRJET Journal
 
F017433947
F017433947F017433947
F017433947
IOSR Journals
 
AGGRESSION DETECTION USING MACHINE LEARNING MODEL
AGGRESSION DETECTION USING MACHINE LEARNING MODELAGGRESSION DETECTION USING MACHINE LEARNING MODEL
AGGRESSION DETECTION USING MACHINE LEARNING MODEL
IRJET Journal
 
[IJET V2I4P9] Authors: Praveen Jayasankar , Prashanth Jayaraman ,Rachel Hannah
[IJET V2I4P9] Authors: Praveen Jayasankar , Prashanth Jayaraman ,Rachel Hannah[IJET V2I4P9] Authors: Praveen Jayasankar , Prashanth Jayaraman ,Rachel Hannah
[IJET V2I4P9] Authors: Praveen Jayasankar , Prashanth Jayaraman ,Rachel Hannah
IJET - International Journal of Engineering and Techniques
 
IRJET- Big Data Driven Information Diffusion Analytics and Control on Social ...
IRJET- Big Data Driven Information Diffusion Analytics and Control on Social ...IRJET- Big Data Driven Information Diffusion Analytics and Control on Social ...
IRJET- Big Data Driven Information Diffusion Analytics and Control on Social ...
IRJET Journal
 
Classification of Sentiment Analysis on Tweets Based on Techniques from Machi...
Classification of Sentiment Analysis on Tweets Based on Techniques from Machi...Classification of Sentiment Analysis on Tweets Based on Techniques from Machi...
Classification of Sentiment Analysis on Tweets Based on Techniques from Machi...
IRJET Journal
 
IRJET - Election Result Prediction using Sentiment Analysis
IRJET - Election Result Prediction using Sentiment AnalysisIRJET - Election Result Prediction using Sentiment Analysis
IRJET - Election Result Prediction using Sentiment Analysis
IRJET Journal
 
Irjet v4 i73A Survey on Student’s Academic Experiences using Social Media Data53
Irjet v4 i73A Survey on Student’s Academic Experiences using Social Media Data53Irjet v4 i73A Survey on Student’s Academic Experiences using Social Media Data53
Irjet v4 i73A Survey on Student’s Academic Experiences using Social Media Data53
IRJET Journal
 
Dynamic feature selection for spam detection (1).pptx
Dynamic feature selection for spam detection (1).pptxDynamic feature selection for spam detection (1).pptx
Dynamic feature selection for spam detection (1).pptx
RivikaJain
 
IRJET- An Experimental Evaluation of Mechanical Properties of Bamboo Fiber Re...
IRJET- An Experimental Evaluation of Mechanical Properties of Bamboo Fiber Re...IRJET- An Experimental Evaluation of Mechanical Properties of Bamboo Fiber Re...
IRJET- An Experimental Evaluation of Mechanical Properties of Bamboo Fiber Re...
IRJET Journal
 
IRJET- Tweet Segmentation and its Application to Named Entity Recognition
IRJET- Tweet Segmentation and its Application to Named Entity RecognitionIRJET- Tweet Segmentation and its Application to Named Entity Recognition
IRJET- Tweet Segmentation and its Application to Named Entity Recognition
IRJET Journal
 
DP1_160430723010_Divya.pptx
DP1_160430723010_Divya.pptxDP1_160430723010_Divya.pptx
DP1_160430723010_Divya.pptx
DivyaPatel729457
 
IRJET - Social Media Intelligence Tools
IRJET -  	  Social Media Intelligence ToolsIRJET -  	  Social Media Intelligence Tools
IRJET - Social Media Intelligence Tools
IRJET Journal
 
IRJET- Twitter Spammer Detection
IRJET- Twitter Spammer DetectionIRJET- Twitter Spammer Detection
IRJET- Twitter Spammer Detection
IRJET Journal
 

Similar to IRJET- Effective Countering of Communal Hatred During Disaster Events in Social Media (20)

IRJET- Improved Real-Time Twitter Sentiment Analysis using ML & Word2Vec
IRJET-  	  Improved Real-Time Twitter Sentiment Analysis using ML & Word2VecIRJET-  	  Improved Real-Time Twitter Sentiment Analysis using ML & Word2Vec
IRJET- Improved Real-Time Twitter Sentiment Analysis using ML & Word2Vec
 
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
 
SENTIMENT ANALYSIS OF SOCIAL MEDIA DATA USING DEEP LEARNING
SENTIMENT ANALYSIS OF SOCIAL MEDIA DATA USING DEEP LEARNINGSENTIMENT ANALYSIS OF SOCIAL MEDIA DATA USING DEEP LEARNING
SENTIMENT ANALYSIS OF SOCIAL MEDIA DATA USING DEEP LEARNING
 
Categorize balanced dataset for troll detection
Categorize balanced dataset for troll detectionCategorize balanced dataset for troll detection
Categorize balanced dataset for troll detection
 
[IJET-V2I1P14] Authors:Aditi Verma, Rachana Agarwal, Sameer Bardia, Simran Sh...
[IJET-V2I1P14] Authors:Aditi Verma, Rachana Agarwal, Sameer Bardia, Simran Sh...[IJET-V2I1P14] Authors:Aditi Verma, Rachana Agarwal, Sameer Bardia, Simran Sh...
[IJET-V2I1P14] Authors:Aditi Verma, Rachana Agarwal, Sameer Bardia, Simran Sh...
 
IRJET- Identification of Prevalent News from Twitter and Traditional Media us...
IRJET- Identification of Prevalent News from Twitter and Traditional Media us...IRJET- Identification of Prevalent News from Twitter and Traditional Media us...
IRJET- Identification of Prevalent News from Twitter and Traditional Media us...
 
DETECTION OF MALICIOUS SOCIAL BOTS USING ML TECHNIQUE IN TWITTER NETWORK
DETECTION OF MALICIOUS SOCIAL BOTS USING ML TECHNIQUE IN TWITTER NETWORKDETECTION OF MALICIOUS SOCIAL BOTS USING ML TECHNIQUE IN TWITTER NETWORK
DETECTION OF MALICIOUS SOCIAL BOTS USING ML TECHNIQUE IN TWITTER NETWORK
 
F017433947
F017433947F017433947
F017433947
 
AGGRESSION DETECTION USING MACHINE LEARNING MODEL
AGGRESSION DETECTION USING MACHINE LEARNING MODELAGGRESSION DETECTION USING MACHINE LEARNING MODEL
AGGRESSION DETECTION USING MACHINE LEARNING MODEL
 
[IJET V2I4P9] Authors: Praveen Jayasankar , Prashanth Jayaraman ,Rachel Hannah
[IJET V2I4P9] Authors: Praveen Jayasankar , Prashanth Jayaraman ,Rachel Hannah[IJET V2I4P9] Authors: Praveen Jayasankar , Prashanth Jayaraman ,Rachel Hannah
[IJET V2I4P9] Authors: Praveen Jayasankar , Prashanth Jayaraman ,Rachel Hannah
 
IRJET- Big Data Driven Information Diffusion Analytics and Control on Social ...
IRJET- Big Data Driven Information Diffusion Analytics and Control on Social ...IRJET- Big Data Driven Information Diffusion Analytics and Control on Social ...
IRJET- Big Data Driven Information Diffusion Analytics and Control on Social ...
 
Classification of Sentiment Analysis on Tweets Based on Techniques from Machi...
Classification of Sentiment Analysis on Tweets Based on Techniques from Machi...Classification of Sentiment Analysis on Tweets Based on Techniques from Machi...
Classification of Sentiment Analysis on Tweets Based on Techniques from Machi...
 
IRJET - Election Result Prediction using Sentiment Analysis
IRJET - Election Result Prediction using Sentiment AnalysisIRJET - Election Result Prediction using Sentiment Analysis
IRJET - Election Result Prediction using Sentiment Analysis
 
Irjet v4 i73A Survey on Student’s Academic Experiences using Social Media Data53
Irjet v4 i73A Survey on Student’s Academic Experiences using Social Media Data53Irjet v4 i73A Survey on Student’s Academic Experiences using Social Media Data53
Irjet v4 i73A Survey on Student’s Academic Experiences using Social Media Data53
 
Dynamic feature selection for spam detection (1).pptx
Dynamic feature selection for spam detection (1).pptxDynamic feature selection for spam detection (1).pptx
Dynamic feature selection for spam detection (1).pptx
 
IRJET- An Experimental Evaluation of Mechanical Properties of Bamboo Fiber Re...
IRJET- An Experimental Evaluation of Mechanical Properties of Bamboo Fiber Re...IRJET- An Experimental Evaluation of Mechanical Properties of Bamboo Fiber Re...
IRJET- An Experimental Evaluation of Mechanical Properties of Bamboo Fiber Re...
 
IRJET- Tweet Segmentation and its Application to Named Entity Recognition
IRJET- Tweet Segmentation and its Application to Named Entity RecognitionIRJET- Tweet Segmentation and its Application to Named Entity Recognition
IRJET- Tweet Segmentation and its Application to Named Entity Recognition
 
DP1_160430723010_Divya.pptx
DP1_160430723010_Divya.pptxDP1_160430723010_Divya.pptx
DP1_160430723010_Divya.pptx
 
IRJET - Social Media Intelligence Tools
IRJET -  	  Social Media Intelligence ToolsIRJET -  	  Social Media Intelligence Tools
IRJET - Social Media Intelligence Tools
 
IRJET- Twitter Spammer Detection
IRJET- Twitter Spammer DetectionIRJET- Twitter Spammer Detection
IRJET- Twitter Spammer Detection
 

More from 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 STRUCTURE
IRJET 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 Characteristics
IRJET 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 ADAS
IRJET 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 Pro
IRJET 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 System
IRJET 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 bridges
IRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
IRJET 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 Design
IRJET 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
 

More from 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...
 

Recently uploaded

Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
Kamal Acharya
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Teleport Manpower Consultant
 
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
SamSarthak3
 
English lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdfEnglish lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdf
BrazilAccount1
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
AJAYKUMARPUND1
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
Osamah Alsalih
 
Basic Industrial Engineering terms for apparel
Basic Industrial Engineering terms for apparelBasic Industrial Engineering terms for apparel
Basic Industrial Engineering terms for apparel
top1002
 
NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...
NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...
NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...
ssuser7dcef0
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
obonagu
 
Forklift Classes Overview by Intella Parts
Forklift Classes Overview by Intella PartsForklift Classes Overview by Intella Parts
Forklift Classes Overview by Intella Parts
Intella Parts
 
Final project report on grocery store management system..pdf
Final project report on grocery store management system..pdfFinal project report on grocery store management system..pdf
Final project report on grocery store management system..pdf
Kamal Acharya
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
Amil Baba Dawood bangali
 
Investor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptxInvestor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptx
AmarGB2
 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
Aditya Rajan Patra
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
FluxPrime1
 
block diagram and signal flow graph representation
block diagram and signal flow graph representationblock diagram and signal flow graph representation
block diagram and signal flow graph representation
Divya Somashekar
 
Building Electrical System Design & Installation
Building Electrical System Design & InstallationBuilding Electrical System Design & Installation
Building Electrical System Design & Installation
symbo111
 
Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
Kerry Sado
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
VENKATESHvenky89705
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
fxintegritypublishin
 

Recently uploaded (20)

Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
 
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
 
English lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdfEnglish lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdf
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
 
Basic Industrial Engineering terms for apparel
Basic Industrial Engineering terms for apparelBasic Industrial Engineering terms for apparel
Basic Industrial Engineering terms for apparel
 
NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...
NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...
NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
 
Forklift Classes Overview by Intella Parts
Forklift Classes Overview by Intella PartsForklift Classes Overview by Intella Parts
Forklift Classes Overview by Intella Parts
 
Final project report on grocery store management system..pdf
Final project report on grocery store management system..pdfFinal project report on grocery store management system..pdf
Final project report on grocery store management system..pdf
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
 
Investor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptxInvestor-Presentation-Q1FY2024 investor presentation document.pptx
Investor-Presentation-Q1FY2024 investor presentation document.pptx
 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
 
block diagram and signal flow graph representation
block diagram and signal flow graph representationblock diagram and signal flow graph representation
block diagram and signal flow graph representation
 
Building Electrical System Design & Installation
Building Electrical System Design & InstallationBuilding Electrical System Design & Installation
Building Electrical System Design & Installation
 
Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
 

IRJET- Effective Countering of Communal Hatred During Disaster Events in Social Media

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1572 Effective Countering of Communal Hatred during Disaster Events in Social Media N. Antony Sophia[1], J. Angelin Jenifer[2], D. Hinduja[3] 1Assistant Professor, Department of Computer Science and Engineering, Jeppiaar SRR Engineering College, Tamil Nadu, India 1,2Student, Department of Computer Science and Engineering, Jeppiaar SRR Engineering College, Tamil Nadu, India ---------------------------------------------------------------------***---------------------------------------------------------------------- Abstract - As we are living in an era of digitization and information technology is progressivelygrowing, weareusing websites like Twitter, Facebook, Instagram, etc. The use of social media has been in a hike in our day to day life. Especially the teenagers are highly affected by the use of it. Our daily life, social involvement are affected by social media. Social media has changed the way people communicate and socialize on the web. There is a positive effect on business, politics, socialization as well as some negative effects such as cyberbullying, privacy, fake news and communal hate speech. Communal hatred and offensive words in twitter are mainly addressed in this paper. People are forwarding information without checking the credibility of the message. In this scenario a tweet with hatred message also propagates swiftly leading to unrest in the society. To check these kinds of messages propagating and to find a way not to promote these messages, Machine learning technology is used to address these issues. This paper not only helps in identifying hatred speech against communities and religions but also classifies vulgar and offensive or hatred words. The main objective of this project is to plot a graph which displays the percentage of offensive or hatred words used in the tweets. By doing so, the propagation of communal hate speech can be reduced. Key Words: Cyberbullying, communal hatred, Machine learning, vulgar, offensive, hatred words, hate speech. 1. INTRODUCTION Social media reach is widespread such that information travels very fast without any geographical border or constraints. The age of Internet has changed the way people express their views and opinions. It is now mainly done through social media.Nowadays,millionsofpeopleareusing social network sites like Twitter, Facebook, Google Plus, etc. to express one’s emotions, opinion and share views about their daily lives. But they may not be aware of the issues and clashes arousing among different class of people in the society. In 2013, an article in the Hindustan Times cited Professor Badri Narayan from the GB Pant Social Science Institute in Allahabad as saying, “From word of mouth, communal polarization is now moving online. This is a dangeroustrend as the internet is very potent." Twitter users are likely to stick around the content that has already gotten a lot of retweets and mentions, compared with content that has fewer. The flow of this misinformation on Twitter is a function of both human and technical factors. Human’s role is the major factor: Since we are more likely to react to content that taps into our existing grievances and beliefs, inflammatory tweets will generate quick engagement. It is only after that engagement happens that the technical side kicks in: If a tweet is retweeted favorited or replied to by enough of its first viewers, the newsfeed algorithm will show it to large number of users, at which point it will tap into the biases of those users too – prompting even more engagement, and so on. And because of this reason, these buzz tweets are bubbling virally. This paper mainly focuses on a machine learning technique to analyze and classify the tweets on the basis of parameters like offensive, hatred or neither. The output is displayed in the form of a graph which is shown to the user who posted such tweet. 2. RELATED WORKS Koustav Rudra, Ashish Sharma, NiloyGanguly,andSaptarshi Ghosh[1] Have proposed a rule- based classifier to automatically separate communal tweets from non-communal tweets.The tweets are mainly collected from initiators, who initiate a communal tweet and propagators, who retweet the communal tweets. Those users are identified in this paper. After the first-level classification an analysis is made on the non-communal tweets toseparatetheanti-communal tweets from it. The anti-communal tweetsareusedto encounter the communal tweets. Ying Chen, Sencun Zhu, Yilu Zhou and Heng Xu[2] Have proposed a Lexical Syntactic Feature architecture to detect offensive content and to identify potential offensive users in social media. A hand-authoring syntactic rule is being introduced to identify the name-calling harassments. The user’s potentiality to send offensive contentispredicted using certain features like user’s writing style, structureand specific cyberbullying content. Pete Burnap and Matthew L. Williams[3]
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1573 Have proposed a study on online hate speech based on the massive public reaction that arouse during the murder of Drummer Lee Rigby, Woolwich, London. Human annotated Twitter data’s regarding the Woolwich attack was collected to train and test a supervised machinelearningtextclassifier that distinguishes between hateful responses that focusses religion and race. Classification features were derived from the twitter contents including grammatical dependencies between words to recognize “othering” phrases. The results of the classifier was optimal using a combination of probabilistic, rule-based, spatial- based classifiers with a voted ensemble meta-classifier. Edel Greevy and Alan F. Smeaton[4] Have proposed a text categorization system for PRINCIP project to automatically identify the racist text. Support Vector Machine (SVM) learning technique is used here to automatically categorize webpagesandidentifieswhetherit is racist or not. 3. DATA COLLECTION 3.1 Accessing Twitter API: OAuth is an open standard framework for accessing the delegation, which is used by users to grant permission or applications access to their information on other websites but without giving the passwords. This mechanism is used by Twitter to permit the users to share information about their accounts with third party applications or websites without revealingtheircredentials.OAuthdefinesfourmajor roles:  Resource Owner: The resource owner is the one who owns an application and allows users to access their account.  Client: The client is the application that wants to access the user’s accounts.  Resource Server: The resource server conducts the protected user accounts.  Authorization Server: The authorization server verifies the identity of the user and then issues access tokens to the application. Fig – 1 A protocol flow of OAuth Tweepy supports accessing Twitter via OAuth. Tweepy is a library in python thatenablesPythonto communicate with Twitter platform anduseitsAPI. Fig – 2 Access tokens The above screenshot has the data needed to talk with Twitter Network. The main classes that are used in the Twitter API are Tweets, Users, Entities and Places. With Tweepy it is possible to get any object and use any method offered by Twitter API. Access to each returns a JSON- formatted response and traversing through information is made much easier in Python. The importanttasksofTweepy are monitoring the tweets and doing actions on it. The key component is Stream Listener this object monitorstweetsin real-time and obtains them. Fig. 1. Illustrates the raw data collected from the Twitter server. Fig – 3 View of the raw text data collected 4. DATA PREPROCESSING After collecting the raw Tweets from the Twitter data pre- processing take place. Followingstepsillustratestheprocess involved  The fetched Tweets that are obtained in the JSON format is formatted using Pandas
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1574  Measures are also taken to handle and display exceptions.  A minimum of 40 tweets under this hash tag will be obtained as a csv file. Later a cleaning process is done to remove spaces, emoji’s, URL and links.  This would be obtained in another csv file.  The missing values are also cleaned and the data is encoded. The pandas will recognize both empty cells and ‘NA’ types as missing values. Fig – 4 The pre-processed data 5. IDENTIFICATION OF COMMUNAL TWEET A manually prepared training dataset is used to train a supervised algorithm called Support Vector Machine learning algorithm. Supervised Learning is a machine learning method used to map an input to the output based on examples input-output pairs. It infers a function from labelled training data consistingofa setoftrainingexamples. In supervised learning, each example is a pair consisting of an input object (typically a vector) and a desired output value (supervisory signal). A supervised learning algorithm analyses the dataset prepared for training and produces an inferred function, which can be used for mapping new examples. Supervised learning problems are grouped into Regression and Classification problems.  Regression – When the output variable is a real value then it is said to be a regression problem Eg: such as ‘dollars’ or ‘weight’.  Classification – When the output is a category, then it is said to be a classification problem Eg: such as ‘red’ or ‘blue’ or ‘disease’ or ‘no disease’. In this paper, a supervised classification algorithmcalledthe Support Vector Machine learning algorithm is used. Support Vector Machine (SVM) is one among the supervised learning techniques which can be used for either classification or regression challenges. However, itismostly used in classification problems. This algorithm is used to plot each data item as a point in n-dimensional space where n is number of features. Here in this paper three featuresare used. They are, hatred, offensive and neutral words. Based on these features, the algorithm classifies the tweets collected from the Twitter.Thealgorithmtakestwoinputs. It takes specific keywords listwhichisthedatasetpreparedfor training the algorithm which is shown in Fig – 5 as one input and the tweet to be identified as another input. The results were plotted in a graph. Fig – 5 The training dataset 6. DATA VISUALIZATION The trained model can be stored as a Python object so that one need not train each and every time we need to predict. The accuracy of the trained model is calculated before prediction. A convolution matrix is calculated. We use data visualization to present the resultina visualizedmanner. Fig – 6 Shows the output of the pie chart. Fig – 6 Plotted graph
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 03 | Mar 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1575 7. CONCLUSION This paper is the first attempt which is involved in identifying not only communal tweets but also the tweets which contains offensive or vulgar contents that has to be concealed from children below 18 years of age. It also helps in preventing conflicts that may arouse betweenpeople who belongs to different communities. This paper is a prototype built on the idea given in the paper “Characterizing and Countering Communal MicroblogsduringDisasterEvents”[1]. Here live Tweets are obtained and pre-processed. Those cleaned Twitter data’s are fetched to the machine which is trained with manual dataset using Support Vector Machine Learning Technique. A classifier is used to classify the pre- processed data. Now, a graph is displayed which gives information regarding the percentage of hatred, offensive and neutral contents available in the collected Tweets. The Tweets collected not only concentrates on particular incident or a community or a personality, but considers the Tweets randomly that does not come under any particular category and identifies communal tweets[1], offensive contents[2], online hatespeech[3] andvulgarTweets.Finally,a real-time system that automatically classifies the Tweets is proposed in this paper. 8. LIMITATIONS OF THE PROPOSED SYSTEM The proposed system has some limitations as follows:  Only the Tweets in English are taken into account. This system cannot be applied to words notpresent in the English dictionaries.Thosewordsareignored in this process, which is one of the major limitation faced in this paper.  Some Tweets may contain words with improper spellings, abbreviations, emoji’s are just ignored while pre-processing the tweets, which can be treated.  A graph is being displayed to the user on the basis of his Tweet and it can be removed only by the user, even if it is found to be offensive. 9. FUTURE ENHANCEMENTS  It can be used by the Government in taking decisions like regarding eliminating the troublesome tweet, and find a solution to stop the problems that arise in the society.  The communal, offensive, hatred or vulgar Tweets can be replaced with neutral Tweets, so that it does not create any problems or clashes in the society.  It would be effective if such trouble causing Tweets can be blocked immediately.  It would be more effective, when the user is intimated while typing an offensive or a vulgar content and not allowing to proceed further. 10. REFERENCES [1] K. Rudra, A. Sharma, N. Ganguly, and S. Ghosh, “Characterizing and Countering communal microblogs during disaster events,”IEEE TransactionsonComputational Social Systems 5 (2), 403-417 [2] Y. Chen, Y. Zhou, S. Zhu, and H. Xu, “Detecting offensive language in social media to protectadolescentonlinesafety,” in Proc. Int. Conf. Social Comput. Privacy, Secur, Risk Trust (PASSAT), (SocialCom), Sep. 2012, pp. 71–80. [3] P. Burnap and M. L. Williams, “Cyber hate speech on Twitter: An application of machine classification and statistical modeling for policy and decision making,” Policy Internet, vol. 7, no. 2, pp. 223–242, 2015. [4] E. Greevy and A. F. Smeaton, “Classifying racist texts using a support vector machine,” in Proc. SIGIR, 2004, pp. 468–469. [5] I. Kwok and Y.Wang, “Locate the hate: Detecting tweets against blacks,”in Proc. 27th AAAI Conf. Artif. Intell., 2013, pp. 1621–1622. [6] K. Rudra, A. Sharma, N. Ganguly, and S. Ghosh, “Characterizing communal microblogs during disaster events,” in Proc. IEEE/ACM ASONAM, Aug. 2016, pp. 96–99. [7] K. Rudra, S. Ghosh, N. Ganguly, P. Goyal, and S. Ghosh, “Extracting situational information from microblogs during disasterevents:Aclassification-summarizationapproach,”in Proc. ACM CIKM, 2015, pp. 583–592. [8] F. Pedregosa et al., “Scikit-learn: Machine learning in Python,” J. Mach. Learn. Res., vol. 12, pp. 2825–2830, Oct. 2011.