Aspect-Based Sentiment Analysis of Movie Reviews on Discussion Boards

1 minute read

Thet, Tun Thura, Jin-Cheon Na, and Christopher S. G. Khoo. Aspect-Based Sentiment Analysis of Movie Reviews on Discussion Boards. Journal of Information Science 36, no. 6 (December 1, 2010): 823—48.

This paper presents an interesting approach for computing the sentiment of movie aspects. The authors use dependency parsing to split sentences into independent clauses and then apply an extensive set of manually drafted sentiment calculation rules that leverage the sentence's part of speech tags to compute the per clause sentiment.

Method

  1. movie aspects: domain experts manually collected words indicating movie aspects such as overall, cast, director, story, scene, music from a corpus of 520 movie reviews.
  2. sentiment lexicons:
    • generic sentiment lexicon: SentiWordNet
    • domain specific sentiment lexicon: (i) use the information gain measure to obtain opinion words that are strongly associated with positive or negative reviews; (ii) manual examination of the candidate sentiment terms and creation of the domain specific lexicon which comprises approximately 100 terms.
  3. sentences are dependency parsed and then divided into independent clauses (i.e. sub-trees containing single statements).
  4. computation of the clause sentiment based on calculation rules that consider the words' part of speech tags and negation.
  5. aspect sentiment: the sentiment score for each review aspect is calculated by computing the average sentiment of all clauses in which terms referencing to that particular aspect are mentioned.

Evaluation

Experiments conducted on 1000 manually annotated sentences (and the corresponding movie aspects) indicate that the presented method yields very good results and clearly outperforms the baseline approaches. The authors also provide an error analysis which identifies the following error classes:

  • 51% of all errors - limitations of the sentiment calculation rules
  • 26% - indirect expressions containing misleading phrases (e.g. "well deserved 1/10")
  • 18% - incorrect prior sentiment scores (e.g. satisfied is a negative word in SentiWordNet but considered positive in movie reviews) or incorrect prior scores due to ambiguities (e.g. miss).
  • 5% - spelling errors