SlideShare a Scribd company logo
1 of 4
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN:2395-0056
p-ISSN:2395-0072Volume : 06 Issue :04 | Apr2019 www.irjet.net
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 4499
Personality Recognition using Social Media Data
Medhavini Rao1, Pooja Jayant Kanchugar2, Pooja R3, Prakshitha M N4, Anitha R5
1,2,3,4Eight Semester, Dept. of CSE, The National Institute of Engineering, Mysore
5Professor, Dept. of CSE, The National Institute of Engineering, Mysore
---------------------------------------------------------------------***----------------------------------------------------------------------
Abstract - With the emerging technology, social media
has also increased to a great extent. Social media is one of
the platform for opinions and thoughts of an individual.
People share their personal information on social media
account. Social media mainly predict the personality of a
person. Personality mainly accounts for individual
differences in people. To reliably, validly, and efficiently
recognize an individual's personality is a worthwhile goal;
however, the traditional ways of personality assessment
through self-report inventories or interviews conducted by
psychologists are costly and not so useful and less
commercial. This project proposes a method of Big Five
personality recognition from Facebook data. It helps in
the analysis of Facebook data and train the model using
large datasets. Random Forest Regression is used to build
the model for getting high accuracy. Firstly, we collected
raw data by accessing Facebook directly through chrome
extension, then the friend list will be accessed to review
their status and posts. In the further step, the status and
posts of each one in the friend list will be stored in
MongoDB database as a dictionary. Then the data will be
fitted to our model to train the model and then the model
is tested for some more data. At last we visualize the
results by plotting graphs.
Key Words: Machine learning, Facebook, Personality
Recognition, Big Five, Random Forest algorithm.
1. INTRODUCTION
Online social networks nowadays has become popular in
many ways for users to show their identity and connect
and share information with one other through social
networks. Facebook is the most popular social network.
Personality describes the uniqueness of a person. One
can understand others behavior on the basis of day-to-
day observation of an individual’s underlying
personality traits. Many researches in psychology
suggested that the behavior and preferences can be
explained to a great extent by underlying psychological
constructs i.e. personality traits. Facebook profiles of
users is the most important source of information. The
study of personality can benefit Social Network analysis,
Deception detection, Authorship attribution, Sentiment
analysis. Personal information on social networking
platforms render it possible to analyze the user’s
behaviors and infer their personality traits on the web. It
has become one of the most ubiquitous means of
communication today.
The most widely accepted model of personality is Big Five
or five factor model mainly consist of Openness,
Conscientiousness, Extroversion, Agreeableness, and
Neuroticism. Openness is nothing but the measure of
creativity, curiosity, imagination etc. Conscientiousness is
how efficient, organized, responsible, and persevering a
person is. Extroversion is to seek stimulation in external
world and to express positive emotions. Agreeableness is
maintaining positive social relations, friendly and
cooperative. Neuroticism is tendency to experience mood
swings and emotion such as guilt, anger, depression. We
basically use big five approach because it has better
performance and undergoes detailed analysis of an
individual.
The technique used in our proposed system is the
machine learning approach based on social media
activities. The earliest efforts mainly focused on
Personality Recognition from written text which may be
the handwriting of that person. The first pioneering
work was done by Shlomo about 10 years ago , which
extracted word categories and relative frequency of
function words from 2236 written essays of 1200
students as the input of Support Vector Machines (SVM)
to discriminate between students at the opposite
extremes of Extraversion and Neuroticism. The same
data set and approach were used by Mairesse to
recognize individuals in the upper and lower half of the
observed scores for all Big Five traits. They studied the
effectiveness of different sets of textual features
extracted from psychologically oriented text analysis
tools (e.g. LIWC2) or psycholinguistic dictionary (e.g.
MRC3), and found that the openness trait yields the best
accuracy using SVM.
In a separate study by Lee and Nass, interaction effects
between user factors, and media factors on feelings of
social presence were investigated.
In a study by Saati it was found that extroverts tended to
interact faster with the user interface than introverts. T.
Correa concludes that extraversion and openness to
experience are positively related to use of social
applications on internet, emotional stability was
negatively associated.
2. OBJECTIVES
The main objective of this entire system is to analyze the
personality of an individual based on social media
activities. The study of personality is of central
International Research Journal of Engineering and Technology (IRJET) e-ISSN:2395-0056
p-ISSN:2395-0072Volume : 06 Issue :04 | Apr2019 www.irjet.net
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 4500
importance in psychology, and personality recognition
also benefits many other applications such as Social
network analysis, Recommendation systems, Deception
detection, Authorship attribution, Sentiment
analysis/opinion mining and so on. With the
development of various social media, modern computer
science has become the real potential for advancing that
endeavor. The rich digital traces and self-disclosed
personal information on social networking platforms
render it possible to analyze the user’s behaviors and
infer their personality traits on the web, which has
attracted much attention from different disciplines.
Many data scientists use many different kinds of
machine learning algorithms to discover patterns in big
data. There are two groups to make predictions:
supervised and unsupervised learning. Supervised
learning is where you have input variables ‘a’ and an
output variable ‘b’ and you use an algorithm to learn the
mapping function from the input to the output b = f(a) .
Unsupervised learning is where you only have input
data ‘a’ and no corresponding output variables.
Supervised are grouped into regression and
classification. Regression is nothing but when the
output variable is a real or continuous value such as
“salary” or “weight”. Examples are Predicting age of a
person etc. Classification is nothing but when the output
variable is a category such as “red” or “blue” or “disease”
and “no disease”. Examples are Predicting house price
based on area.
However in our project we have used Random forest
algorithm for getting high accuracy. Random forest can
used for both classification and the regression kind of
problems. Random forest algorithm is a supervised
classification algorithm. As the number of trees in the
forest increases, accuracy also increases. Random Forest
is one of the easy-to-use algorithm, because its default
hyper parameters often produce a good prediction
result. The number of hyper parameters is also not that
high and they are easy to understand. Random forest
algorithm mainly used in Banking, Medicine, Stock
Market, E-commerce.
3. EXISTING SYSTEM
Personality is considered as an important criteria in
explaining human behaviors. Recognizing one’s
personality has many advantages. It can be used in
Deception detection, Recommendation systems and
Sentimental analysis. The existing methods consists of
various interviews or counseling by experts which is not
economical. There are various other methods which can
be used for personality recognition. Using Social media
data, personality can be recognized as a system
implemented in [4]. As proposed in, personality can be
recognized using data of social media like Facebook,
Twitter, Instagram etc.
In a China, a blog called Sina Weibo is used. The main
drawback of existing system is scalability. This system has
considered 113 features and 994 entries using Big Five
personality (OCEAN model).
3.1 Drawbacks of existing systems
 The traditional methods like counseling and personal
