VADER Sentiment Analysis. VADER (Valence Aware Dictionary and sEntiment Reasoner) is a lexicon and rule-based sentiment analysis tool that is specifically attuned to sentiments expressed in social media, and works well on texts from other domains.
Project description
VADER Sentiment Analysis Multilanguage
VADER (Valence Aware Dictionary and sEntiment Reasoner) is a lexicon and rule-based sentiment analysis tool that is specifically attuned to sentiments expressed in social media.
This version integrates the Google Translate API through the
translatte
Python library. It requires an active Internet connection in order to work. Text language is automatically detected so it behaves exactly like the original version.
Installation
Uninstall first the original version so it is not instantiated instead of vader-multi:
pip uninstall vaderSentiment
pip install vader-multi
Polarity Scores
class vaderSentiment.SentimentIntensityAnalyzer
polarity_scores(text)
Returns a dictionary with the following keys: {'neg': float, 'neu': float, 'pos': float, 'compound': float}
from vaderSentiment.vaderSentiment import SentimentIntensityAnalyzer
analyzer = SentimentIntensityAnalyzer()
analyzer.polarity_scores("VADER is smart, handsome, and funny.")
Examples
>>> from vaderSentiment.vaderSentiment import SentimentIntensityAnalyzer
>>> analyzer = SentimentIntensityAnalyzer()
>>> analyzer.polarity_scores("VADER is VERY SMART, handsome, and FUNNY!!!")
{'neg': 0.0, 'neu': 0.233, 'pos': 0.767, 'compound': 0.9342}
>>> analyzer.polarity_scores("¡¡¡VADER es MUY INTELIGENTE, guapo y DIVERTIDO!!!")
{'neg': 0.0, 'neu': 0.27, 'pos': 0.73, 'compound': 0.9387}
>>> analyzer.polarity_scores("VADER è MOLTO INTELLIGENTE, bello e DIVERTENTE!!!")
{'neg': 0.0, 'neu': 0.256, 'pos': 0.744, 'compound': 0.9481}
>>> analyzer.polarity_scores("VADER est TRÈS SMART, beau et drôle!!!")
{'neg': 0.0, 'neu': 0.276, 'pos': 0.724, 'compound': 0.9338}
>>> analyzer.polarity_scores("Вейдер очень умный, красивый и смешной!!!")
{'neg': 0.0, 'neu': 0.314, 'pos': 0.686, 'compound': 0.8989}
>>> analyzer.polarity_scores("ベイダーは非常にスマートで、ハンサムで面白いです!!!")
{'neg': 0.0, 'neu': 0.328, 'pos': 0.672, 'compound': 0.882}
>>> analyzer.polarity_scores("வேடர் மிகவும் ஸ்மார்ட், அழகான மற்றும் வேடிக்கையானது!!!")
{'neg': 0.0, 'neu': 0.314, 'pos': 0.686, 'compound': 0.8989}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file vader_multi-3.2.2.1-py2.py3-none-any.whl
.
File metadata
- Download URL: vader_multi-3.2.2.1-py2.py3-none-any.whl
- Upload date:
- Size: 126.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 980109e651e1726f237041cff5241a10c46b495c9912c81cc93e179bec1fccd4 |
|
MD5 | 6acc610fdd51b49c99be9471b71fbf31 |
|
BLAKE2b-256 | bfa55ab19e6a3a5b84962302d070d407d857ed4156e407cb7be6c8a054fc2a57 |