Introduction to Sentiment Analysis

Size: px
Start display at page:

Download "Introduction to Sentiment Analysis"

Transcription

1 Introduction to Sentiment Analysis Machine Learning and Modelling for Social Networks Lloyd Sanders, Olivia Woolley, Iza Moize, Nino Antulov-Fantulin D-GESS: Computational Social Science

2 Overview What is Sentiment Analysis? Classifying Sentiment Feature Creation and Selection Use Case: Public health and Vaccine Sentiment References and Reading 2

3 What is Sentiment Analysis Sentiment analysis is the operation of understanding the intent or emotion behind a given piece of text Positive/Negative Polarity assigned to text The Sentiment space is being expanded to accommodate more than a single dimension Classification with respect to emotion: Joy, frustration, sadness are occurring Classification with respect to stance (either for, or against a position) is similar to, but not entirely the same as sentiment Sentiment analysis is also known as opinion mining 3

4 What is Sentiment Analysis Sentiment analysis is the operation of understanding the intent or emotion behind a given piece of text Sentiment Analysis is a branch of computer science, and overlaps heavily with Machine Learning, and Computational Linguistics Why? One seeks to understand the general opinion across many documents within a corpus (e.g., all tweets relating to a given brand). This is labor intensive, so we use ML to automatically label documents via classifier through a labeled dataset (supervised learning) 4

5 Sentiment examples in the wild Business Reviews Yelp.com 5

6 Sentiment examples in the wild Product Reviews Amazon.com 6

7 Emotional Arcs of Fiction Vonnegut posited in his Master s thesis that there were 6 basic shapes to a story Rags to Riches (rise) Riches to Rags (fall) Man in a hole (fall then rise) Icarus (rise then fall) Cinderella (rise then fall then rise) Oedipus (fall then rise then fall) A team used sentiment analysis to verify this with over 1700 English fiction novels [Reagan et al. 2016] 7

8 Emotional Arcs of Fiction Rags to Riches Man in Hole Cinderella Riches to Rags Icarus Oedipus 8 Reagan et al. 2016

9 DeepBreath 9

10 Why is it useful? Sentiment could be considered a latent variable in social behavior. Measuring and understanding this behavior, could lead to better understanding of social phenomena. Sentiment analysis often correlates well with real world observables. For commercial aspects: Brand Awareness Stock fluctuations and public opinion [Bollen et al. 2010] Health related: Vaccine sentiment vs. coverage [Later] Public safety: Situational awareness in mass emergencies via Twitter [Verma et al. 2011] 10

11 Sentiment Classification is Difficult Sentiment is very domain specific, and also temporally specific w.r.t. social media. Different contexts, alter polarity of different words (e.g.: unpredictable : movie review good, driving = bad) Slang Movie is bad ass Sentiment has multiple levels: Document or message (tweet/sms) level Term/Aspect level The coffee was amazing, but the atmosphere was dull Word level / within word level (severity of sentiment per word) Negations, sloppy spelling/structure, compound the difficulty 11

12 Classifying Sentiment: A Recipe Gather a large quantity of data the more the better Construct a labeled set of data into your classes (e.g. positive/negative/neutral) Split your set into training/test sets Construct your features Train Classifier (SVM, Naïve Bayes, Ensemble Methods, Neural Nets) Assess accuracy Let loose on a the full set 12

13 Labeling Training Data Put junk in, get junk out It s important to have well labeled data, and there are a number of ways of doing this Self-annotation can lead to biases. Crowd sourcing annotation mturk.com crowdflower.com 13

14 Labeling Training Data Put junk in, get junk out Pseudo-labeling data can have a net positive effect This can be achieved, for example on social media, through hashtags, or emoticons/emojis [Kouloumpis et al. 2011, Davidov et al., 2010] 14

15 Constructing text features Common practice one can use a bag of words technique which discards structure, but does incorporate word count Each document in the corpus is disassembled into a bag of words, represented as a vector Can use TF-IDF on this bag of words vector [see Iza s lecture on Big Data]. Your bag of words vector per document will be sparse, can leverage that in computation. ~d i =[x 1,x 2,,x n ] T 15

16 N-grams N-grams are a simple technique to capture document structure When considering words: a unigram is a single word, a bigram is a string of two words Bigrams can begin to capture negations such as this food was not_good, but will miss out on this food was not_very_good (less severe) One can construct skip n-grams, e.g.: not_*_good N-grams are also possible with characters: good is a 4- gram, happy is a 5-gram char 16

17 Negations and how to deal with them This food was not good A negation word can flip the polarity on an entire sentence. Bigrams, or Trigrams go some way towards this, as mentioned before. How else can one take these into account? Preprocess text to take negations into account: not good => good_neg 17

