0

I would like to perform an unsupervised sentiment analysis on the reviews posted by customers on different product web-page. Most of the online resources use supervised methods and the examples/tutorials always have a labelled training data-set.

My objective is not to just deduce the polarity of the review but also do content/subjective analysis. Any online implementation or suggest high level approach for this ?

Krishnendu
  • 125
  • 3
  • 13

2 Answers2

0

One unsupervised approach you can take is word vector embedding along with k-means clustering. Here's an example in Python http://brandonrose.org/clustering

Adnan S
  • 1,852
  • 1
  • 14
  • 19
0

I know this is 3 years later but since there is no accepted answer imma answer it.

My objective is not to just deduce the polarity of the review but also do content/subjective analysis. You can do just this with the help of a library called TextBlob. Here is a link to an article where it is mentioned how to get polarity and subjectivity from a string using TextBlob.

spectre
  • 717
  • 7
  • 21