[Solved] sentiment analysis in python


You don’t need POS for sentiment analysis, at least it’s not required. Prepare feature by using bag_of_words in X and “neg”https://stackoverflow.com/”pos” as Y. Then split into train/test sets and apply classification algorithm – NaiveBayes, MaxEnt, RandomForest, SVM.

solved sentiment analysis in python