18 Sentiment Lexicons There are many publically available Sentiment (and Emotion) lexicons available. These can be used as a complementary feature construction for your classifiers (especially for out of vocabulary words those not in your corpus). General Inquirer [ SentiWordNet [ Bing Liu s lexicons [ 18

19 Feature Vectors for short informal texts: a bird s eye view Here is a sample of the features used by a state of the art Twitter sentiment classifier: Word ngrams (up to 4), skip ngrams w/ 1 missing word Character ngrams up to 5 All caps: number of words in capitals Number of hashtags Number of continuous punctuation marks, either exclamation or question or mixed. Also whether last char contains one of these. Presence of emoticons 19

20 Feature Vectors: a bird s eye view Here is a sample of the features used by a state of the art Twitter sentiment classifier: Number of elongated words (one character repeated more than twice: raaaaaad ) Normalization: URLS to userids Part-of-Speech tagged tweets: number of occurrences of each POS tag. 20

21 Classifying your sentiment Sentiment is a classification problem Typically people have used Naïve Bayes or Support Vector Machines (SVM) in the past [Mohammad et al. 2013] Artificial Neural Nets are also becoming more popular now [Nogueira dos Santos & Gatti, 2014] 21

22 Sentiment Accuracy How does one construct a baseline for accuracy? As always, we refer to better than chance baseline In the context of pos/neg/neu, they are often not split evenly. One can use the maximum likelihood for each class: If pos is 70% of the classes, then choose that. For multiple classes, as a single measure, it is common to use the macro F-score. For binary case, the go to is: AUC ROC 22

23 Ablation Experiments of features Kiritchenko et al

24 Use case: Public Health and Vaccine Sentiment The authors wanted to investigate the correlation between sentiment on vaccines with respect to vaccine uptake. Usual survey methods are expensive, so they took a new approach in using Twitter. The took the model further to understand if such sentiments held in similar clustering within real-world communities, what outbreaks would look like. 24

25 Synopsis Analyzed over 100k users from twitter over 6 months to assess how sentiment of a new (2009) H1N1 vaccine correlated with actual coverage of the vaccine. 478k tweets (320k relevant to H1N1). 256k neutral, 27k negative, 36k positive (imbalanced data set). Salathe & Khandelwal [2011] 25

26 Sentiment-Coverage Correlation Due to the correlation, we see that there is promise in this technique to be used as a cost-effective probing tool to stage vaccine interventions Salathe & Khandelwal [2011] 26

27 Methodology of the Classifier Built a webapp which was used by 64 volunteers Each student was given 1400 tweets (with heavy overlap w.r.t. other students tweet sets). 47k tweets were rated. Each tweet labeled by a majority decision. The high confidence* test set numbered 630. These were those rated 44 times. Built an ensemble classifier: Naïve Bayes (pos/neg) and Max. Entropy (irrelevant/neu) Accuracy was % 27

28 Social Network Homophily and Herd Immunity Created a directed graph of 40k nodes, 685k edges. Nodes are users with either a pos/neg sentiment score. A directed edge is created if a user follows another user. Measured the assortative mixing of users with a qualitatively similar opinion on vaccination (homophily) 0<r<=1: nodes are mostly connected to nodes of the same type -1<= r <0: nodes are connected to the opposite type r = 0.144: People with the same vacc. opinion are likely to be connected. Sentiment gives a measure of info. flow. 28

29 Consequences for disease spread 29

30 References and Reading Working with Text Data, User Guide from Sci-kit Learn Sentiment Analysis of Short Informal Texts; Kiritchenko et al., Journal of Artificial Intelligence Research 2014 Stance and Sentiment in Tweets, Mohammad et al., arxiv, 2016 Assessing vaccination sentiments with online social media: Implications for infectious disease dynamics and control, PLoS Comp. Bio The emotional arcs of stories are dominated by six basic shapes, Reagan et al., arxiv 2016 Survey on Aspect-level sentiment analysis, Schouten and Frasnicar, IEEE, 2016 Twitter mood predicts the stock market, Bollen, Mao, and Zeng, 2010 Deep Convolutional Neural Networks for Sentiment Analysis of Short Texts, Cicero Nogueira dos Santos & Maira Gatti,

31 Tweet test set High confidence test set: Tweets had to have a percentage polarity of over 50% or could be agreed on by the two authors 31

Social Network Data Analysis for User Stress Discovery and Recovery

Social Network Data Analysis for User Stress Discovery and Recovery ISSN:2348-2079 Volume-6 Issue-2 International Journal of Intellectual Advancements and Research in Engineering Computations Social Network Data Analysis for User Stress Discovery and Recovery 1 R. Ragavi,

More information

Words: Evaluative, Emotional, Colourful, Musical!!

Words: Evaluative, Emotional, Colourful, Musical!! Words: Evaluative, Emotional, Colourful, Musical!! Saif Mohammad National Research Council Canada Includes joint work with Peter Turney, Tony Yang, Svetlana Kiritchenko, Xiaodan Zhu, Hannah Davis, Colin

More information

Asthma Surveillance Using Social Media Data

Asthma Surveillance Using Social Media Data Asthma Surveillance Using Social Media Data Wenli Zhang 1, Sudha Ram 1, Mark Burkart 2, Max Williams 2, and Yolande Pengetnze 2 University of Arizona 1, PCCI-Parkland Center for Clinical Innovation 2 {wenlizhang,

More information

An assistive application identifying emotional state and executing a methodical healing process for depressive individuals.

An assistive application identifying emotional state and executing a methodical healing process for depressive individuals. An assistive application identifying emotional state and executing a methodical healing process for depressive individuals. Bandara G.M.M.B.O bhanukab@gmail.com Godawita B.M.D.T tharu9363@gmail.com Gunathilaka

More information

Rumor Detection on Twitter with Tree-structured Recursive Neural Networks

Rumor Detection on Twitter with Tree-structured Recursive Neural Networks 1 Rumor Detection on Twitter with Tree-structured Recursive Neural Networks Jing Ma 1, Wei Gao 2, Kam-Fai Wong 1,3 1 The Chinese University of Hong Kong 2 Victoria University of Wellington, New Zealand

More information

May All Your Wishes Come True: A Study of Wishes and How to Recognize Them

May All Your Wishes Come True: A Study of Wishes and How to Recognize Them May All Your Wishes Come True: A Study of Wishes and How to Recognize Them Andrew B. Goldberg, Nathanael Fillmore, David Andrzejewski, Zhiting Xu, Bryan Gibson & Xiaojin Zhu Computer Sciences Department

More information

Motivation. Motivation. Motivation. Finding Deceptive Opinion Spam by Any Stretch of the Imagination

Motivation. Motivation. Motivation. Finding Deceptive Opinion Spam by Any Stretch of the Imagination Finding Deceptive Opinion Spam by Any Stretch of the Imagination Myle Ott, 1 Yejin Choi, 1 Claire Cardie, 1 and Jeff Hancock 2! Dept. of Computer Science, 1 Communication 2! Cornell University, Ithaca,

More information

Use of Twitter to Assess Sentiment toward Waterpipe Tobacco Smoking

Use of Twitter to Assess Sentiment toward Waterpipe Tobacco Smoking @ColditzJB #SBM2016 Use of Twitter to Assess Sentiment toward Waterpipe Tobacco Smoking Jason B. Colditz, MEd Maharsi Naidu, Class of 2018 Noah A. Smith, PhD Joel Welling, PhD Brian A. Primack, MD, PhD

More information

From Sentiment to Emotion Analysis in Social Networks

From Sentiment to Emotion Analysis in Social Networks From Sentiment to Emotion Analysis in Social Networks Jie Tang Department of Computer Science and Technology Tsinghua University, China 1 From Info. Space to Social Space Info. Space! Revolutionary changes!

More information

This is a repository copy of Measuring the effect of public health campaigns on Twitter: the case of World Autism Awareness Day.

This is a repository copy of Measuring the effect of public health campaigns on Twitter: the case of World Autism Awareness Day. This is a repository copy of Measuring the effect of public health campaigns on Twitter: the case of World Autism Awareness Day. White Rose Research Online URL for this paper: http://eprints.whiterose.ac.uk/127215/

More information

Sentiment Analysis of Reviews: Should we analyze writer intentions or reader perceptions?

Sentiment Analysis of Reviews: Should we analyze writer intentions or reader perceptions? Sentiment Analysis of Reviews: Should we analyze writer intentions or reader perceptions? Isa Maks and Piek Vossen Vu University, Faculty of Arts De Boelelaan 1105, 1081 HV Amsterdam e.maks@vu.nl, p.vossen@vu.nl

More information

Rating prediction on Amazon Fine Foods Reviews

Rating prediction on Amazon Fine Foods Reviews Rating prediction on Amazon Fine Foods Reviews Chen Zheng University of California,San Diego chz022@ucsd.edu Ye Zhang University of California,San Diego yez033@ucsd.edu Yikun Huang University of California,San

More information

Emotion-Aware Machines

Emotion-Aware Machines Emotion-Aware Machines Saif Mohammad, Senior Research Officer National Research Council Canada 1 Emotion-Aware Machines Saif Mohammad National Research Council Canada 2 What does it mean for a machine

More information

NUIG at EmoInt-2017: BiLSTM and SVR Ensemble to Detect Emotion Intensity

NUIG at EmoInt-2017: BiLSTM and SVR Ensemble to Detect Emotion Intensity NUIG at EmoInt-2017: BiLSTM and SVR Ensemble to Detect Emotion Intensity Vladimir Andryushechkin, Ian David Wood and James O Neill Insight Centre for Data Analytics, National University of Ireland, Galway

More information

Jia Jia Tsinghua University 26/09/2017

Jia Jia Tsinghua University 26/09/2017 Jia Jia jjia@tsinghua.edu.cn Tsinghua University 26/09/2017 Stage 1: Online detection of mental health problems Stress Detection via Harvesting Social Media Detecting Stress Based on Social Interactions

More information

Generalizing Dependency Features for Opinion Mining

Generalizing Dependency Features for Opinion Mining Generalizing Dependency Features for Mahesh Joshi 1 and Carolyn Rosé 1,2 1 Language Technologies Institute 2 Human-Computer Interaction Institute Carnegie Mellon University ACL-IJCNLP 2009 Short Papers

More information

IDENTIFYING STRESS BASED ON COMMUNICATIONS IN SOCIAL NETWORKS

IDENTIFYING STRESS BASED ON COMMUNICATIONS IN SOCIAL NETWORKS IDENTIFYING STRESS BASED ON COMMUNICATIONS IN SOCIAL NETWORKS 1 Manimegalai. C and 2 Prakash Narayanan. C manimegalaic153@gmail.com and cprakashmca@gmail.com 1PG Student and 2 Assistant Professor, Department

More information

Not All Moods are Created Equal! Exploring Human Emotional States in Social Media

Not All Moods are Created Equal! Exploring Human Emotional States in Social Media Not All Moods are Created Equal! Exploring Human Emotional States in Social Media Munmun De Choudhury Scott Counts Michael Gamon Microsoft Research, Redmond {munmund, counts, mgamon}@microsoft.com [Ekman,

More information

Confluence: Conformity Influence in Large Social Networks

Confluence: Conformity Influence in Large Social Networks Confluence: Conformity Influence in Large Social Networks Jie Tang *, Sen Wu *, and Jimeng Sun + * Tsinghua University + IBM TJ Watson Research Center 1 Conformity Conformity is the act of matching attitudes,

More information

Jia Jia Tsinghua University 25/01/2018

Jia Jia Tsinghua University 25/01/2018 Jia Jia jjia@tsinghua.edu.cn Tsinghua University 25/01/2018 Mental health is a level of psychological wellbeing, or an absence of mental illness. The WHO states that the well-being of an individual is

More information

Signals from Text: Sentiment, Intent, Emotion, Deception

Signals from Text: Sentiment, Intent, Emotion, Deception Signals from Text: Sentiment, Intent, Emotion, Deception Stephen Pulman TheySay Ltd, www.theysay.io and Dept. of Computer Science, Oxford University stephen.pulman@cs.ox.ac.uk March 9, 2017 Text Analytics

More information

EMOTEX: Detecting Emotions in Twitter Messages

EMOTEX: Detecting Emotions in Twitter Messages EMOTEX: Detecting Emotions in Twitter Messages Maryam Hasan, Elke Rundensteiner, Emmanuel Agu Computer Science Department, Worcester Polytechnic Institute mhasan@wpi.edu, rundenst@cs.wpi.edu, emmanuel@cs.wpi.edu

More information

TWITTER SENTIMENT ANALYSIS TO STUDY ASSOCIATION BETWEEN FOOD HABIT AND DIABETES. A Thesis by. Nazila Massoudian

TWITTER SENTIMENT ANALYSIS TO STUDY ASSOCIATION BETWEEN FOOD HABIT AND DIABETES. A Thesis by. Nazila Massoudian TWITTER SENTIMENT ANALYSIS TO STUDY ASSOCIATION BETWEEN FOOD HABIT AND DIABETES A Thesis by Nazila Massoudian Bachelor of Science, Tehran Azad University of Engineering and Technology, 2006 Submitted to

More information

Filippo Chiarello, Andrea Bonaccorsi, Gualtiero Fantoni, Giacomo Ossola, Andrea Cimino and Felice Dell Orletta

Filippo Chiarello, Andrea Bonaccorsi, Gualtiero Fantoni, Giacomo Ossola, Andrea Cimino and Felice Dell Orletta Technical Sentiment Analysis Measuring Advantages and Drawbacks of New Products Using Social Media Filippo Chiarello, Andrea Bonaccorsi, Gualtiero Fantoni, Giacomo Ossola, Andrea Cimino and Felice Dell

More information

Predicting Depression via Social Media

Predicting Depression via Social Media Predicting Depression via Social Media Munmun De Choudhury, Michael Gamon, Scott Counts and Eric Horvitz Martin Leginus Depression Lifetime prevalence varies from 3% in Japan to 17% in the USA Sometimes,

More information

Deep Learning based Information Extraction Framework on Chinese Electronic Health Records

Deep Learning based Information Extraction Framework on Chinese Electronic Health Records Deep Learning based Information Extraction Framework on Chinese Electronic Health Records Bing Tian Yong Zhang Kaixin Liu Chunxiao Xing RIIT, Beijing National Research Center for Information Science and

More information

Correlation Analysis between Sentiment of Tweet Messages and Re-tweet Activity on Twitter

Correlation Analysis between Sentiment of Tweet Messages and Re-tweet Activity on Twitter Correlation Analysis between Sentiment of Tweet Messages and Re-tweet Activity on Twitter Wonmook Jung, Hongchan Roh and Sanghyun Park Department of Computer Science, Yonsei University 134, Shinchon-Dong,

More information

Discovering and Understanding Self-harm Images in Social Media. Neil O Hare, MFSec Bucharest, Romania, June 6 th, 2017

Discovering and Understanding Self-harm Images in Social Media. Neil O Hare, MFSec Bucharest, Romania, June 6 th, 2017 Discovering and Understanding Self-harm Images in Social Media Neil O Hare, MFSec 2017. Bucharest, Romania, June 6 th, 2017 Who am I? PhD from Dublin City University, 2007. Multimedia Search Currently

More information

Using Social Media to Understand Cyber Attack Behavior

Using Social Media to Understand Cyber Attack Behavior Using Social Media to Understand Cyber Attack Behavior Amy Sliva 1(&), Kai Shu 2, and Huan Liu 2 1 Charles River Analytics, 625 Mount Auburn Street, Cambridge MA 02138, USA asliva@cra.com 2 School of Computing,

More information

Lecture 20: CS 5306 / INFO 5306: Crowdsourcing and Human Computation

Lecture 20: CS 5306 / INFO 5306: Crowdsourcing and Human Computation Lecture 20: CS 5306 / INFO 5306: Crowdsourcing and Human Computation Today at 4:15pm in Gates G01 Title: Predicting Human Visual Memory using Deep Learning Speaker: Aditya Khosla, MIT Used deep learning

More information

Looking for Subjectivity in Medical Discharge Summaries The Obesity NLP i2b2 Challenge (2008)

Looking for Subjectivity in Medical Discharge Summaries The Obesity NLP i2b2 Challenge (2008) Looking for Subjectivity in Medical Discharge Summaries The Obesity NLP i2b2 Challenge (2008) Michael Roylance and Nicholas Waltner Tuesday 3 rd June, 2014 Michael Roylance and Nicholas Waltner Looking

More information

UACH-INAOE participation at erisk2017

UACH-INAOE participation at erisk2017 UACH-INAOE participation at erisk2017 Alan A. Farías-Anzaldúa 1, Manuel Montes-y-Gómez 2 A. Pastor López-Monroy 3, and Luis C. González-Gurrola 1 1 Universidad Autonóma de Chihuahua, Mexico alan.alexis.fa@gmail.com,

More information

Key Conversation Trends and Patterns about Electronic Cigarettes on Social Media

Key Conversation Trends and Patterns about Electronic Cigarettes on Social Media INFORMS 2016: Text Mining in Health and Security Analytics Control Number 5677 Key Conversation Trends and Patterns about Electronic Cigarettes on Social Media Wenli Zhang, Sudha Ram INSITE: Center for

More information

A Computational Approach to Automatic Prediction of Drunk-Texting

A Computational Approach to Automatic Prediction of Drunk-Texting A Computational Approach to Automatic Prediction of Drunk-Texting Aditya Joshi 1,2,3 Abhijit Mishra 1 Balamurali AR 4 Pushpak Bhattacharyya 1 Mark James Carman 2 1 IIT Bombay, India, 2 Monash University,

More information

When Twitter meets Foursquare: Tweet Location Prediction using Foursquare

When Twitter meets Foursquare: Tweet Location Prediction using Foursquare When Twitter meets Foursquare: Tweet Location Prediction using Foursquare Kisung Lee, Raghu K. Ganti, Mudhakar Srivatsa, Ling Liu College of Computing, Georgia Institute of Technology, Atlanta, GA USA

More information

The Emotion Analysis on the Chinese Comments from News portal and Forums Jiawei Shen1, 2, Wenjun Wang1, 2 and Yueheng Sun1, 2, a

The Emotion Analysis on the Chinese Comments from News portal and Forums Jiawei Shen1, 2, Wenjun Wang1, 2 and Yueheng Sun1, 2, a 2nd International Conference on Economics, Social Science, Arts, Education and Management Engineering (ESSAEME 216) The Emotion Analysis on the Chinese Comments from News portal and Forums Jiawei Shen1,

More information

Fuzzy Rule Based Systems for Gender Classification from Blog Data

Fuzzy Rule Based Systems for Gender Classification from Blog Data Fuzzy Rule Based Systems for Gender Classification from Blog Data Han Liu 1 and Mihaela Cocea 2 1 School of Computer Science and Informatics, Cardiff University Queens Buildings, 5 The Parade, Cardiff,

More information

Modeling Annotator Rationales with Application to Pneumonia Classification

Modeling Annotator Rationales with Application to Pneumonia Classification Modeling Annotator Rationales with Application to Pneumonia Classification Michael Tepper 1, Heather L. Evans 3, Fei Xia 1,2, Meliha Yetisgen-Yildiz 2,1 1 Department of Linguistics, 2 Biomedical and Health

More information

Assessing Vaccination Sentiments with Online Social Media: Implications for Infectious Disease Dynamics and Control

Assessing Vaccination Sentiments with Online Social Media: Implications for Infectious Disease Dynamics and Control Assessing Vaccination Sentiments with Online Social Media: Implications for Infectious Disease Dynamics and Control Marcel Salathé* & Shashank Khandelwal Center for Infectious Disease Dynamics, Department

More information

Lecture 10: POS Tagging Review. LING 1330/2330: Introduction to Computational Linguistics Na-Rae Han

Lecture 10: POS Tagging Review. LING 1330/2330: Introduction to Computational Linguistics Na-Rae Han Lecture 10: POS Tagging Review LING 1330/2330: Introduction to Computational Linguistics Na-Rae Han Overview Part-of-speech tagging Language and Computers, Ch. 3.4 Tokenization, POS tagging NLTK Book Ch.5

More information

Social Data and College Statistics

Social Data and College Statistics Social Data and College Statistics Sean Choi Stanford University yo2seol@stanford.edu Elena Grewal Stanford University etgrewal@stanford.edu Kai Wen Stanford University kaiwen@stanford.edu ABSTRACT We

More information

Author s Traits Prediction on Twitter Data using Content Based Approach

Author s Traits Prediction on Twitter Data using Content Based Approach Author s Traits Prediction on Twitter Data using Content Based Approach Notebook for PAN at CLEF 2015 Fahad Najib, Waqas Arshad Cheema, Rao Muhammad Adeel Nawab Department of Computer Science, COMSATS

More information

Enhance micro-blogging recommendations of posts with an homophily-based graph

Enhance micro-blogging recommendations of posts with an homophily-based graph Enhance micro-blogging recommendations of posts with an homophily-based graph Quentin Grossetti 1,2 Supervised by Cédric du Mouza 2, Camelia Constantin 1 and Nicolas Travers 2 1 LIP6 - Université Pierre

More information

The Ordinal Nature of Emotions. Georgios N. Yannakakis, Roddy Cowie and Carlos Busso

The Ordinal Nature of Emotions. Georgios N. Yannakakis, Roddy Cowie and Carlos Busso The Ordinal Nature of Emotions Georgios N. Yannakakis, Roddy Cowie and Carlos Busso The story It seems that a rank-based FeelTrace yields higher inter-rater agreement Indeed, FeelTrace should actually

More information

Chapter 12 Conclusions and Outlook

Chapter 12 Conclusions and Outlook Chapter 12 Conclusions and Outlook In this book research in clinical text mining from the early days in 1970 up to now (2017) has been compiled. This book provided information on paper based patient record

More information

CPSC81 Final Paper: Facial Expression Recognition Using CNNs

CPSC81 Final Paper: Facial Expression Recognition Using CNNs CPSC81 Final Paper: Facial Expression Recognition Using CNNs Luis Ceballos Swarthmore College, 500 College Ave., Swarthmore, PA 19081 USA Sarah Wallace Swarthmore College, 500 College Ave., Swarthmore,

More information

Examining Patterns of Influenza Vaccination in Social Media

Examining Patterns of Influenza Vaccination in Social Media Examining Patterns of Influenza Vaccination in Social Media Xiaolei Huang 1, Michael C. Smith 2, Michael J. Paul 1, Dmytro Ryzhkov 1, Sandra C. Quinn 3, David A. Broniatowski 2, Mark Dredze 4 1 University

More information

EMOTION CLASSIFICATION: HOW DOES AN AUTOMATED SYSTEM COMPARE TO NAÏVE HUMAN CODERS?

EMOTION CLASSIFICATION: HOW DOES AN AUTOMATED SYSTEM COMPARE TO NAÏVE HUMAN CODERS? EMOTION CLASSIFICATION: HOW DOES AN AUTOMATED SYSTEM COMPARE TO NAÏVE HUMAN CODERS? Sefik Emre Eskimez, Kenneth Imade, Na Yang, Melissa Sturge- Apple, Zhiyao Duan, Wendi Heinzelman University of Rochester,

More information

Predicting Breast Cancer Survivability Rates

Predicting Breast Cancer Survivability Rates Predicting Breast Cancer Survivability Rates For data collected from Saudi Arabia Registries Ghofran Othoum 1 and Wadee Al-Halabi 2 1 Computer Science, Effat University, Jeddah, Saudi Arabia 2 Computer

More information

Identifying Adverse Drug Events from Patient Social Media: A Case Study for Diabetes

Identifying Adverse Drug Events from Patient Social Media: A Case Study for Diabetes Identifying Adverse Drug Events from Patient Social Media: A Case Study for Diabetes Authors: Xiao Liu, Department of Management Information Systems, University of Arizona Hsinchun Chen, Department of

More information

An Improved Algorithm To Predict Recurrence Of Breast Cancer

An Improved Algorithm To Predict Recurrence Of Breast Cancer An Improved Algorithm To Predict Recurrence Of Breast Cancer Umang Agrawal 1, Ass. Prof. Ishan K Rajani 2 1 M.E Computer Engineer, Silver Oak College of Engineering & Technology, Gujarat, India. 2 Assistant

More information

Extracting geographic locations from the literature for virus phylogeography using supervised and distant supervision methods

Extracting geographic locations from the literature for virus phylogeography using supervised and distant supervision methods Extracting geographic locations from the literature for virus phylogeography using supervised and distant supervision methods D. Weissenbacher 1, A. Sarker 2, T. Tahsin 1, G. Gonzalez 2 and M. Scotch 1

More information

Social Media Mining for Toxicovigilance

Social Media Mining for Toxicovigilance Social Media Mining for Toxicovigilance Automatic Monitoring of Prescription Medication Abuse from Twitter Abeed Sarker (@sarkerabeed) Health Language Processing Lab Research Associate Department of Biostatistics,

More information

Emotion Recognition using a Cauchy Naive Bayes Classifier

Emotion Recognition using a Cauchy Naive Bayes Classifier Emotion Recognition using a Cauchy Naive Bayes Classifier Abstract Recognizing human facial expression and emotion by computer is an interesting and challenging problem. In this paper we propose a method

More information

PSYCHOLOGICAL STRESS DETECTION FROM CROSS-MEDIA MICROBLOG DATA USING DEEP SPARSE NEURAL NETWORK

PSYCHOLOGICAL STRESS DETECTION FROM CROSS-MEDIA MICROBLOG DATA USING DEEP SPARSE NEURAL NETWORK PSYCHOLOGICAL STRESS DETECTION FROM CROSS-MEDIA MICROBLOG DATA USING DEEP SPARSE NEURAL NETWORK Huijie Lin 1,2, Jia Jia 1,2, Quan Guo 3, Yuanyuan Xue 1, Jie Huang 1, Lianhong Cai 1,2, Ling Feng 1 1 Department

More information

Exploiting Ordinality in Predicting Star Reviews

Exploiting Ordinality in Predicting Star Reviews Exploiting Ordinality in Predicting Star Reviews Alim Virani UBC - Computer Science alim.virani@gmail.com Chris Cameron UBC - Computer Science cchris13@cs.ubc.ca Abstract Automatically evaluating the sentiment

More information

Multi Parametric Approach Using Fuzzification On Heart Disease Analysis Upasana Juneja #1, Deepti #2 *

Multi Parametric Approach Using Fuzzification On Heart Disease Analysis Upasana Juneja #1, Deepti #2 * Multi Parametric Approach Using Fuzzification On Heart Disease Analysis Upasana Juneja #1, Deepti #2 * Department of CSE, Kurukshetra University, India 1 upasana_jdkps@yahoo.com Abstract : The aim of this

More information

Word2Vec and Doc2Vec in Unsupervised Sentiment Analysis of Clinical Discharge Summaries

Word2Vec and Doc2Vec in Unsupervised Sentiment Analysis of Clinical Discharge Summaries Word2Vec and Doc2Vec in Unsupervised Sentiment Analysis of Clinical Discharge Summaries Qufei Chen University of Ottawa qchen037@uottawa.ca Marina Sokolova IBDA@Dalhousie University and University of Ottawa

More information

Learning from Online Health Communities. Noémie Elhadad

Learning from Online Health Communities. Noémie Elhadad Learning from Online Health Communities Noémie Elhadad noemie@dbmi.columbia.edu Apps/tools for health consumers & patients iphone health apps A (not social) tracking tool xkcd.com Online Health Communities

More information

Studying the Dark Triad of Personality through Twitter Behavior

Studying the Dark Triad of Personality through Twitter Behavior Studying the Dark Triad of Personality through Twitter Behavior Daniel Preoţiuc-Pietro Jordan Carpenter, Salvatore Giorgi, Lyle Ungar Positive Psychology Center Computer and Information Science University

More information

arxiv: v1 [cs.lg] 4 Feb 2019

arxiv: v1 [cs.lg] 4 Feb 2019 Machine Learning for Seizure Type Classification: Setting the benchmark Subhrajit Roy [000 0002 6072 5500], Umar Asif [0000 0001 5209 7084], Jianbin Tang [0000 0001 5440 0796], and Stefan Harrer [0000

More information

Stacked Gender Prediction from Tweet Texts and Images

Stacked Gender Prediction from Tweet Texts and Images Stacked Gender Prediction from Tweet Texts and Images Notebook for PAN at CLEF 2018 Giovanni Ciccone, Arthur Sultan,, Léa Laporte, Előd Egyed-Zsigmond, Alaa Alhamzeh,, and Michael Granitzer * Université

More information

Big Data and Sentiment Quantification: Analytical Tools and Outcomes

Big Data and Sentiment Quantification: Analytical Tools and Outcomes Big Data and Sentiment Quantification: Analytical Tools and Outcomes Fabrizio Sebastiani Istituto di Scienza e Tecnologie dell Informazione Consiglio Nazionale delle Ricerche 56124 Pisa, IT E-mail: fabrizio.sebastiani@isti.cnr.it

More information

Analysis of Emotion Recognition using Facial Expressions, Speech and Multimodal Information

Analysis of Emotion Recognition using Facial Expressions, Speech and Multimodal Information Analysis of Emotion Recognition using Facial Expressions, Speech and Multimodal Information C. Busso, Z. Deng, S. Yildirim, M. Bulut, C. M. Lee, A. Kazemzadeh, S. Lee, U. Neumann, S. Narayanan Emotion

More information

arxiv: v1 [cs.cy] 21 May 2017

arxiv: v1 [cs.cy] 21 May 2017 Characteristics of On-time and Late Reward Delivery Projects Thanh Tran Department of Computer Science Utah State University, Logan, UT 84322 thanh.tran@aggiemail.usu.edu Kyumin Lee Department of Computer

More information

READ-BIOMED-SS: ADVERSE DRUG REACTION CLASSIFICATION OF MICROBLOGS USING EMOTIONAL AND CONCEPTUAL ENRICHMENT

READ-BIOMED-SS: ADVERSE DRUG REACTION CLASSIFICATION OF MICROBLOGS USING EMOTIONAL AND CONCEPTUAL ENRICHMENT READ-BIOMED-SS: ADVERSE DRUG REACTION CLASSIFICATION OF MICROBLOGS USING EMOTIONAL AND CONCEPTUAL ENRICHMENT BAHADORREZA OFOGHI 1, SAMIN SIDDIQUI 1, and KARIN VERSPOOR 1,2 1 Department of Computing and

More information

Emergence of Things Felt: Harnessing the. Semantic Space of Facebook Feeling Tags

Emergence of Things Felt: Harnessing the. Semantic Space of Facebook Feeling Tags Emergence of Things Felt: Harnessing the Semantic Space of Facebook Feeling Tags Completed Research Paper Chris Zimmerman Computational Social Science Lab ITM- Copenhagen Business School Howitzvej 60,

More information

Prediction of Average and Perceived Polarity in Online Journalism

Prediction of Average and Perceived Polarity in Online Journalism Prediction of Average and Perceived Polarity in Online Journalism Albert Chu, Kensen Shi, Catherine Wong Abstract We predicted the average and perceived journalistic objectivity in online news articles

More information

Available online at ScienceDirect. Procedia Computer Science 70 (2015 ) Vinay Kumar Jain a, Shishir Kumar b

Available online at   ScienceDirect. Procedia Computer Science 70 (2015 ) Vinay Kumar Jain a, Shishir Kumar b Available online at wwwsciencedirectcom ScienceDirect Procedia Computer Science 70 (2015 ) 801 807 4th International Conference on Eco-friendly Computing and Communication Systems, ICECCS 2015 An Effective

More information

International Journal of Computer Science Trends and Technology (IJCST) Volume 5 Issue 1, Jan Feb 2017

International Journal of Computer Science Trends and Technology (IJCST) Volume 5 Issue 1, Jan Feb 2017 RESEARCH ARTICLE Classification of Cancer Dataset in Data Mining Algorithms Using R Tool P.Dhivyapriya [1], Dr.S.Sivakumar [2] Research Scholar [1], Assistant professor [2] Department of Computer Science

More information

WEB MINING IN CLASSIFYING YOUTH EMOTIONS

WEB MINING IN CLASSIFYING YOUTH EMOTIONS Malaysian Journal of Computing, 3 (1): 1 11, 2018 Copyright UiTM Press eissn: 2600-8238 online WEB MINING IN CLASSIFYING YOUTH EMOTIONS Zura Izlita Razak 1, Shuzlina Abdul-Rahman 2, Sofianita Mutalib 3

More information

Reader s Emotion Prediction Based on Partitioned Latent Dirichlet Allocation Model

Reader s Emotion Prediction Based on Partitioned Latent Dirichlet Allocation Model Reader s Emotion Prediction Based on Partitioned Latent Dirichlet Allocation Model Ruifeng Xu, Chengtian Zou, Jun Xu Key Laboratory of Network Oriented Intelligent Computation, Shenzhen Graduate School,

More information

Textual Emotion Processing From Event Analysis

Textual Emotion Processing From Event Analysis Textual Emotion Processing From Event Analysis Chu-Ren Huang, Ying Chen *, Sophia Yat Mei Lee Department of Chinese and Bilingual Studies * Department of Computer Engineering The Hong Kong Polytechnic

More information

Skin cancer reorganization and classification with deep neural network

Skin cancer reorganization and classification with deep neural network Skin cancer reorganization and classification with deep neural network Hao Chang 1 1. Department of Genetics, Yale University School of Medicine 2. Email: changhao86@gmail.com Abstract As one kind of skin

More information

THE ANALYTICS EDGE. Intelligence, Happiness, and Health x The Analytics Edge

THE ANALYTICS EDGE. Intelligence, Happiness, and Health x The Analytics Edge THE ANALYTICS EDGE Intelligence, Happiness, and Health 15.071x The Analytics Edge Data is Powerful and Everywhere 2.7 Zettabytes of electronic data exist in the world today 2,700,000,000,000,000,000,000

More information

Utilizing Posterior Probability for Race-composite Age Estimation

Utilizing Posterior Probability for Race-composite Age Estimation Utilizing Posterior Probability for Race-composite Age Estimation Early Applications to MORPH-II Benjamin Yip NSF-REU in Statistical Data Mining and Machine Learning for Computer Vision and Pattern Recognition

More information

Emotion Detection on Twitter Data using Knowledge Base Approach

Emotion Detection on Twitter Data using Knowledge Base Approach Emotion Detection on Twitter Data using Knowledge Base Approach Srinivasu Badugu, PhD Associate Professor Dept. of Computer Science Engineering Stanley College of Engineering and Technology for Women Hyderabad,

More information

GfK Verein. Detecting Emotions from Voice

GfK Verein. Detecting Emotions from Voice GfK Verein Detecting Emotions from Voice Respondents willingness to complete questionnaires declines But it doesn t necessarily mean that consumers have nothing to say about products or brands: GfK Verein

More information

TOPIC ONTOLOGIES OF THE SLOVENE BLOGOSPHERE: A GENDER PERSPECTIVE

TOPIC ONTOLOGIES OF THE SLOVENE BLOGOSPHERE: A GENDER PERSPECTIVE TOPIC ONTOLOGIES OF THE SLOVENE BLOGOSPHERE: A GENDER PERSPECTIVE Iza Škrjanec 1, Senja Pollak 2 1 Jožef Stefan International Postgraduate School, Ljubljana 2 Jožef Stefan Institute, Ljubljana Faculty

More information

Feature Engineering for Depression Detection in Social Media

Feature Engineering for Depression Detection in Social Media Maxim Stankevich, Vadim Isakov, Dmitry Devyatkin and Ivan Smirnov Institute for Systems Analysis, Federal Research Center Computer Science and Control of RAS, Moscow, Russian Federation Keywords: Abstract:

More information

INTRODUCTION TO MACHINE LEARNING. Decision tree learning

INTRODUCTION TO MACHINE LEARNING. Decision tree learning INTRODUCTION TO MACHINE LEARNING Decision tree learning Task of classification Automatically assign class to observations with features Observation: vector of features, with a class Automatically assign

More information

Referring Expressions & Alternate Views of Summarization. Ling 573 Systems and Applications May 24, 2016

Referring Expressions & Alternate Views of Summarization. Ling 573 Systems and Applications May 24, 2016 Referring Expressions & Alternate Views of Summarization Ling 573 Systems and Applications May 24, 2016 Content realization: Referring expressions Roadmap Alternate views of summarization: Dimensions of

More information

Applied Machine Learning, Lecture 11: Ethical and legal considerations; domain effects and domain adaptation

Applied Machine Learning, Lecture 11: Ethical and legal considerations; domain effects and domain adaptation Applied Machine Learning, Lecture 11: Ethical and legal considerations; domain effects and domain adaptation Richard Johansson including some slides borrowed from Barbara Plank overview introduction bias

More information

Use of Porter Stemming Algorithm and SVM for Emotion Extraction from News Headlines

Use of Porter Stemming Algorithm and SVM for Emotion Extraction from News Headlines Use of Porter Stemming Algorithm and SVM for Emotion Extraction from News Headlines Chaitali G. Patil Sandip S. Patil Abstract Abstract - Emotions play an essential role in social interactions, performs

More information

Analyzing Spammers Social Networks for Fun and Profit

Analyzing Spammers Social Networks for Fun and Profit Chao Yang Robert Harkreader Jialong Zhang Seungwon Shin Guofei Gu Texas A&M University Analyzing Spammers Social Networks for Fun and Profit A Case Study of Cyber Criminal Ecosystem on Twitter Presentation:

More information

UniNE at CLEF 2015: Author Profiling

UniNE at CLEF 2015: Author Profiling UniNE at CLEF 2015: Author Profiling Notebook for PAN at CLEF 2015 Mirco Kocher University of Neuchâtel rue Emile Argand 11 2000 Neuchâtel, Switzerland Mirco.Kocher@unine.ch Abstract. This paper describes

More information

Detecting Suicidal Ideation in Chinese Microblogs with Psychological Lexicons

Detecting Suicidal Ideation in Chinese Microblogs with Psychological Lexicons Detecting Suicidal Ideation in Chinese Microblogs with Psychological Lexicons Xiaolei Huang 1,2 Lei Zhang 1 Tianli Liu 3 David Chiu 4 Xin Li 2* Tingshao Zhu 1* 1 Institute of Psychology, Chinese Academy

More information

MASC: Automatic Sleep Stage Classification Based on Brain and Myoelectric Signals

MASC: Automatic Sleep Stage Classification Based on Brain and Myoelectric Signals HDMM 2017, April 22nd, 2017 MASC: Automatic Sleep Stage Classification Based on Brain and Myoelectric Signals Yuta Suzuki Makito Sato Hiroaki Shiokawa Masashi Yanagisawa Hiroyuki Kitagawa Graduate School

More information

From Once Upon a Time to Happily Ever After: Tracking Emotions in Books and Mail! Saif Mohammad! National Research Council Canada!

From Once Upon a Time to Happily Ever After: Tracking Emotions in Books and Mail! Saif Mohammad! National Research Council Canada! From Once Upon a Time to Happily Ever After: Tracking Emotions in Books and Mail! Saif Mohammad! National Research Council Canada! Road Map!!" Motivation and background!!" Emotion Lexicon!!" Analysis of

More information

Modeling the Use of Space for Pointing in American Sign Language Animation

Modeling the Use of Space for Pointing in American Sign Language Animation Modeling the Use of Space for Pointing in American Sign Language Animation Jigar Gohel, Sedeeq Al-khazraji, Matt Huenerfauth Rochester Institute of Technology, Golisano College of Computing and Information

More information

The use of Topic Modeling to Analyze Open-Ended Survey Items

The use of Topic Modeling to Analyze Open-Ended Survey Items The use of Topic Modeling to Analyze Open-Ended Survey Items W. Holmes Finch Maria E. Hernández Finch Constance E. McIntosh Claire Braun Ball State University Open ended survey items Researchers making

More information

Annotating Temporal Relations to Determine the Onset of Psychosis Symptoms

Annotating Temporal Relations to Determine the Onset of Psychosis Symptoms Annotating Temporal Relations to Determine the Onset of Psychosis Symptoms Natalia Viani, PhD IoPPN, King s College London Introduction: clinical use-case For patients with schizophrenia, longer durations

More information

Loose Tweets: An Analysis of Privacy Leaks on Twitter

Loose Tweets: An Analysis of Privacy Leaks on Twitter Loose Tweets: An Analysis of Privacy Leaks on Twitter Huina Mao, Xin Shuai, Apu Kapadia WPES 2011 Presented by Luam C. Totti on May 9, 2012 Motivation 65 million tweets every day. How many contain sensitive

More information

Annotation and Retrieval System Using Confabulation Model for ImageCLEF2011 Photo Annotation

Annotation and Retrieval System Using Confabulation Model for ImageCLEF2011 Photo Annotation Annotation and Retrieval System Using Confabulation Model for ImageCLEF2011 Photo Annotation Ryo Izawa, Naoki Motohashi, and Tomohiro Takagi Department of Computer Science Meiji University 1-1-1 Higashimita,

More information

Case Studies of Signed Networks

Case Studies of Signed Networks Case Studies of Signed Networks Christopher Wang December 10, 2014 Abstract Many studies on signed social networks focus on predicting the different relationships between users. However this prediction

More information

Edge Based Grid Super-Imposition for Crowd Emotion Recognition

Edge Based Grid Super-Imposition for Crowd Emotion Recognition Edge Based Grid Super-Imposition for Crowd Emotion Recognition Amol S Patwardhan 1 1Senior Researcher, VIT, University of Mumbai, 400037, India ---------------------------------------------------------------------***---------------------------------------------------------------------

More information

Reading personality from blogs An evaluation of the ESCADA system

Reading personality from blogs An evaluation of the ESCADA system Reading personality from blogs An evaluation of the ESCADA system Abstract The ESCADA system is a shallow textual understanding system capable of detecting high-level patterns of affective communication.

More information

arxiv: v1 [cs.cl] 4 Aug 2017

arxiv: v1 [cs.cl] 4 Aug 2017 Hashtag Healthcare: From Tweets to Mental Health Journals Using Deep Transfer Learning Benjamin Shickel 1,a, Martin Heesacker 2,b, Sherry Benton 3,c, and Parisa Rashidi 4,d arxiv:1708.01372v1 [cs.cl] 4

More information

Understanding Consumer Experience with ACT-R

Understanding Consumer Experience with ACT-R Understanding Consumer Experience with ACT-R Alessandro Oltramari 1,2 (work done in collaboration with Francesco Patt 2 and Paolo Panizza 2 ) 1 Carnegie Mellon University, CyLab (CS Department) 2 B-Sm@rk

More information