Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 1.15 KB

README.md

File metadata and controls

23 lines (15 loc) · 1.15 KB

Movie-Review-Sentiment-Analysis

To classify the sentiment of sentences from the Rotten Tomatoes dataset. Labeled phrases on a scale of five values: negative, somewhat negative, neutral, somewhat positive, positive and then predict the overall sentiment of the sentence using Naiive Bayes and Decision Tree Algorithms

How does sentiment Analysis work?

Basic sentiment analysis of text documents follows a straightforward process:

  • Break each text document down into its component parts (sentences, phrases, tokens and parts of speech)
  • Identify each sentiment-bearing phrase and component
  • Assign a sentiment score to each phrase and component (-1 to +1)
  • Optional: Combine scores for multi-layered sentiment analysis

Sentiment-Analysis-On-Movie-Reviews

Sentiment analysis on Rotten Tomatoes Dataset

The dataset is taken from kaggle https://www.kaggle.com/c/sentiment-analysis-on-movie-reviews

Algorithms used:

  1. Naive Bayes
  2. Decision Tree