A python package for flexible and transparent sentiment analysis.
Project description
Asent: Fast, flexible and transparent sentiment analysis
Asent is a rule-based sentiment analysis library for Python made using SpaCy. It is inspired by Vaderhttps://github.com/cjhutto/vaderSentiment, but uses a more modular ruleset, that allows the user one could change the method for finding negations. Furthermore it im transparent from the start.
Installation
Installing Asent is simple using pip:
pip install asent
There is no reason to update from GitHub as the version on pypi should always be the same of on GitHub.
Simple Example
The following shows a simple example of how you can quickly apply sentiment analysis using asent. For more on using asent see the usage guides.
import spacy
import asent
# load spacy pipeline
nlp = spacy.load("en_core_web_lg")
# add the rule-based sentiment model
nlp.add_pipe("asent_en_v1")
# try an example
text = "I am not very happy, but I am also not especially sad"
doc = nlp(text)
# print polarity of document, scaled to be between -1, and 1
print(doc._.polarity)
# neg=0.0 neu=0.631 pos=0.369 compound=0.7526
Naturally, a simple score can be quite unsatisfying, thus Asent implements a series of visualizer to interpret the results:
# visualize model prediction
asent.visualize(doc, style="prediction")
If we want to know why the model comes the result it does we can use the analysis
style:
# visualize the analysis performed by the model:
asent.visualize(doc[:5], style="analysis")
Where the value in the parenthesis (2.7) indicates the human-rating of the word, while the value outside the parenthesis indicates the value accounting for the negation. Asent also accounts for contrastive conjugations (e.g. but), casing, emoji's and punctuations. For more on how the model works check out the [usage guide].
📖 Documentation
Documentation | |
---|---|
🔧 Installation | Installation instructions for Asent |
📚 Usage Guides | Guides and instructions on how to use asent and its features. It also gives short introduction to how the models works. |
📰 News and changelog | New additions, changes and version history. |
🎛 Documentation | The detailed reference for Asents's API. Including function documentation |
💬 Where to ask questions
Type | |
---|---|
🚨 FAQ | FAQ |
🚨 Bug Reports | GitHub Issue Tracker |
🎁 Feature Requests & Ideas | GitHub Issue Tracker |
👩💻 Usage Questions | GitHub Discussions |
🗯 General Discussion | GitHub Discussions |
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 Distribution
Built Distribution
File details
Details for the file asent-0.4.2.tar.gz
.
File metadata
- Download URL: asent-0.4.2.tar.gz
- Upload date:
- Size: 250.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d31beb676c9c67458edd5c4e2a96df3e25e9adab93a6cd373f63746868347d3f |
|
MD5 | 0f0b3ac31dbc3ebb135e794fd2e2c7b8 |
|
BLAKE2b-256 | 708ca6ae64a7fc341a3f98972fb61ea637711fd276a54411adeb8adf7674871b |
File details
Details for the file asent-0.4.2-py2.py3-none-any.whl
.
File metadata
- Download URL: asent-0.4.2-py2.py3-none-any.whl
- Upload date:
- Size: 255.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 909a8ead496ace82ef6127ac8cd9b98f778bb1c77a765789721ca34eb845c454 |
|
MD5 | f76a7f76cb6dbaedc105d42a1c378922 |
|
BLAKE2b-256 | 011d3e2cc6473c0853efd4ef2469c6a38bdd8048180cf64a67e9d08d517a9898 |