You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Objectives:
1. Train a model from a given trainig movie review data set (IMDB).
2. Implement a Naive Bayes Classifier with bag of words and add-one smoothing.
3. Test this model against test data from the movie review and provide the accuracy of this model.
Pre-Processing:
1. Lowarecase all the words for both training and test.
2. Remove punctuations from both training and test.
Output:
1. The accuracy for positive review is 74.89%
2. The accuracy for negative review is 87.84%
3. Overall accuracy test accuracy is 81.368%
About
Sentiment Analysis on IMDB movie reviews given by reviewers and understanding their overall reaction to the movie. The classification model was trained using 50 thousand IMDB reviews.