interviews by experts are expensive. The number of data
entries used is less and it is static. It is developed on a
Chinese blog which many people aren’t aware of and less
number of people are using it.
4. PROPOSED SYSTEM
The proposed system proposes a methodology of Big five
personality recognition from Facebook environments as
described in [3] with machine learning approach of
supervised learning called Random forest. Nowadays the
interest of scientific fields is shifting towards personality
recognition that helps in automated analysis of a person
during the hiring process, providing the shopping
recommendations for online customers and so on .The
system fetches the Facebook status text of the friend list
and performs regression methodology on it so that it can
get the percentile report of each OCEAN model trait of
each individual in the friends list .This is visualized using
a radar plot that gives a clear understanding of the
personality of that person.
4.1 Advantages
 Many a times, the manual interview process for hiring
process may not provide a clear understanding of his
personality and also since most of the people today hold a
social media account we can perform their five trait
prediction and hire them based on the requirement. This
system can also be implemented for the online shopping
recommendation systems that help in determining the
personality of a person and then recommending them
with the suitable products based on their interests and
preferences. This can also be applied to matrimonial sites
for getting the personality of an individual’s interest.
Apart from this we can get the OCEAN traits report in the
form of radar plots that helps in analyzing ourselves.
5. SYSTEM DESIGN
The diagram in Fig-1 shows the architectural system view
of our proposed system that describes how the entire
system works. Initially, we train our model with data that
is an output file from a Facebook personality test
application [2] that gives around 10,000 status texts with
their corresponding trait values. Data that we require
may not contain the actual value or may contain incorrect
International Research Journal of Engineering and Technology (IRJET) e-ISSN:2395-0056
p-ISSN:2395-0072Volume : 06 Issue :04 | Apr2019 www.irjet.net
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 4501
values. So the cleaning is required for such dataset. There
can be redundant data as well as noisy data mixed with
the dataset. This is cleaned manually by filling average
value of the whole column after that we need to prepare
data for training.
Fig-1 : Architecture diagram
5.1 Dataset
The reason we have exclusively chosen Facebook because
it gives concrete huge data set and almost everyone these
days have a Facebook account. And also increased social
media activities these days may bring both beneficial and
harmful effects that needs to be carefully handled [1].
These are the reasons we have chosen Facebook as our
dataset.
Data pre-processing involves renaming, rescaling, binning
and so on. In our project, the raw data contains lot of
irrelevant words which is not useful for analysis, such
words are removed using TfidVectorizer [9](E.g.: is, for,
the etc.). Only the features which are required are
selected by omitting unwanted columns from the original
dataset.
After this we train the model with the data which is then
used to predict values. Once training is done now we need
to collect more data for testing. For that we are going to
access Facebook through chrome driver. We manually
give email id and password credentials required to login
to Facebook. Once we run our system our Facebook
account is logged in and all the friend’s status texts will be
parsed one by one. From this we create friends dictionary
containing all the status updates along with its date and
time of post. This data is stored in MongoDB database.
Using the trained data, the model creates pickle files of all
five traits that is helpful in predicting the values for the
testing data through regression. The main algorithm used
here is Random forest algorithm which is a supervised
machine learning approach which can perform both
regression and classification .It constructs decision trees
and decides the final output based on output of each
decision trees The input data is taken from Facebook and
is fitted into the model . Then we predict the
corresponding regression values for the status text
through our model .All the five traits will be given an
average regression value and is stored in the database.
These values are finally converted to percentile values as
we can easily visualize all the traits clearly.
And using these five trait’s percentile values finally we
create a radar plot that clearly visualizes the percentile of
all traits. Hence our system finally outputs the radar plot
report of each of our fiend that helps in predicting their
personality. The radar plot which is obtained as output for
one of the person is shown in fig-2.
Fig-2 Radar plot showing five personality trait percentile
6. CONCLUSION
A system like this clearly visualizes the personality of
each one of the friend on Facebook with radar plots which
is helpful in preventing many anti-social activities. Apart
from this system can be implemented as a sub module in
online shopping product recommendation systems,
matrimonial sites and also in hiring candidates by
recruiters.
International Research Journal of Engineering and Technology (IRJET) e-ISSN:2395-0056
p-ISSN:2395-0072Volume : 06 Issue :04 | Apr2019 www.irjet.net
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 4502
7. FUTURE ENHANCEMENT
We can further extend our implementation of personality
recognition to determine traits related to prepare for
future care needs of older adults as described in [8].
Using Personal Traits for Brand Preference Prediction
which is an important topic in marketing. This can also be
a future enhancement of our system as described in [9].
8. REFERENCES
[1] Ashish K. Tripathi “Personality Prediction with
Social Behavior by Analyzing Social Media Data”
Survey Department of Applied Computer Science and
Society University of Winnipeg 2008.
[2] Dejan Markovikj, Sonja Gievska, Michal Kosinski and
David Stillwell “Mining Facebook Data for Predictive
Personality Modeling” published in Association for
the Advancement of Artificial Intelligence in 2013.
[3] Jianguo Yu and Konstantin Markov “Deep learning
based personality recognition from Facebook status
updates” Published in IEEE 8th International
Conference on Awareness Science and Technology
(iCAST) 2017.
[4] Marie-Francine Moens, Martine De Cock, Golnoosh
Farnadi and Susana Zoghbi “Recognizing personality
traits using Facebook status updates” published IEEE
8th International Conference on Awareness Science
and technology 2017.
[5] Alireza Souri, Shafigheh Hosseinpour and Amir
Mosoud Rahmani “Personality classification based
on profiles of social networks’ users and the five-
factor model of personality” published in Human
Centric Computing and Information Science 2018.
[6] A. G. C. Wright, ‘‘Current directions in personality
science and the potential for advances through
computing,’’ IEEE Trans. Affect. Comput. vol. 5, no. 3,
pp. 292–296, Jul. 2014.
[7] J. Golbeck, C. Robles, and K. Turner, ‘‘Predicting
personality with social media,’’ in Proc. CHI Extended
Abstracts Human Factors Comput. Syst., Vancouver,
BC, Canada, 2011, pp. 253–262.
[8] Silvia Sorensen and Paul R duberstin “How Are
Personality Traits Related to Preparation for Future
Care Needs in Older Adults?” Published in J Gerontol
B Psychol Sci Soc Sci 2008.
[9] Chao Yang, Shimei Pan, Jalal Mahmud, Huahai Yang,
and Padmini Srinivasan “Using Personal Traits for
Brand Preference Prediction” published in
Proceedings of the 2015 Conference on Empirical
Methods in Natural Language Processing in 201

