SlideShare a Scribd company logo
1 of 5
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 05 May| 2022 www.irjet.net p-ISSN: 2395-0072
A Review of machine learning approaches to mine Social Choice of
voters.
Ankita Sengar
1Assistant professor
Key Words: Social Choice theory, Intent Mining, Lexicon
Model, Supervised Model, NLP, Ensemble, Naïve Bayes,
SVM, Tfid vectorization, Election, Twitter
1.INTRODUCTION
Fig 1: Block diagram representation of approach
Social choice theory is the field of microeconomics which
study collective decision processes of Society. It concerns a
cluster of actions and results concerning to that action
(individual inputs like votes, preferences, judgments) into
collective outputs (e.g., collective decisions, preferences of
governance). Social choice is about a group of individuals or
society choosing a winning outcome (e.g., policy, electoral
candidate) from a given set of options. Many AI models are
used these days to harness user opinion regarding certain
policy or electoral choices.
Intent of a user can be positive, negative or neutral towards
certain political party or representative. These intents of a
voter are implicitly or explicitly shared by them on various
social media platforms like twitter, Facebook etc. These
implicit and explicit opinion is collected depending on well-
articulated features. And several of these features of many
people makes a dataset which is used to extractpatternsand
knowledge which could either directly predict voter intent
or could be used to train a machine which will in future
predict such results if provided with similar features.
There have been many early works for predicting election.
Tumasjan1 showed that by using only volume of tweets with
mere mention of political parties can be used to statistically
represent election polls favor. Wang2 attempted to improve
Tumasjan1 proposed work by combining and separting
tweets into positive sentiment and negative sentiment of
voters. Franch F3 proposed vote share prediction model
using ARIMA (auto regressive integrated moving average)
model, which exceeded the accuracyoftraditional expensive
polls. Barkha Bansal4 used lexicon-based model to collect
data against positive and negative sentiments and then
statistically predicted election results for UP. On the other
hand, Marozzo5 used a supervised machine model (Random
Forest algorithm) to find polarity of tweets and news texts
related to political campaigns.
In next section literature review of machine learning and
intent mining approaches which are generally used to
predict social choice or election result are covered.
2. LITERATURE REVIEW
Any approach be it manual statistical predictionor buildinga
model which will predict for us, both the approachesheavily
depend on data sets used for this prediction. Data sets used
to make conclusion can break or make a model. Therefore,
before reviewing specification of various algorithm and
model used to predict a social choice. It’s necessary to
consider several steps which go into making datasetsuseful.
Data to make prediction or train a machine can be collected
from social media platform like Twitter. Twitter provides
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3671
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract – Mining the intention of user and predicating
their future behavior is biggest tool for any commercial or
noncommercial organization. Also Predicting election results
is new area where intent mining is applied. In last decade,
social platforms has been immensely used in elections. There
are many statistical and AI based model which has predicted
the result of a national election toagreataccuracy. Thispaper
presents a literature reviewof various machinelearningbased
strategies used to analyze voter intent from their socialmedia
handle like twitter and predicting the results of elections.
Today social media provide various platform where
intellectuals of various field connect and interact their
ideologies be it social, political or personal. These platforms
with time have become like a data mine which holds people
intent from several accepts, which if properly excavated and
analyzed are worth the millions for several commercial and
noncommercial organizations. Data Mining is the process of
knowledge discovery from data (KDD) by sorting and
analyzing large data sets. This data could extract knowledge
like user opinion regarding there likeness or unlikeness
towards a product, favor or against certain government
policy, their sentiments toward something or their intent to
vote in favor of certain party or person etc.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 05 May| 2022 www.irjet.net p-ISSN: 2395-0072
the opportunity to collect data from it for research purpose
for which many tools and libraryareprovidedbypythonand
google colob. But this data is raw and unstructured
consisting large amount of information which could be
removed for more optimize and quick model.
2.1 Natural Language Processing
Fig 2: NLP Pipeline
NLP uses Language Processing Pipelines to read and
decipher human languages to machine readableform.These
pipelines consist of five sub processes. That breaks text into
small chunks, reconstructs it to be analyzed, and processed
to bring us the most relevant information when doing text
analysis.
 Sentence cleaning:Clearall whitespacerows,html
