Sentiment Analysis with bag-of-words (part 2)
In the previous post we have learned how to do basic Sentiment Analysis with the bag-of-words technique. Here is a short summary: To keep track of the number of occurences of each word, we tokenize the text and add each word to a single list. Then by using a Counter element we can keep track […]