NLP: Qualitatively “positive” vs “negative” sentence

后端 未结 2 567
独厮守ぢ
独厮守ぢ 2020-12-07 19:21

I need your help in determining the best approach for analyzing industry-specific sentences (i.e. movie reviews) for \"positive\" vs \"negative\". I\'ve seen libraries such

2条回答
  •  暖寄归人
    2020-12-07 19:55

    Some approaches to sentiment analysis use strategies popular on other text classification tasks. The most common being transforming your film review into a word vector, and feeding it into a classifier algorithm as training data. Most popular data mining packages can help you here. You could have a look at this tutorial on sentiment classification illustrating how to do an experiment using the open source RapidMiner toolkit.

    Incidentally, there is a good data set made available for research purposes related to detecting opinion on film reviews. It is based on IMDB user reviews, and you can check many related research work on the area and how they use the data set.

    Its worth bearing in mind that the effectiveness of these methods can only be judged from a statistical viewpoint, so you can pretty much assume there will be misclassifications and cases where opinion is hard to detect. As already noticed in this thread, detecting things like irony and sarcasm can be very difficult indeed.

提交回复
热议问题