tags, smiley and segment para into sentence.
 Tokenization: Break Sentence into works (Token)
 Stop Words removal: Remove prepositions and
postpositions from tokens.
 Stemming and Lemmatization: Stem token into
base form and check grammar or if word is
meaningful.
 Vectorization: Convert textual data into numeric
vector form.
2.2 Approaches to predict Social Choice
Once properly structured and clean data is achieved voter
intent is positive, negative or neutral can be predicted using
either of lexicon based model or a supervised model or an
unsupervised model. In this paper we will limit ourself to
prior two approaches.
2.2.1 lexicon based Model
The lexicon model based approach, make use of pre-
prepared sentiment lexicon to score a document. The pre-
prepared sentiment lexicon should contain a word and
corresponding sentiment scoretoit orawordsormultiword
tagged as positive, negative or neutral. The lexicon may be
developed manually, for example, Taboada6 or semi-
automaticallyderivingsentimentvaluesfrom resources such
as WordNet, for example, Esuli and Sebastiani7.
Fig 3: Lexicon Model
To predict the overall sentiment of a document, a formula, a
function or an algorithm is neededtocalculatethepolarityof
intent of voter.
After finding sentiment score (sentiment polarity and
magnitude) of each tweet of the datasets, Barkha Bansal4
used below formula to calculate total positive volume and
total positive magnitude in each dataset. Finally, vote share
for each party was statistically calculated using three
methods presented in following equations.
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page367 2
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 05 May| 2022 www.irjet.net p-ISSN: 2395-0072
2.3.2 Naïve Bayes Model
Taking Conditional Independence for P(X1, X2/Y=1),
This is the formula to calculate the posterior probability
using Naïve Bayes Classifier.
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3673
Fig 4: Intent Analysis Approach
2.3 Machine Learning Approaches
Model based on maximum entropy adhere to Probabilistic
classification. In this model instead of making inferences
based on incomplete information, we draw them from that
probability distribution that has the maximum entropy
permitted by the information.
Machine-learning methods to model a machine which can
predict user intent of social choice can be supervised
learning based or unsupervised learning based. Most
research till now has been constricted to deploying a
supervised model for intent prediction which after first four
preprocessing steps either use a ‘bag-of-words’ approach
(usually cleaned stemmed and lemmatized) or feature
vectorization of corpus as independent feature vector
(Counter Vectorization) or Multiword terms feature vector
(Tfidf vectorization or hashing vectorization)toconverttext
into numerical format for further calculation and training.
Supervised learning approaches which we intendtocover in
this literature review is used to develop a classifier which
can learn from mined features from social media andclassify
intent of user into positive or negative or neutral depending
on model is bi-classifier or tri- classifier.
The most used Supervised machine-learning methods in
intent analysis are the support vector machine (SVM) [8,9]
,Naive Bayes method [10] , Max Ent and logistic regression.
2.3.1 Maximum Entropy Model
Maximum entropy distributions function could be
represented as.
Naïve Bayes is a supervised machineclassificationalgorithm,
built on Bayes Theorem. Due to its Naïve assumption that
predictors hold Conditional Independence among
themselves it is called naïve bayes. It is based onassumption
that all the features in a class are unrelated.
Bayes Theorem:
Let’s take two events A and B. Then formula to calculate
posterior probability P(B/A).
Posterior probability of single feature is easy to calculate
but when we have two or more features, we can get a zero-
probability problem. Therefore, we start by making a Naïve
assumption of conditional independence among features to
calculate posterior probability.
Suppose we have, Predictors: [ X1, X2 ] and Target: Y
The formula to calculate the posterior probability is-
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 05 May| 2022 www.irjet.net p-ISSN: 2395-0072
2.3.3 Support Vector Machine
Fig:5 Data Visualization of various Algorithms
SVM is a regression and classification supervised machine
learning algorithm. In SVM, we aim to find the best decision
boundary called hyperplane among the data points that are
plotted in n-dimensional space where n is the number of
features. For a n-dimensional space i.e. n-feature
visualization of data set, the hyper-plane has (n-1)
dimensions. SVM can be used for Linearly separable data
called Linear SVM model and also non linearly Separable
data using a special SVM called Kernel SVM. Below
Expression is representation of one such kernel function
which could be used to separate non linear data.
2.3.4 Logistic Regression
A logistic regression is like a generalized linear model but
with a canonical link function. i.e. output of generalized
linear function is squashed in range of [0,1] using the
sigmoid function (logistic function). Sigmoid-Function is an
S-shaped curve that is discrete unlike continuous output
result in linear classification. If output value is greater than
threshold value or lower than a minimum threshold. we
assign it as label 1, else we assign it a label 0 respectively.
In terms of easy computation, it is the best model among
other generalized linear models for binary classification or
regression. Function used to calculate the Logistic
regression.
2.3.5 Deep Learning
Deep learning is an advance representation of unsupervised
learning which offers a set of algorithms inspiredbyhowthe
human brain works, they are called neural nets. Deep
learning architectures are being used heavenly for text
classification because they are proving to perform at super
high accuracy and precision.
The two deep learning architectures which are mostly used
for text classification are Convolutional Neural Networks
(CNN) and Recurrent Neural Networks (RNN).
Deep learning works similar to how the human brain works
to make decisions,usingdifferenttechniquessimultaneously
to process huge amount of data collecting from social media.
3. CONCLUSIONS
There are lots of model using Artificial intelligencetopredict
election up to acceptable accuracy but still each day with
new ensemble or better data processingthisaccuracycanbe
further increase. Deep learning model sucha RNN whichcan
train from unlabeled data and identify the hidden pattern
and relational among that data, holds the future of machine
model which can predict social choice of voters by using
their mined intent.
REFERENCES
185.
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3674
[1] Tumasjan A, Sprenger TO, Sandner PG, Welpe IM.
“Predicting elections with twitter: What 140 characters
reveal about political sentiment.” Icwsm. 2010;10(1):178–
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 05 May| 2022 www.irjet.net p-ISSN: 2395-0072
[3] Franch F. (Wisdom of the Crowds) 2: 2010 UK election
prediction with social media. Journal of Information
Technology & Politics. 2013;10(1):57–71.
[4] Barkha Bansala, Sangeet Srivastava. ”On predicting
elections with hybrid topic based sentiment analysis of
tweets”. Procedia Computer Science,Volume 135, 2018,
https://miro.medium.com/max/1400/1*o4Dy1w4n2kDOLA
8UEwGC9g.pngPages 346-353
[5] Marozzo F, Bessi “A. Analyzing polarization of social
media users and news sites during political campaigns.
Social Network Analysis and Mining”. 2018;8(1)
[6] Taboada M, Brooke J, Tofiloski M et al. “Lexicon based
methods for sentiment analysis”.ComputLinguist2011;
37: 267–307.
[7] Esuli A and Sebastiani F. SentiWordNet: “a publicly
available lexical resource for opinion mining”. In:
Proceedings of the 5th
[8] Cortes C and Vapnik V. “Support vectornetworks”.Mach
Learn 1995; 20(3): 273–297.
[9] Vapnik VN and Vapnik V. “Statistical learning theory”.
New York: John Wiley & Sons, 1998.
[10] Zhang H. “The optimality of naive Bayes”. In:
Proceedings of the seventeenth Florida artificial
intelligence research society conference, Miami Beach,
FL, 12–14 May 2004, pp. 562–567. Palo Alto, CA:
American Association for Artificial Intelligence
BIOGRAPHIES
Ankita Sengar
Assistant Professor
+8 year Experenice
Area of Interest:
Machine learning, IOT
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3675
[2] Jungherr A, Jurgens P, Schoen H. “Why the pirate party
won the german election of 2009 or the trouble with
predictions: A response to ¨ tumasjan, a., sprenger, to,
sander, pg, & welpe, im ”predicting elections with
twitter: What 140 characters reveal about political
sentiment?” Social science computer review.
2012;30(2):229–234.

