I have a manually labelled set of ~120K tweets. If I use VADER's compound score it only matches the manual labelling for ~24% of the records, textblob matches ~35% of the manually labelled record. If I take Vaders compound score and textblobs score and add then together and divide by 2 the resulting sentiment result matches the manual labelling ~70% of the time. Is there any reason for why its more accurate or is it just coincidence?
Using an average of VADER and textBlob's sentiment polarity gives me a more accurate result, why?
352 Views Asked by July Jones At
1
There are 1 best solutions below
Related Questions in PYTHON
- new thread blocks main thread
- Extracting viewCount & SubscriberCount from YouTube API V3 for a given channel, where channelID does not equal userID
- Display images on Django Template Site
- Difference between list() and dict() with generators
- How can I serialize a numpy array while preserving matrix dimensions?
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Why is my program adding int as string (4+7 = 47)?
- store numpy array in mysql
- how to omit the less frequent words from a dictionary in python?
- Update a text file with ( new words+ \n ) after the words is appended into a list
- python how to write list of lists to file
- Removing URL features from tokens in NLTK
- Optimizing for Social Leaderboards
- Python : Get size of string in bytes
- What is the code of the sorted function?
Related Questions in NLP
- command line parameter in word2vec
- Annotator dependencies: UIMA Type Capabilities?
- term frequency over time: how to plot +200 graphs in one plot with Python/pandas/matplotlib?
- Stanford Entity Recognizer (caseless) in Python Nltk
- How to interpret scikit's learn confusion matrix and classification report?
- Detect (predefined) topics in natural text
- Amazon Machine Learning for sentiment analysis
- How to Train an Input File containing lines of text in NLTK Python
- What exactly is the difference between AnalysisEngine and CAS Consumer?
- keywords in NEGATIVE Sentiment using sentiment Analysis(stanfordNLP)
- MaxEnt classifier implementation in java for linguistic features?
- Are word-vector orientations universal?
- Stanford Parser - Factored model and PCFG
- Training a Custom Model using Java Code - Stanford NER
- Topic or Tag suggestion algorithm
Related Questions in SENTIMENT-ANALYSIS
- Naive Bayes Sentiment Analysis of Facebook Post
- Amazon Machine Learning for sentiment analysis
- keywords in NEGATIVE Sentiment using sentiment Analysis(stanfordNLP)
- Stanford Parser - Factored model and PCFG
- Lazy parsing with Stanford CoreNLP to get sentiment only of specific sentences
- How to capture iterated output variable into list for analysis
- How to separate text from twitter streaming JSON responses and run analysis on text with python?
- Word2Vec Sentiment Classification with R and H2O
- How to decode ascii from stream for analysis
- How to pass each row as an argument to R script from Tableau calculated field
- Is there way to influence AlchemyAPI sentiment analysis
- Function decode_short_URL from twitteR package not working
- How can I extract 2-4 words on each side of a specific term in R?
- Pre-processing before running sentiment analysis
- Why isn't my classifier predicting any positive classes?
Related Questions in TEXTBLOB
- python.cannot import name 'TextBlob'
- How to decode ascii from stream for analysis
- Error downloading textblob certificate verify failed
- NLTK+TextBlob in flask/nginx/gunicorn on Ubuntu 500 error
- Is TextBlob scalable?
- resource not found python textblob Resource u'tokenizers/punkt/english.pickle' not found
- Trouble installing TextBlob for Python
- Can't use NLTK on text pulled from the Silmarillion
- Saving an HTML Blob file produces weird text inside
- Textblob and sentiment analysis: how to refine a dictionary?
- Extracting verb from german sentenceces
- nltk NaiveBayesClassifier training for sentiment analysis
- textblob on django + apache on aws gives MissingCorpusError
- Executing a function on clicking specific Tkinter Label() text
- Finding the nouns in a sentence given the context in Python
Related Questions in VADER
- Using fully custom lexicon for VADER sentiment analyzer
- VaderSentiment: emoji analyzer does not work in Jupyter Notebook
- What pre-processing does VADER sentiment analysis use?
- VADER: Sentiment for each sentence
- NLTK Vader SentimentIntensityAnalyzer Bigram
- how do i solve AttributeError: 'float' object has no attribute 'encode'
- vaderSentiment TypeError: 'float' object is not iterable
- Vader lexicon results don't add up to 1.0
- How to get nicer data from vaderSentiment?
- How to print valence score for each lexicon in vader?
- Vader sentiment analysis
- Accuracy of lexicon-based sentiment analysis
- Pandas code running but not doing anything
- positive phrase has negative score in vader function polarity_scores
- Example of NLTK's Vader Scoring Text
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I think you're stumbling upon the idea behind ensemble learning. More often than not, putting multiple models together and combining their predictions leads to better results. Your implementation could be thought of as an equally weighted soft-voting ensemble. For more examples and additional implementations, the scikit-learn Voting Classifier docs are great.