-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Does Tweet contain emotion? #6
Comments
Find the best way to filter tweets into emotion/no-emotion categories. Apply sentiment analysis on emotion tweets and see results. |
Older datasets have only relevant tweets |
basic d2v emotion classifier. 86% cross val score
Here are the things I did today: From here on the emotion detection task I will play around with removing stop words and some other parameters to see if I can get the accuracy up. I'm also going to look into some alternative ways to test the classifier. One of the papers I read used tweets with emojis to reflect ones as subjective and tweets from popular newspapers such as NYT to reflect objective tweets. I might try to gather similar tweets so I have a more robust corpora for testing my emotion detector. |
This classifier is trained on several data sets that contain text and a true or false value that mark whether or not the text contains a emotion. These sets are news headlines (all false), Quotes from the tv show friends pulled from another study (these were all true), and some of our own labeled data (mixed true and false). This had a cross val score of ~91%. I applied this to some of my own hand labeled data (111 true tweets, 12 negative). At first this was receiving a high precision, but very low accuracy. This is due to how unbalanced this data is. However, when re sampling the training data and retraining the classifier on a ratio more similar to that of my test data, the accuracy rose to 90%
No description provided.
The text was updated successfully, but these errors were encountered: