LDA Topic Analysis with Gensim in Python

As part of a project, I needed to write a class for LDA with Gensim. I thought I would share it here... It's based on another tutorial I found online, but it's been modified and is a bit more reusable now. Readme is located in the repository here. ...
Read More

Natural Language Processing in Python – Sentiment using VADER

Another little bit of NLP showing how to do a quick and dirty sentiment analysis utilizing VADER within NLTK. It doesn't give the best accuracy on all datasets, but it removes complexity. Details below in the Jupyter Notebook. ...
Read More

Natural Language Processing in Python – Simple Example

NLP is a huge deal recently, and quite "easy" to do on a basic level within Python. In this exercise I completed, we'll show how to classify yelp reviews both with and without text pre-processing. Interesting to note that the pre-processing actually didn't help us here. ...
Read More