More Related Content

Similar to A Review of machine learning approaches to mine Social Choice of voters.

IRJET - Twitter Sentiment Analysis using Machine Learning
IRJET -  	  Twitter Sentiment Analysis using Machine LearningIRJET -  	  Twitter Sentiment Analysis using Machine Learning
IRJET - Twitter Sentiment Analysis using Machine LearningIRJET Journal
 
THE ANALYSIS FOR CUSTOMER REVIEWS THROUGH TWEETS, BASED ON DEEP LEARNING
THE ANALYSIS FOR CUSTOMER REVIEWS THROUGH TWEETS, BASED ON DEEP LEARNINGTHE ANALYSIS FOR CUSTOMER REVIEWS THROUGH TWEETS, BASED ON DEEP LEARNING
THE ANALYSIS FOR CUSTOMER REVIEWS THROUGH TWEETS, BASED ON DEEP LEARNINGIRJET Journal
 
IRJET- A Real-Time Twitter Sentiment Analysis and Visualization System: Twisent
IRJET- A Real-Time Twitter Sentiment Analysis and Visualization System: TwisentIRJET- A Real-Time Twitter Sentiment Analysis and Visualization System: Twisent
IRJET- A Real-Time Twitter Sentiment Analysis and Visualization System: TwisentIRJET Journal
 
