0
votes
1answer
70 views

KNN classifier sentiment analysis vs category analysis precision

I have implemented the KNN classifier in java and I got a strange result. If I do a sentiment analysis on a dataset example amazon books review I got 55% precision. From 100 test document 55 correctly ...
0
votes
0answers
53 views

Strange Predictions in generated by AdaBoost.HM

I'm programming a Sentiment Analysis Algorithm that uses an classification algorithm called AdaBoost.HM. My project's mentor said that I can one of the following AdaBoost: ...
5
votes
6answers
305 views

Bucketing sentences by mood

Let's start with a simple problem. Let's say that I have a 350 char sentence and would like to bucket the sentence into either a "Good mood" bucket or a "Bad mood" bucket. What would be the best way ...
2
votes
2answers
518 views

How to implement TF_IDF feature weighting with Naive Bayes

I'm trying to implement the naive Bayes classifier for sentiment analysis. I plan to use the TF-IDF weighting measure. I'm just a little stuck now. NB generally uses the word(feature) frequency to ...