More Related Content

What's hot

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 cloningIJNSA Journal
 
Detection of cyber-bullying
Detection of cyber-bullying Detection of cyber-bullying
Detection of cyber-bullying Ziar Khan
 
Detecting the presence of cyberbullying using computer software
Detecting the presence of cyberbullying using computer softwareDetecting the presence of cyberbullying using computer software
Detecting the presence of cyberbullying using computer softwareAshish Arora
 
Comparative Study of Cyberbullying Detection using Different Machine Learning...
Comparative Study of Cyberbullying Detection using Different Machine Learning...Comparative Study of Cyberbullying Detection using Different Machine Learning...
Comparative Study of Cyberbullying Detection using Different Machine Learning...ijtsrd
 
Stabilization of Black Cotton Soil with Red Mud and Formulation of Linear Reg...
Stabilization of Black Cotton Soil with Red Mud and Formulation of Linear Reg...Stabilization of Black Cotton Soil with Red Mud and Formulation of Linear Reg...
Stabilization of Black Cotton Soil with Red Mud and Formulation of Linear Reg...IRJET Journal
 
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 ModelIJMER
 
Identification of inference attacks on private Information from Social Networks
Identification of inference attacks on private Information from Social NetworksIdentification of inference attacks on private Information from Social Networks
Identification of inference attacks on private Information from Social Networkseditorjournal
 
Integrated approach to detect spam in social media networks using hybrid feat...
Integrated approach to detect spam in social media networks using hybrid feat...Integrated approach to detect spam in social media networks using hybrid feat...
Integrated approach to detect spam in social media networks using hybrid feat...IJECEIAES
 
IRJET - Profanity Statistical Analyzer
 IRJET -  	  Profanity Statistical Analyzer IRJET -  	  Profanity Statistical Analyzer
IRJET - Profanity Statistical AnalyzerIRJET Journal
 
Presentation-Detecting Spammers on Social Networks
Presentation-Detecting Spammers on Social NetworksPresentation-Detecting Spammers on Social Networks
Presentation-Detecting Spammers on Social NetworksAshish Arora
 
A Community Detection and Recommendation System
A Community Detection and Recommendation SystemA Community Detection and Recommendation System
A Community Detection and Recommendation SystemIRJET Journal
 
投影片 1
投影片 1投影片 1
投影片 1butest
 
NE7012- SOCIAL NETWORK ANALYSIS
NE7012- SOCIAL NETWORK ANALYSISNE7012- SOCIAL NETWORK ANALYSIS
NE7012- SOCIAL NETWORK ANALYSISrathnaarul
 
