wiki:private/NlpInPracticeCourse/OpinionSentiment

Version 26 (modified by Ales Horak, 7 years ago) (diff)

--

Opinion mining, sentiment analysis

IA161 Advanced NLP Course?, Course Guarantee: Aleš Horák

Prepared by: Zuzana Nevěřilová

State of the Art

Sentiment analysis can be seen as a text categorization task (i.e. is the writer's opinion on a discussed topic X or Y?). It consists of detection of the topic (which can be easy in focused reviews) and detection of the sentiment (which is generally difficult). Opinions are sometimes expressed in a very subtle manner (e.g. the sentence How could anyone sit through this movie? contains no negative word) [3]. The sentiments are usually simply classified by their polarity (positive, negative) but they can be recognized more in depth (e.g. strongly negative). Recognized opinions are also subject to summarization (e.g. how many people like this new iPhone design?).

References

  1. Bing Liu. Sentiment Analysis and Opinion Mining. Synthesis Lectures on Human Language Technologies. 2012, 5(1): 1-167. DOI: 10.2200/s00416ed1v01y201204hlt016. Draft version available at http://www.cs.uic.edu/~liub/FBS/SentimentAnalysis-and-OpinionMining.pdf
  2. Bing Liu. Sentiment Analysis Tutorial. AAAI-2011, August 8, 2011. Slides available at http://www.cs.uic.edu/~liub/FBS/Sentiment-Analysis-tutorial-AAAI-2011.pdf
  3. Bo Pang, Lillian Lee, and Shivakumar Vaithyanathan, Thumbs up? Sentiment Classification using Machine Learning Techniques, Proceedings of EMNLP 2002. http://www.cs.cornell.edu/home/llee/papers/sentiment.pdf
  4. Liviu P. Dinu and Iulia Iuga. The Naive Bayes classifier in opinion mining: In search of the best feature set. In Alexander Gelbukh, editor, Computational Linguistics and Intelligent Text Processing, volume 7181 of Lecture Notes in Computer Science, pages 556–567. Springer Berlin Heidelberg, 2012.

Bing Liu's References: http://www.cs.uic.edu/~liub/FBS/AAAI-2011-tutorial-references.pdf

Practical Session

Czech Sentiment Analysis

In this workshop, we try several methods for opinion mining. First, we will train a classifier on real Czech data from Seznam.cz (thank you for the data, Seznam.cz guys!).

Requirements: python, NLTK module

Files: reviews.csv, reviews_desamb.csv, reviews_czaccent.csv, reviews_czaccent_desamb.csv, classify.py

  1. Create <YOUR_FILE>, a text file named ia161-UCO-01.txt where UCO is your university ID.
  2. Open reviews.csv, observe column meanings (Ack. to Karel Votruba, Karel.Votruba@firma.seznam.cz):
    1. shop ID
    2. positive comment
    3. negative comment
    4. price/delivery rating
    5. communication rating
    6. goods/content rating
    7. package/return rating
    8. complaints procedure rating
  3. Run classify.py.
    PYTHONIOENCODING=UTF-8 python classify.py
    
  4. What the most informative features? Do they make sense? Write most informative features to <YOUR_FILE> and mark them with + or - depending on whether they make sense. Example (In the example, we can see that the first feature makes sense while the second does not.):
    • peníze +
    • s -
  5. Open classify.py, read the code, uncomment print statements, observe the results.
  6. Why the classification is not very good even though the accuracy is over 95 %? Particularly, why the last sentence is not correctly classified? Write your answer at the end of <YOUR_FILE>. Feel free to discuss it with the group.
  7. Think of improvements in feature extraction. Currently, the program takes only words as features. Add another feature, i.e. modify the function document_features().

Sentiment analysis in English

Second, we try the Stanford Core NLP Sentiment Pipeline.

Requirements: Java 8, python, gigabytes of memory

module add jdk this adds Java 8, you can check it when typing java -version

  1. Download Stanford Core NLP from http://nlp.stanford.edu/software/corenlp.shtml, unzip it.
  1. Try it: e.g.
    java -cp "stanford-corenlp-full-2017-06-09/*" -mx5g \
        edu.stanford.nlp.sentiment.SentimentPipeline -stdin
    
    or
    java -cp "stanford-corenlp-full-2017-06-09/*" -mx5g \
        edu.stanford.nlp.sentiment.SentimentPipeline \
        -file book-reviews.txt
    

The file book-reviews.txt is available.

  1. In how many classes does Stanford Core NLP classify the sentences? Write it in <YOUR_FILE>. Write example of a wrong classification.

Upload <YOUR_FILE>

Do not forget to upload your resulting file to the homework vault (odevzdávárna)?.

Attachments (4)

Download all attachments as: .zip