Akcora et al, SOMA 2010

From Cohen Courses
Revision as of 01:15, 4 February 2011 by Reyyan (talk | contribs)
Jump to navigationJump to search

Citation

Cuneyt Gurcan Akcora, Murat Ali Bayir, Murat Demirbas, Hakan Ferhatosmanoglu, "Identifying BreakPoints in Public Opinion", SOMA 2010, SIGKDD Workshop on Social Media Analytics, Washington DC, USA.

Online version

Upinion

Summary

The aim of this paper is to identify breakpoints in public opinion by capturing trends of public opinion from twitter data. The authors approach to this opinion detection problem by using vector space models.

Methodology

After some observations, the authors claim that the emotion pattern and word pattern of tweets change as a result of a change in public opinion. With this aim in mind, authors developed an Emotion Corpus (Upinion) to detect emotions in tweets.

Two methods are used to detect opinions

  • Vector Space Model : A binary vector has been created for each tweet. Each class of the Emotion Corpus is represented as a dimension in the vector and the value of each dimension is determined by the existence of any emotion word from the related class in the tweet. Centroid of vectors are calculated to represent an interval. Cosine similarity is applied to centroid vectors to find the opinion similarity between two intervals.
  • Set Space Model : Each time interval is represented by a single document which is the union of tweets posted in that particular time interval. Jaccard similarity is used to find the similarity between two intervals.

The authors combine these two methods to detect a change and report a breakpoint.


The algorithm takes a written review as an input. First it assigns a POS tag to each word in the review to identify adjective or adverb phrases in the input review. They have used PMI-IR algorithm to estimate the semantic orientation of a phrase. The Pointwise Mutual Information (PMI) between two words and is defined as follow:

where is the probability that and co-occur. They have defined the semantic orientation of a phrase as follow:

We can modify the above definition to obtain the following formula:

where operator NEAR means that the two phrases should be appeared close to each other in the corpus. Using the above formula they have calculated the average semantic orientation for a review. They have shown that the value of average semantic orientation for phrases in the items that are tagged as "recommended" by the users are usually positive and those that are tagged as "not recommended" are usually negative.

Experimental Result

This approach was fairly successful on a range of review-classification tasks: it achieved accuracy of between 65% and 85% in predicting an author-assigned "recommended" flag for Epinions ratings for eight diverse products, ranging from cars to movies. Many later writers used several key ideas from the paper, including: treating polarity prediction as a document-classification problem; classifying documents based on likely-to-be-informative phrases; and using unsupervised or semi-supervised learning methods.

Related papers

The widely cited Pang et al EMNLP 2002 paper was influenced by this paper - but considers supervised learning techniques. The choice of movie reviews as the domain was suggested by the (relatively) poor performance of Turney's method on movies.

An interesting follow-up paper is Turney and Littman, TOIS 2003 which focuses on evaluation of the technique of using PMI for predicting the semantic orientation of words.