Nick.Lee
Nick.Lee

Reputation: 1

Stanford NLP core Sentiment Analysis using Naive Bayes and SVM classifierJava

Hi I am new to Sentiment Analysis and I am currently using StanfordNLP core api. I am able to get sentiments from sentences, positive, neutral and negative. Is there any examples I could follow in using the different classifier algorithms provided by the api, such as Naive Bayes and SVM to get the different sentiment score for comparisons. Thank you.

Upvotes: 0

Views: 619

Answers (1)

Gabor Angeli
Gabor Angeli

Reputation: 5749

There are currently no other algorithms supported for sentiment analysis. You can, however, train your own without too much difficulty: bigram features with a simple classifier work quite well for sentiment tasks.

Upvotes: 0

Related Questions