Social Network Analysis based on MOOC's (Massive Open Online Classes)
Social Network Analysis based on MOOC's (Massive Open Online Classes)Social Network Analysis based on MOOC's (Massive Open Online Classes)
Social Network Analysis based on MOOC's (Massive Open Online Classes)ShankarPrasaadRajama
 
Rule based messege filtering and blacklist management for online social network
Rule based messege filtering and blacklist management for online social networkRule based messege filtering and blacklist management for online social network
Rule based messege filtering and blacklist management for online social networkeSAT Publishing House
 
An automatic filtering task in osn using content based approach
An automatic filtering task in osn using content based approachAn automatic filtering task in osn using content based approach
An automatic filtering task in osn using content based approachIAEME Publication
 
INFO4990_Hossain
INFO4990_HossainINFO4990_Hossain
INFO4990_Hossainwebuploader
 
Human Being Character Analysis from Their Social Networking Profiles
Human Being Character Analysis from Their Social Networking ProfilesHuman Being Character Analysis from Their Social Networking Profiles
Human Being Character Analysis from Their Social Networking ProfilesBiswaranjan Samal
 

What's hot (20)

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
 
Detection of cyber-bullying
Detection of cyber-bullying Detection of cyber-bullying
Detection of cyber-bullying
 
Detecting the presence of cyberbullying using computer software
Detecting the presence of cyberbullying using computer softwareDetecting the presence of cyberbullying using computer software
Detecting the presence of cyberbullying using computer software
 
Comparative Study of Cyberbullying Detection using Different Machine Learning...
Comparative Study of Cyberbullying Detection using Different Machine Learning...Comparative Study of Cyberbullying Detection using Different Machine Learning...
Comparative Study of Cyberbullying Detection using Different Machine Learning...
 
Stabilization of Black Cotton Soil with Red Mud and Formulation of Linear Reg...
Stabilization of Black Cotton Soil with Red Mud and Formulation of Linear Reg...Stabilization of Black Cotton Soil with Red Mud and Formulation of Linear Reg...
Stabilization of Black Cotton Soil with Red Mud and Formulation of Linear Reg...
 
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
 
Identification of inference attacks on private Information from Social Networks
Identification of inference attacks on private Information from Social NetworksIdentification of inference attacks on private Information from Social Networks
Identification of inference attacks on private Information from Social Networks
 
Integrated approach to detect spam in social media networks using hybrid feat...
Integrated approach to detect spam in social media networks using hybrid feat...Integrated approach to detect spam in social media networks using hybrid feat...
Integrated approach to detect spam in social media networks using hybrid feat...
 
IRJET - Profanity Statistical Analyzer
 IRJET -  	  Profanity Statistical Analyzer IRJET -  	  Profanity Statistical Analyzer
IRJET - Profanity Statistical Analyzer
 
Presentation-Detecting Spammers on Social Networks
Presentation-Detecting Spammers on Social NetworksPresentation-Detecting Spammers on Social Networks
Presentation-Detecting Spammers on Social Networks
 
A Community Detection and Recommendation System
A Community Detection and Recommendation SystemA Community Detection and Recommendation System
A Community Detection and Recommendation System
 
投影片 1
投影片 1投影片 1
投影片 1
 
NE7012- SOCIAL NETWORK ANALYSIS
NE7012- SOCIAL NETWORK ANALYSISNE7012- SOCIAL NETWORK ANALYSIS
NE7012- SOCIAL NETWORK ANALYSIS
 
Social Network Analysis based on MOOC's (Massive Open Online Classes)
Social Network Analysis based on MOOC's (Massive Open Online Classes)Social Network Analysis based on MOOC's (Massive Open Online Classes)
Social Network Analysis based on MOOC's (Massive Open Online Classes)
 
Final_report6
Final_report6Final_report6
Final_report6
 
Rule based messege filtering and blacklist management for online social network
Rule based messege filtering and blacklist management for online social networkRule based messege filtering and blacklist management for online social network
Rule based messege filtering and blacklist management for online social network
 
An automatic filtering task in osn using content based approach
An automatic filtering task in osn using content based approachAn automatic filtering task in osn using content based approach
An automatic filtering task in osn using content based approach
 
INFO4990_Hossain
INFO4990_HossainINFO4990_Hossain
INFO4990_Hossain
 
Spammer taxonomy using scientific approach
Spammer taxonomy using scientific approachSpammer taxonomy using scientific approach
Spammer taxonomy using scientific approach
 
Human Being Character Analysis from Their Social Networking Profiles
Human Being Character Analysis from Their Social Networking ProfilesHuman Being Character Analysis from Their Social Networking Profiles
Human Being Character Analysis from Their Social Networking Profiles
 

Similar to IRJET- Personality Recognition using Social Media Data

Personality Prediction with social media using Machine Learning
Personality Prediction with social media using Machine LearningPersonality Prediction with social media using Machine Learning
Personality Prediction with social media using Machine LearningIRJET Journal
 
Personality Prediction with social media using Machine Learning
Personality Prediction with social media using Machine LearningPersonality Prediction with social media using Machine Learning
Personality Prediction with social media using Machine LearningIRJET Journal
 