A large-scale sentiment analysis using political tweets
A large-scale sentiment analysis using political tweetsA large-scale sentiment analysis using political tweets
A large-scale sentiment analysis using political tweetsIJECEIAES
 
Analysis Levels And Techniques A Survey
Analysis Levels And Techniques   A SurveyAnalysis Levels And Techniques   A Survey
Analysis Levels And Techniques A SurveyLiz Adams
 
Major presentation
Major presentationMajor presentation
Major presentationPS241092
 
IRJET- Interpreting Public Sentiments Variation by using FB-LDA Technique
IRJET- Interpreting Public Sentiments Variation by using FB-LDA TechniqueIRJET- Interpreting Public Sentiments Variation by using FB-LDA Technique
IRJET- Interpreting Public Sentiments Variation by using FB-LDA TechniqueIRJET Journal
 
76201960
7620196076201960
76201960IJRAT
 
A Novel Hybrid Classification Approach for Sentiment Analysis of Text Document
A Novel Hybrid Classification Approach for Sentiment Analysis of Text Document  A Novel Hybrid Classification Approach for Sentiment Analysis of Text Document
A Novel Hybrid Classification Approach for Sentiment Analysis of Text Document IJECEIAES
 
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
 
Social Media Sentiment Analysis fro Depression detection Using Machine Learni...
Social Media Sentiment Analysis fro Depression detection Using Machine Learni...Social Media Sentiment Analysis fro Depression detection Using Machine Learni...
Social Media Sentiment Analysis fro Depression detection Using Machine Learni...SaurabhMishra450
 
Neural Network Based Context Sensitive Sentiment Analysis
Neural Network Based Context Sensitive Sentiment AnalysisNeural Network Based Context Sensitive Sentiment Analysis
Neural Network Based Context Sensitive Sentiment AnalysisEditor IJCATR
 
Methods for Sentiment Analysis: A Literature Study
Methods for Sentiment Analysis: A Literature StudyMethods for Sentiment Analysis: A Literature Study
Methods for Sentiment Analysis: A Literature Studyvivatechijri
 
IRJET - Sentiment Analysis of Posts and Comments of OSN
IRJET -  	  Sentiment Analysis of Posts and Comments of OSNIRJET -  	  Sentiment Analysis of Posts and Comments of OSN
IRJET - Sentiment Analysis of Posts and Comments of OSNIRJET Journal
 
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
 
