.
├── SentimentModel.py # Sentiment Model
├── test.xlsx # Test Set - Game Reviews
├── output.xlsx # Sentiment Results on test set
├── statistics.png # Classification Results Graph
└── README.md
python SentimentModel.py
-
install TextBlob pythonic text processing and sentiment analysis library
$ pip install -U textblob $ python -m textblob.download_corpora
-
install pandas : python package for data loading and analysis
$ pip install pandas
-
install opnpyxl: python library to read/write excel
$ pip install openpyxl
-
install matplotlib
$ pip install matplotlib