Approach for Enneagram personality detection for Twitter text: a case study
Approach for Enneagram personality detection for Twitter text: a case studyApproach for Enneagram personality detection for Twitter text: a case study
Approach for Enneagram personality detection for Twitter text: a case studyIJECEIAES
 
Predicting user behavior using data profiling and hidden Markov model
Predicting user behavior using data profiling and hidden Markov modelPredicting user behavior using data profiling and hidden Markov model
Predicting user behavior using data profiling and hidden Markov modelIJECEIAES
 
customer behavior analysis for social media
customer behavior analysis for social mediacustomer behavior analysis for social media
customer behavior analysis for social mediaINFOGAIN PUBLICATION
 
SENTIMENT ANALYSIS – SARCASM DETECTION USING MACHINE LEARNING
SENTIMENT ANALYSIS – SARCASM DETECTION USING MACHINE LEARNINGSENTIMENT ANALYSIS – SARCASM DETECTION USING MACHINE LEARNING
SENTIMENT ANALYSIS – SARCASM DETECTION USING MACHINE LEARNINGIRJET Journal
 
A Predictive Model using Personality Traits: A Survey
A Predictive Model using Personality Traits: A SurveyA Predictive Model using Personality Traits: A Survey
A Predictive Model using Personality Traits: A SurveyIRJET Journal
 
IJSRED-V2I2P09
IJSRED-V2I2P09IJSRED-V2I2P09
IJSRED-V2I2P09IJSRED
 
IRJET- Product Aspect Ranking
IRJET-  	  Product Aspect RankingIRJET-  	  Product Aspect Ranking
IRJET- Product Aspect RankingIRJET Journal
 
IIR 2017, Lugano Switzerland
IIR 2017, Lugano SwitzerlandIIR 2017, Lugano Switzerland
IIR 2017, Lugano SwitzerlandMarco Polignano
 
Data Collection Tool Used For Information About Individuals
Data Collection Tool Used For Information About IndividualsData Collection Tool Used For Information About Individuals
Data Collection Tool Used For Information About IndividualsChristy Hunt
 
IRJET - Unauthorized Terror Attack Tracking System using Web Usage Mining
IRJET - Unauthorized Terror Attack Tracking System using Web Usage MiningIRJET - Unauthorized Terror Attack Tracking System using Web Usage Mining
IRJET - Unauthorized Terror Attack Tracking System using Web Usage MiningIRJET Journal
 
A Review Paper on Analytic System Based on Prediction Analysis of Social Emot...
A Review Paper on Analytic System Based on Prediction Analysis of Social Emot...A Review Paper on Analytic System Based on Prediction Analysis of Social Emot...
A Review Paper on Analytic System Based on Prediction Analysis of Social Emot...ijtsrd
 
IRJET- Age Analysis using Face Recognition with Hybrid Algorithm
IRJET-  	  Age Analysis using Face Recognition with Hybrid AlgorithmIRJET-  	  Age Analysis using Face Recognition with Hybrid Algorithm
IRJET- Age Analysis using Face Recognition with Hybrid AlgorithmIRJET Journal
 
Product Analyst Advisor
Product Analyst AdvisorProduct Analyst Advisor
Product Analyst AdvisorIRJET Journal
 
IRJET - Social Network Stress Analysis using Word Embedding Technique
IRJET - Social Network Stress Analysis using Word Embedding TechniqueIRJET - Social Network Stress Analysis using Word Embedding Technique
IRJET - Social Network Stress Analysis using Word Embedding TechniqueIRJET Journal
 
IRJET - Detection of Drug Abuse using Social Media Mining
IRJET - Detection of Drug Abuse using Social Media MiningIRJET - Detection of Drug Abuse using Social Media Mining
IRJET - Detection of Drug Abuse using Social Media MiningIRJET Journal
 

Similar to IRJET- Personality Recognition using Social Media Data (20)

Personality Prediction with social media using Machine Learning
Personality Prediction with social media using Machine LearningPersonality Prediction with social media using Machine Learning
Personality Prediction with social media using Machine Learning
 
Personality Prediction with social media using Machine Learning
Personality Prediction with social media using Machine LearningPersonality Prediction with social media using Machine Learning
Personality Prediction with social media using Machine Learning
 
Approach for Enneagram personality detection for Twitter text: a case study
Approach for Enneagram personality detection for Twitter text: a case studyApproach for Enneagram personality detection for Twitter text: a case study
Approach for Enneagram personality detection for Twitter text: a case study
 
Predicting user behavior using data profiling and hidden Markov model
Predicting user behavior using data profiling and hidden Markov modelPredicting user behavior using data profiling and hidden Markov model
Predicting user behavior using data profiling and hidden Markov model
 
customer behavior analysis for social media
customer behavior analysis for social mediacustomer behavior analysis for social media
customer behavior analysis for social media
 
SENTIMENT ANALYSIS – SARCASM DETECTION USING MACHINE LEARNING
SENTIMENT ANALYSIS – SARCASM DETECTION USING MACHINE LEARNINGSENTIMENT ANALYSIS – SARCASM DETECTION USING MACHINE LEARNING
SENTIMENT ANALYSIS – SARCASM DETECTION USING MACHINE LEARNING
 
E017433538
E017433538E017433538
E017433538
 
A Predictive Model using Personality Traits: A Survey
A Predictive Model using Personality Traits: A SurveyA Predictive Model using Personality Traits: A Survey
A Predictive Model using Personality Traits: A Survey
 
