Deployed various Machine Learning models to classify the movie reviews as positive or negative.
The movie reviews are present in the documents and then we get the feedback whether the reviews are positive or negative based on the words present in the review.
We're gonna take tokenized words and then use them as features by feeding them into our ML Algorithm. It uses the basics of NLP including Tokenizing, Stemming, Chinking, Chunking and Named Entity Recognition.
We get the probability of the final reviews between 0 and 1 and then we can judge if the review is positive or negative.