Sentiment Analysis in Social Media and Its Operations
Sentiment Analysis in Social Media and Its OperationsSentiment Analysis in Social Media and Its Operations
Sentiment Analysis in Social Media and Its OperationsIRJET Journal
 

Similar to A Review of machine learning approaches to mine Social Choice of voters. (20)

IRJET - Twitter Sentiment Analysis using Machine Learning
IRJET -  	  Twitter Sentiment Analysis using Machine LearningIRJET -  	  Twitter Sentiment Analysis using Machine Learning
IRJET - Twitter Sentiment Analysis using Machine Learning
 
THE ANALYSIS FOR CUSTOMER REVIEWS THROUGH TWEETS, BASED ON DEEP LEARNING
THE ANALYSIS FOR CUSTOMER REVIEWS THROUGH TWEETS, BASED ON DEEP LEARNINGTHE ANALYSIS FOR CUSTOMER REVIEWS THROUGH TWEETS, BASED ON DEEP LEARNING
THE ANALYSIS FOR CUSTOMER REVIEWS THROUGH TWEETS, BASED ON DEEP LEARNING
 
IRJET- A Real-Time Twitter Sentiment Analysis and Visualization System: Twisent
IRJET- A Real-Time Twitter Sentiment Analysis and Visualization System: TwisentIRJET- A Real-Time Twitter Sentiment Analysis and Visualization System: Twisent
IRJET- A Real-Time Twitter Sentiment Analysis and Visualization System: Twisent
 
A large-scale sentiment analysis using political tweets
A large-scale sentiment analysis using political tweetsA large-scale sentiment analysis using political tweets
A large-scale sentiment analysis using political tweets
 
Abstract
AbstractAbstract
Abstract
 
Analysis Levels And Techniques A Survey
Analysis Levels And Techniques   A SurveyAnalysis Levels And Techniques   A Survey
Analysis Levels And Techniques A Survey
 
Major presentation
Major presentationMajor presentation
Major presentation
 
IRJET- Interpreting Public Sentiments Variation by using FB-LDA Technique
IRJET- Interpreting Public Sentiments Variation by using FB-LDA TechniqueIRJET- Interpreting Public Sentiments Variation by using FB-LDA Technique
IRJET- Interpreting Public Sentiments Variation by using FB-LDA Technique
 
76201960
7620196076201960
76201960
 
A Novel Hybrid Classification Approach for Sentiment Analysis of Text Document
A Novel Hybrid Classification Approach for Sentiment Analysis of Text Document  A Novel Hybrid Classification Approach for Sentiment Analysis of Text Document
A Novel Hybrid Classification Approach for Sentiment Analysis of Text Document
 
757
757757
757
 
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...
 
Social Media Sentiment Analysis fro Depression detection Using Machine Learni...
Social Media Sentiment Analysis fro Depression detection Using Machine Learni...Social Media Sentiment Analysis fro Depression detection Using Machine Learni...
Social Media Sentiment Analysis fro Depression detection Using Machine Learni...
 
Neural Network Based Context Sensitive Sentiment Analysis
Neural Network Based Context Sensitive Sentiment AnalysisNeural Network Based Context Sensitive Sentiment Analysis
Neural Network Based Context Sensitive Sentiment Analysis
 
Methods for Sentiment Analysis: A Literature Study
Methods for Sentiment Analysis: A Literature StudyMethods for Sentiment Analysis: A Literature Study
Methods for Sentiment Analysis: A Literature Study
 
IRJET - Sentiment Analysis of Posts and Comments of OSN
IRJET -  	  Sentiment Analysis of Posts and Comments of OSNIRJET -  	  Sentiment Analysis of Posts and Comments of OSN
IRJET - Sentiment Analysis of Posts and Comments of OSN
 
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 ...
 
Sentiment Analysis in Social Media and Its Operations
Sentiment Analysis in Social Media and Its OperationsSentiment Analysis in Social Media and Its Operations
Sentiment Analysis in Social Media and Its Operations
 
