Skip to content

Latest commit

 

History

History

Movie review

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Description

A sentiment analysis model which will take review of the viewer as input and output the sentiment associated with it. The output will be shown in a csv file and will show the result as

pos-if positive
neg-if negative sentiment is provided by the review.

The dataset followed is also attached with the program above

Prerequisites

You need nltk toolkit library in your machine, if it does not have you have to run the command

pip3 install nltk

And after install import the library in python3 and download all the corpuses with command nltk.download('all').

Also Scikit-learn library which can be installed by command pip3 install sklearn.