A python package for flexible and transparent sentiment analysis.
Project description
Asent: Fast, flexible and transparent sentiment analysis
Inspired by Vader, made using SpaCy, 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)
# visualize model prediction
asent.visualize(doc, style="prediction")
If we want to know even more
# visualize the analysis performed by the model:
asent.visualize(doc[:5], style="analysis")
📖 Documentation
Documentation | |
---|---|
🔧 Installation | Installation instructions for Asent |
📚 Usage Guides | Guides and instructions on how to use asent and its features. |
📰 News and changelog | New additions, changes and version history. |
🎛 Documentations | The detailed reference for augmenty'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 |
🎓 Citing this work
If you use this library in your research, please cite it using:
@inproceedings{asent2021,
title={Asent: Fast, flexible and transparent sentiment analysis},
author={Kenneth Enevoldsen},
year={2021}
}
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
asent-0.1.3.tar.gz
(234.6 kB
view details)
Built Distribution
asent-0.1.3-py3-none-any.whl
(241.0 kB
view details)
File details
Details for the file asent-0.1.3.tar.gz
.
File metadata
- Download URL: asent-0.1.3.tar.gz
- Upload date:
- Size: 234.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e31da13acfd36591c8e919e2f20103e32aea2f248a553f00bc2462e8ac8ce199 |
|
MD5 | 0fa010cd3659c3e214e00b3f0ddce3e0 |
|
BLAKE2b-256 | 0f1481340a36fde2254ca4c581a9369bd6979dd8b79ea8e743a0e47481ae1a1a |
File details
Details for the file asent-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: asent-0.1.3-py3-none-any.whl
- Upload date:
- Size: 241.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 529fc5452db78b82cd2d22af7a8056bedf57e1ee094e7f3a2e003730e6751aef |
|
MD5 | 68f71daaea9dac361ecc39feced9dc77 |
|
BLAKE2b-256 | e3caf7f571ab2d3315021a19d9876a260fcfdcccb85105f0d0c575925b23242a |