F017433947
F017433947F017433947
F017433947
 
IJSRED-V2I2P09
IJSRED-V2I2P09IJSRED-V2I2P09
IJSRED-V2I2P09
 
Poster_final
Poster_finalPoster_final
Poster_final
 
IRJET- Product Aspect Ranking
IRJET-  	  Product Aspect RankingIRJET-  	  Product Aspect Ranking
IRJET- Product Aspect Ranking
 
IIR 2017, Lugano Switzerland
IIR 2017, Lugano SwitzerlandIIR 2017, Lugano Switzerland
IIR 2017, Lugano Switzerland
 
Data Collection Tool Used For Information About Individuals
Data Collection Tool Used For Information About IndividualsData Collection Tool Used For Information About Individuals
Data Collection Tool Used For Information About Individuals
 
IRJET - Unauthorized Terror Attack Tracking System using Web Usage Mining
IRJET - Unauthorized Terror Attack Tracking System using Web Usage MiningIRJET - Unauthorized Terror Attack Tracking System using Web Usage Mining
IRJET - Unauthorized Terror Attack Tracking System using Web Usage Mining
 
A Review Paper on Analytic System Based on Prediction Analysis of Social Emot...
A Review Paper on Analytic System Based on Prediction Analysis of Social Emot...A Review Paper on Analytic System Based on Prediction Analysis of Social Emot...
A Review Paper on Analytic System Based on Prediction Analysis of Social Emot...
 
IRJET- Age Analysis using Face Recognition with Hybrid Algorithm
IRJET-  	  Age Analysis using Face Recognition with Hybrid AlgorithmIRJET-  	  Age Analysis using Face Recognition with Hybrid Algorithm
IRJET- Age Analysis using Face Recognition with Hybrid Algorithm
 
Product Analyst Advisor
Product Analyst AdvisorProduct Analyst Advisor
Product Analyst Advisor
 
IRJET - Social Network Stress Analysis using Word Embedding Technique
IRJET - Social Network Stress Analysis using Word Embedding TechniqueIRJET - Social Network Stress Analysis using Word Embedding Technique
IRJET - Social Network Stress Analysis using Word Embedding Technique
 
IRJET - Detection of Drug Abuse using Social Media Mining
IRJET - Detection of Drug Abuse using Social Media MiningIRJET - Detection of Drug Abuse using Social Media Mining
IRJET - Detection of Drug Abuse using Social Media Mining
 

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

DATA ANALYTICS PPT definition usage example
DATA ANALYTICS PPT definition usage exampleDATA ANALYTICS PPT definition usage example
DATA ANALYTICS PPT definition usage examplePragyanshuParadkar1
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHC Sai Kiran
 
pipeline in computer architecture design
pipeline in computer architecture  designpipeline in computer architecture  design
pipeline in computer architecture designssuser87fa0c1
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxKartikeyaDwivedi3
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)dollysharma2066
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfAsst.prof M.Gokilavani
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...asadnawaz62
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvLewisJB
 

Recently uploaded (20)

Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
DATA ANALYTICS PPT definition usage example
DATA ANALYTICS PPT definition usage exampleDATA ANALYTICS PPT definition usage example
DATA ANALYTICS PPT definition usage example
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECH
 
pipeline in computer architecture design
pipeline in computer architecture  designpipeline in computer architecture  design
pipeline in computer architecture design
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptx
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvv
 
Design and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdfDesign and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdf
 