vishwas
vishwasvishwas
vishwas
 
[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
 

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 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
 

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

(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduitsrknatarajan
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 

Recently uploaded (20)

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
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduits
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 

A Review of machine learning approaches to mine Social Choice of voters.

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 May| 2022 www.irjet.net p-ISSN: 2395-0072 A Review of machine learning approaches to mine Social Choice of voters. Ankita Sengar 1Assistant professor Key Words: Social Choice theory, Intent Mining, Lexicon Model, Supervised Model, NLP, Ensemble, Naïve Bayes, SVM, Tfid vectorization, Election, Twitter 1.INTRODUCTION Fig 1: Block diagram representation of approach Social choice theory is the field of microeconomics which study collective decision processes of Society. It concerns a cluster of actions and results concerning to that action (individual inputs like votes, preferences, judgments) into collective outputs (e.g., collective decisions, preferences of governance). Social choice is about a group of individuals or society choosing a winning outcome (e.g., policy, electoral candidate) from a given set of options. Many AI models are used these days to harness user opinion regarding certain policy or electoral choices. Intent of a user can be positive, negative or neutral towards certain political party or representative. These intents of a voter are implicitly or explicitly shared by them on various social media platforms like twitter, Facebook etc. These implicit and explicit opinion is collected depending on well- articulated features. And several of these features of many people makes a dataset which is used to extractpatternsand knowledge which could either directly predict voter intent or could be used to train a machine which will in future predict such results if provided with similar features. There have been many early works for predicting election. Tumasjan1 showed that by using only volume of tweets with mere mention of political parties can be used to statistically represent election polls favor. Wang2 attempted to improve Tumasjan1 proposed work by combining and separting tweets into positive sentiment and negative sentiment of voters. Franch F3 proposed vote share prediction model using ARIMA (auto regressive integrated moving average) model, which exceeded the accuracyoftraditional expensive polls. Barkha Bansal4 used lexicon-based model to collect data against positive and negative sentiments and then statistically predicted election results for UP. On the other hand, Marozzo5 used a supervised machine model (Random Forest algorithm) to find polarity of tweets and news texts related to political campaigns. In next section literature review of machine learning and intent mining approaches which are generally used to predict social choice or election result are covered. 2. LITERATURE REVIEW Any approach be it manual statistical predictionor buildinga model which will predict for us, both the approachesheavily depend on data sets used for this prediction. Data sets used to make conclusion can break or make a model. Therefore, before reviewing specification of various algorithm and model used to predict a social choice. It’s necessary to consider several steps which go into making datasetsuseful. Data to make prediction or train a machine can be collected from social media platform like Twitter. Twitter provides © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3671 ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract – Mining the intention of user and predicating their future behavior is biggest tool for any commercial or noncommercial organization. Also Predicting election results is new area where intent mining is applied. In last decade, social platforms has been immensely used in elections. There are many statistical and AI based model which has predicted the result of a national election toagreataccuracy. Thispaper presents a literature reviewof various machinelearningbased strategies used to analyze voter intent from their socialmedia handle like twitter and predicting the results of elections. Today social media provide various platform where intellectuals of various field connect and interact their ideologies be it social, political or personal. These platforms with time have become like a data mine which holds people intent from several accepts, which if properly excavated and analyzed are worth the millions for several commercial and noncommercial organizations. Data Mining is the process of knowledge discovery from data (KDD) by sorting and analyzing large data sets. This data could extract knowledge like user opinion regarding there likeness or unlikeness towards a product, favor or against certain government policy, their sentiments toward something or their intent to vote in favor of certain party or person etc.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 May| 2022 www.irjet.net p-ISSN: 2395-0072 the opportunity to collect data from it for research purpose for which many tools and libraryareprovidedbypythonand google colob. But this data is raw and unstructured consisting large amount of information which could be removed for more optimize and quick model. 2.1 Natural Language Processing Fig 2: NLP Pipeline NLP uses Language Processing Pipelines to read and decipher human languages to machine readableform.These pipelines consist of five sub processes. That breaks text into small chunks, reconstructs it to be analyzed, and processed to bring us the most relevant information when doing text analysis.  Sentence cleaning:Clearall whitespacerows,html tags, smiley and segment para into sentence.  Tokenization: Break Sentence into works (Token)  Stop Words removal: Remove prepositions and postpositions from tokens.  Stemming and Lemmatization: Stem token into base form and check grammar or if word is meaningful.  Vectorization: Convert textual data into numeric vector form. 2.2 Approaches to predict Social Choice Once properly structured and clean data is achieved voter intent is positive, negative or neutral can be predicted using either of lexicon based model or a supervised model or an unsupervised model. In this paper we will limit ourself to prior two approaches. 2.2.1 lexicon based Model The lexicon model based approach, make use of pre- prepared sentiment lexicon to score a document. The pre- prepared sentiment lexicon should contain a word and corresponding sentiment scoretoit orawordsormultiword tagged as positive, negative or neutral. The lexicon may be developed manually, for example, Taboada6 or semi- automaticallyderivingsentimentvaluesfrom resources such as WordNet, for example, Esuli and Sebastiani7. Fig 3: Lexicon Model To predict the overall sentiment of a document, a formula, a function or an algorithm is neededtocalculatethepolarityof intent of voter. After finding sentiment score (sentiment polarity and magnitude) of each tweet of the datasets, Barkha Bansal4 used below formula to calculate total positive volume and total positive magnitude in each dataset. Finally, vote share for each party was statistically calculated using three methods presented in following equations. © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page367 2
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 May| 2022 www.irjet.net p-ISSN: 2395-0072 2.3.2 Naïve Bayes Model Taking Conditional Independence for P(X1, X2/Y=1), This is the formula to calculate the posterior probability using Naïve Bayes Classifier. © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3673 Fig 4: Intent Analysis Approach 2.3 Machine Learning Approaches Model based on maximum entropy adhere to Probabilistic classification. In this model instead of making inferences based on incomplete information, we draw them from that probability distribution that has the maximum entropy permitted by the information. Machine-learning methods to model a machine which can predict user intent of social choice can be supervised learning based or unsupervised learning based. Most research till now has been constricted to deploying a supervised model for intent prediction which after first four preprocessing steps either use a ‘bag-of-words’ approach (usually cleaned stemmed and lemmatized) or feature vectorization of corpus as independent feature vector (Counter Vectorization) or Multiword terms feature vector (Tfidf vectorization or hashing vectorization)toconverttext into numerical format for further calculation and training. Supervised learning approaches which we intendtocover in this literature review is used to develop a classifier which can learn from mined features from social media andclassify intent of user into positive or negative or neutral depending on model is bi-classifier or tri- classifier. The most used Supervised machine-learning methods in intent analysis are the support vector machine (SVM) [8,9] ,Naive Bayes method [10] , Max Ent and logistic regression. 2.3.1 Maximum Entropy Model Maximum entropy distributions function could be represented as. Naïve Bayes is a supervised machineclassificationalgorithm, built on Bayes Theorem. Due to its Naïve assumption that predictors hold Conditional Independence among themselves it is called naïve bayes. It is based onassumption that all the features in a class are unrelated. Bayes Theorem: Let’s take two events A and B. Then formula to calculate posterior probability P(B/A). Posterior probability of single feature is easy to calculate but when we have two or more features, we can get a zero- probability problem. Therefore, we start by making a Naïve assumption of conditional independence among features to calculate posterior probability. Suppose we have, Predictors: [ X1, X2 ] and Target: Y The formula to calculate the posterior probability is-
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 May| 2022 www.irjet.net p-ISSN: 2395-0072 2.3.3 Support Vector Machine Fig:5 Data Visualization of various Algorithms SVM is a regression and classification supervised machine learning algorithm. In SVM, we aim to find the best decision boundary called hyperplane among the data points that are plotted in n-dimensional space where n is the number of features. For a n-dimensional space i.e. n-feature visualization of data set, the hyper-plane has (n-1) dimensions. SVM can be used for Linearly separable data called Linear SVM model and also non linearly Separable data using a special SVM called Kernel SVM. Below Expression is representation of one such kernel function which could be used to separate non linear data. 2.3.4 Logistic Regression A logistic regression is like a generalized linear model but with a canonical link function. i.e. output of generalized linear function is squashed in range of [0,1] using the sigmoid function (logistic function). Sigmoid-Function is an S-shaped curve that is discrete unlike continuous output result in linear classification. If output value is greater than threshold value or lower than a minimum threshold. we assign it as label 1, else we assign it a label 0 respectively. In terms of easy computation, it is the best model among other generalized linear models for binary classification or regression. Function used to calculate the Logistic regression. 2.3.5 Deep Learning Deep learning is an advance representation of unsupervised learning which offers a set of algorithms inspiredbyhowthe human brain works, they are called neural nets. Deep learning architectures are being used heavenly for text classification because they are proving to perform at super high accuracy and precision. The two deep learning architectures which are mostly used for text classification are Convolutional Neural Networks (CNN) and Recurrent Neural Networks (RNN). Deep learning works similar to how the human brain works to make decisions,usingdifferenttechniquessimultaneously to process huge amount of data collecting from social media. 3. CONCLUSIONS There are lots of model using Artificial intelligencetopredict election up to acceptable accuracy but still each day with new ensemble or better data processingthisaccuracycanbe further increase. Deep learning model sucha RNN whichcan train from unlabeled data and identify the hidden pattern and relational among that data, holds the future of machine model which can predict social choice of voters by using their mined intent. REFERENCES 185. © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3674 [1] Tumasjan A, Sprenger TO, Sandner PG, Welpe IM. “Predicting elections with twitter: What 140 characters reveal about political sentiment.” Icwsm. 2010;10(1):178–
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 May| 2022 www.irjet.net p-ISSN: 2395-0072 [3] Franch F. (Wisdom of the Crowds) 2: 2010 UK election prediction with social media. Journal of Information Technology & Politics. 2013;10(1):57–71. [4] Barkha Bansala, Sangeet Srivastava. ”On predicting elections with hybrid topic based sentiment analysis of tweets”. Procedia Computer Science,Volume 135, 2018, https://miro.medium.com/max/1400/1*o4Dy1w4n2kDOLA 8UEwGC9g.pngPages 346-353 [5] Marozzo F, Bessi “A. Analyzing polarization of social media users and news sites during political campaigns. Social Network Analysis and Mining”. 2018;8(1) [6] Taboada M, Brooke J, Tofiloski M et al. “Lexicon based methods for sentiment analysis”.ComputLinguist2011; 37: 267–307. [7] Esuli A and Sebastiani F. SentiWordNet: “a publicly available lexical resource for opinion mining”. In: Proceedings of the 5th [8] Cortes C and Vapnik V. “Support vectornetworks”.Mach Learn 1995; 20(3): 273–297. [9] Vapnik VN and Vapnik V. “Statistical learning theory”. New York: John Wiley & Sons, 1998. [10] Zhang H. “The optimality of naive Bayes”. In: Proceedings of the seventeenth Florida artificial intelligence research society conference, Miami Beach, FL, 12–14 May 2004, pp. 562–567. Palo Alto, CA: American Association for Artificial Intelligence BIOGRAPHIES Ankita Sengar Assistant Professor +8 year Experenice Area of Interest: Machine learning, IOT © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3675 [2] Jungherr A, Jurgens P, Schoen H. “Why the pirate party won the german election of 2009 or the trouble with predictions: A response to ¨ tumasjan, a., sprenger, to, sander, pg, & welpe, im ”predicting elections with twitter: What 140 characters reveal about political sentiment?” Social science computer review. 2012;30(2):229–234.