Skip to content

kvnthomas98/Twitter-Sentiment-Analysis

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Twitter-Sentiment-Analysis

Twitter Sentiment Analysis | Naive Bayes Classifier |

                                           ***Introduction***

I present an approach for classifying the sentiment of Twitter messages or tweets; these messages are classified as positive or negative with respect to a sentence. I accomplish this by mining tweets using Twitter’s search API and subsequently processing them for analysis. Moreover, I use Distant Supervision, in which my training data consists of tweets with emoticons. Furthermore, I examine the effectiveness of three machine-learning techniques on providing a positive or negative sentiment on a tweet corpus. I test the effectiveness using Naive Bayes classifier, Maximum Entropy classifier, and Decision Tree classifier. I show that the accuracy of those algorithms is above 60% when trained with emoticon data. (In my github account, I only have the code for Naive Bayes! I will be posting the others later)

In this example, I implemented Naive Bayes classifier using Python, Tweepy, and NLTK library.

In order to build a Twitter sentiment analyzer, first we need to understand the right tools and methods. Machine learning is one such tool where people have developed various methods to classify. Classifiers may or may not need training data.

When training a classifier, supervised learning usually requires hand-labeled training data. With the large range of topics discussed on Twitter, it would be very difficult to manually collect and label enough data to train a sentiment classifier for tweets. One solution I propose is to use distant supervision, in which the training data consists of tweets with emoticons. The emoticons serve as noisy labels. For instance, :) in a tweet indicates that the tweet contains positive sentiment and :( indicates that the tweet contains negative sentiment. With the help of the Twitter API, it is easy to extract large amounts of tweets with emoticons in them. This is a significant improvement over the many hours it may otherwise take to hand-label training data.

                                       ***Implementation Details***
  • In order to work with this project, you will need to have a Twitter account.
  • Register your client application with Twitter.
  • Create a new application and once you are done you should have your consumer token and secret.
  • Keep these two handy, you will need them.

CREATING YOUR OWN DATASET

  • I decided to create my own dataset based on emoticons such as :) and :( Then, I deleted them. Stripping out the emoticons causes the classifier to learn from the other features present in the tweet. The classifier uses these non- emoticon features to determine the sentiment.
  • I streamed thousands of tweets and stored them into a file (I used a file, but you can store them into a database)
  • Preprocess tweets
    • Lower case - I converted the tweets to lower case
    • URLs - I eliminated all the URLs
    • #hashtag - hash tags can give us some useful information, so I replaced them with the exact same word without the hash.
    • Punctuations and additional white spaces - I decided to remove punctuation at the starting and ending of the tweets.
  • Feature Reduction (For example: Tokenization, Removing Stopwords, Twitter symbols, and Repeated Letters)

TRAINING THE CLASSIFIER

  • Naive Bayes is the classifier that I am using to create a sentiment analyzer.

  • I used the Naïve Bayes method in the NLTK library to train and classify.

  • At this point, I have a training set, so all I need to do is instantiate a classifier and classify test tweets.

                                           ***Running the program***
    

-First execute StreamingTwitter.py after getting the neccessary credentials from the Twitter Developer Apps you have created -The script will execute forever, so when you want to obtain positive tweets just comment out the negative tweet call and vice versa -then after obtaining the training data, in the setTerms variable update the query to enter the name of some entity to check its popularity and compare, here I have used Dhoni and Kohli and then run the script and save them in an appropriate named csv file. -Combine positive and negative data into one large file, ideally the final training dataset should have 50% positive tweets and 50% negative tweets -Then run NaiveClassifier.py to check the popularity -Finally run importantfeatures.py to identify the most important positive and negative features present in the script

NOTE: In some cases when you test a positive sentence (i.e. I am happy), and it shows you that is a negative sentence, this is essentially because in the training data didn't cover the words encountered in this tweet. So, the classifier has little knowledge to classify this tweet and most often the tweet gets assigned the default classification label. Therefore, training dataset is very crucial for the success of these classifiers. Anything below 100k of training tweets will give you poor results.

About

Twitter Sentiment Analysis | Naive Bayes Classifier

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%