IRJET- Personality Recognition using Social Media Data

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN:2395-0056 p-ISSN:2395-0072Volume : 06 Issue :04 | Apr2019 www.irjet.net © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 4499 Personality Recognition using Social Media Data Medhavini Rao1, Pooja Jayant Kanchugar2, Pooja R3, Prakshitha M N4, Anitha R5 1,2,3,4Eight Semester, Dept. of CSE, The National Institute of Engineering, Mysore 5Professor, Dept. of CSE, The National Institute of Engineering, Mysore ---------------------------------------------------------------------***---------------------------------------------------------------------- Abstract - With the emerging technology, social media has also increased to a great extent. Social media is one of the platform for opinions and thoughts of an individual. People share their personal information on social media account. Social media mainly predict the personality of a person. Personality mainly accounts for individual differences in people. To reliably, validly, and efficiently recognize an individual's personality is a worthwhile goal; however, the traditional ways of personality assessment through self-report inventories or interviews conducted by psychologists are costly and not so useful and less commercial. This project proposes a method of Big Five personality recognition from Facebook data. It helps in the analysis of Facebook data and train the model using large datasets. Random Forest Regression is used to build the model for getting high accuracy. Firstly, we collected raw data by accessing Facebook directly through chrome extension, then the friend list will be accessed to review their status and posts. In the further step, the status and posts of each one in the friend list will be stored in MongoDB database as a dictionary. Then the data will be fitted to our model to train the model and then the model is tested for some more data. At last we visualize the results by plotting graphs. Key Words: Machine learning, Facebook, Personality Recognition, Big Five, Random Forest algorithm. 1. INTRODUCTION Online social networks nowadays has become popular in many ways for users to show their identity and connect and share information with one other through social networks. Facebook is the most popular social network. Personality describes the uniqueness of a person. One can understand others behavior on the basis of day-to- day observation of an individual’s underlying personality traits. Many researches in psychology suggested that the behavior and preferences can be explained to a great extent by underlying psychological constructs i.e. personality traits. Facebook profiles of users is the most important source of information. The study of personality can benefit Social Network analysis, Deception detection, Authorship attribution, Sentiment analysis. Personal information on social networking platforms render it possible to analyze the user’s behaviors and infer their personality traits on the web. It has become one of the most ubiquitous means of communication today. The most widely accepted model of personality is Big Five or five factor model mainly consist of Openness, Conscientiousness, Extroversion, Agreeableness, and Neuroticism. Openness is nothing but the measure of creativity, curiosity, imagination etc. Conscientiousness is how efficient, organized, responsible, and persevering a person is. Extroversion is to seek stimulation in external world and to express positive emotions. Agreeableness is maintaining positive social relations, friendly and cooperative. Neuroticism is tendency to experience mood swings and emotion such as guilt, anger, depression. We basically use big five approach because it has better performance and undergoes detailed analysis of an individual. The technique used in our proposed system is the machine learning approach based on social media activities. The earliest efforts mainly focused on Personality Recognition from written text which may be the handwriting of that person. The first pioneering work was done by Shlomo about 10 years ago , which extracted word categories and relative frequency of function words from 2236 written essays of 1200 students as the input of Support Vector Machines (SVM) to discriminate between students at the opposite extremes of Extraversion and Neuroticism. The same data set and approach were used by Mairesse to recognize individuals in the upper and lower half of the observed scores for all Big Five traits. They studied the effectiveness of different sets of textual features extracted from psychologically oriented text analysis tools (e.g. LIWC2) or psycholinguistic dictionary (e.g. MRC3), and found that the openness trait yields the best accuracy using SVM. In a separate study by Lee and Nass, interaction effects between user factors, and media factors on feelings of social presence were investigated. In a study by Saati it was found that extroverts tended to interact faster with the user interface than introverts. T. Correa concludes that extraversion and openness to experience are positively related to use of social applications on internet, emotional stability was negatively associated. 2. OBJECTIVES The main objective of this entire system is to analyze the personality of an individual based on social media activities. The study of personality is of central
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN:2395-0056 p-ISSN:2395-0072Volume : 06 Issue :04 | Apr2019 www.irjet.net © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 4500 importance in psychology, and personality recognition also benefits many other applications such as Social network analysis, Recommendation systems, Deception detection, Authorship attribution, Sentiment analysis/opinion mining and so on. With the development of various social media, modern computer science has become the real potential for advancing that endeavor. The rich digital traces and self-disclosed personal information on social networking platforms render it possible to analyze the user’s behaviors and infer their personality traits on the web, which has attracted much attention from different disciplines. Many data scientists use many different kinds of machine learning algorithms to discover patterns in big data. There are two groups to make predictions: supervised and unsupervised learning. Supervised learning is where you have input variables ‘a’ and an output variable ‘b’ and you use an algorithm to learn the mapping function from the input to the output b = f(a) . Unsupervised learning is where you only have input data ‘a’ and no corresponding output variables. Supervised are grouped into regression and classification. Regression is nothing but when the output variable is a real or continuous value such as “salary” or “weight”. Examples are Predicting age of a person etc. Classification is nothing but when the output variable is a category such as “red” or “blue” or “disease” and “no disease”. Examples are Predicting house price based on area. However in our project we have used Random forest algorithm for getting high accuracy. Random forest can used for both classification and the regression kind of problems. Random forest algorithm is a supervised classification algorithm. As the number of trees in the forest increases, accuracy also increases. Random Forest is one of the easy-to-use algorithm, because its default hyper parameters often produce a good prediction result. The number of hyper parameters is also not that high and they are easy to understand. Random forest algorithm mainly used in Banking, Medicine, Stock Market, E-commerce. 3. EXISTING SYSTEM Personality is considered as an important criteria in explaining human behaviors. Recognizing one’s personality has many advantages. It can be used in Deception detection, Recommendation systems and Sentimental analysis. The existing methods consists of various interviews or counseling by experts which is not economical. There are various other methods which can be used for personality recognition. Using Social media data, personality can be recognized as a system implemented in [4]. As proposed in, personality can be recognized using data of social media like Facebook, Twitter, Instagram etc. In a China, a blog called Sina Weibo is used. The main drawback of existing system is scalability. This system has considered 113 features and 994 entries using Big Five personality (OCEAN model). 3.1 Drawbacks of existing systems  The traditional methods like counseling and personal interviews by experts are expensive. The number of data entries used is less and it is static. It is developed on a Chinese blog which many people aren’t aware of and less number of people are using it. 4. PROPOSED SYSTEM The proposed system proposes a methodology of Big five personality recognition from Facebook environments as described in [3] with machine learning approach of supervised learning called Random forest. Nowadays the interest of scientific fields is shifting towards personality recognition that helps in automated analysis of a person during the hiring process, providing the shopping recommendations for online customers and so on .The system fetches the Facebook status text of the friend list and performs regression methodology on it so that it can get the percentile report of each OCEAN model trait of each individual in the friends list .This is visualized using a radar plot that gives a clear understanding of the personality of that person. 4.1 Advantages  Many a times, the manual interview process for hiring process may not provide a clear understanding of his personality and also since most of the people today hold a social media account we can perform their five trait prediction and hire them based on the requirement. This system can also be implemented for the online shopping recommendation systems that help in determining the personality of a person and then recommending them with the suitable products based on their interests and preferences. This can also be applied to matrimonial sites for getting the personality of an individual’s interest. Apart from this we can get the OCEAN traits report in the form of radar plots that helps in analyzing ourselves. 5. SYSTEM DESIGN The diagram in Fig-1 shows the architectural system view of our proposed system that describes how the entire system works. Initially, we train our model with data that is an output file from a Facebook personality test application [2] that gives around 10,000 status texts with their corresponding trait values. Data that we require may not contain the actual value or may contain incorrect
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN:2395-0056 p-ISSN:2395-0072Volume : 06 Issue :04 | Apr2019 www.irjet.net © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 4501 values. So the cleaning is required for such dataset. There can be redundant data as well as noisy data mixed with the dataset. This is cleaned manually by filling average value of the whole column after that we need to prepare data for training. Fig-1 : Architecture diagram 5.1 Dataset The reason we have exclusively chosen Facebook because it gives concrete huge data set and almost everyone these days have a Facebook account. And also increased social media activities these days may bring both beneficial and harmful effects that needs to be carefully handled [1]. These are the reasons we have chosen Facebook as our dataset. Data pre-processing involves renaming, rescaling, binning and so on. In our project, the raw data contains lot of irrelevant words which is not useful for analysis, such words are removed using TfidVectorizer [9](E.g.: is, for, the etc.). Only the features which are required are selected by omitting unwanted columns from the original dataset. After this we train the model with the data which is then used to predict values. Once training is done now we need to collect more data for testing. For that we are going to access Facebook through chrome driver. We manually give email id and password credentials required to login to Facebook. Once we run our system our Facebook account is logged in and all the friend’s status texts will be parsed one by one. From this we create friends dictionary containing all the status updates along with its date and time of post. This data is stored in MongoDB database. Using the trained data, the model creates pickle files of all five traits that is helpful in predicting the values for the testing data through regression. The main algorithm used here is Random forest algorithm which is a supervised machine learning approach which can perform both regression and classification .It constructs decision trees and decides the final output based on output of each decision trees The input data is taken from Facebook and is fitted into the model . Then we predict the corresponding regression values for the status text through our model .All the five traits will be given an average regression value and is stored in the database. These values are finally converted to percentile values as we can easily visualize all the traits clearly. And using these five trait’s percentile values finally we create a radar plot that clearly visualizes the percentile of all traits. Hence our system finally outputs the radar plot report of each of our fiend that helps in predicting their personality. The radar plot which is obtained as output for one of the person is shown in fig-2. Fig-2 Radar plot showing five personality trait percentile 6. CONCLUSION A system like this clearly visualizes the personality of each one of the friend on Facebook with radar plots which is helpful in preventing many anti-social activities. Apart from this system can be implemented as a sub module in online shopping product recommendation systems, matrimonial sites and also in hiring candidates by recruiters.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN:2395-0056 p-ISSN:2395-0072Volume : 06 Issue :04 | Apr2019 www.irjet.net © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 4502 7. FUTURE ENHANCEMENT We can further extend our implementation of personality recognition to determine traits related to prepare for future care needs of older adults as described in [8]. Using Personal Traits for Brand Preference Prediction which is an important topic in marketing. This can also be a future enhancement of our system as described in [9]. 8. REFERENCES [1] Ashish K. Tripathi “Personality Prediction with Social Behavior by Analyzing Social Media Data” Survey Department of Applied Computer Science and Society University of Winnipeg 2008. [2] Dejan Markovikj, Sonja Gievska, Michal Kosinski and David Stillwell “Mining Facebook Data for Predictive Personality Modeling” published in Association for the Advancement of Artificial Intelligence in 2013. [3] Jianguo Yu and Konstantin Markov “Deep learning based personality recognition from Facebook status updates” Published in IEEE 8th International Conference on Awareness Science and Technology (iCAST) 2017. [4] Marie-Francine Moens, Martine De Cock, Golnoosh Farnadi and Susana Zoghbi “Recognizing personality traits using Facebook status updates” published IEEE 8th International Conference on Awareness Science and technology 2017. [5] Alireza Souri, Shafigheh Hosseinpour and Amir Mosoud Rahmani “Personality classification based on profiles of social networks’ users and the five- factor model of personality” published in Human Centric Computing and Information Science 2018. [6] A. G. C. Wright, ‘‘Current directions in personality science and the potential for advances through computing,’’ IEEE Trans. Affect. Comput. vol. 5, no. 3, pp. 292–296, Jul. 2014. [7] J. Golbeck, C. Robles, and K. Turner, ‘‘Predicting personality with social media,’’ in Proc. CHI Extended Abstracts Human Factors Comput. Syst., Vancouver, BC, Canada, 2011, pp. 253–262. [8] Silvia Sorensen and Paul R duberstin “How Are Personality Traits Related to Preparation for Future Care Needs in Older Adults?” Published in J Gerontol B Psychol Sci Soc Sci 2008. [9] Chao Yang, Shimei Pan, Jalal Mahmud, Huahai Yang, and Padmini Srinivasan “Using Personal Traits for Brand Preference Prediction” published in Proceedings of the 2015 Conference on Empirical Methods in Natural Language Processing in 201