Easy-to-use, high-quality target-dependent sentiment classification for news articles
Project description
NewsSentiment: easy-to-use, high-quality target-dependent sentiment classification for news articles
NewsSentiment is an easy-to-use Python library that achieves state-of-the-art performance for target-dependent sentiment classification on news articles. NewsSentiment uses the currently best performing targeted sentiment classifier for news articles. In contrast to regular sentiment classification, targeted sentiment classification allows you to provide a target in a sentence. Only for this target, the sentiment is then predicted. This is more reliable in many cases, as demonstrated by the following simplistic example: "I like Bert, but I hate Robert."
We designed NewsSentiment to serve as an easy-to-use wrapper around the sophisticated GRU-TSC model, which was trained on the NewsMTSC dataset consisting of more than 10k labeled sentences sampled from political news articles. More information on the dataset and the model can be found here. The dataset, the model, and its source code can be viewed in our GitHub repository.
Installation
It's super easy, we promise!
You just need a Python 3.7 or Python 3.8 environment. See here if you
don't have Python or a different version (run python --version
in a terminal to see
your version). Then run:
pip3 install NewsSentiment # without cuda support (choose this if you don't know what cuda is)
pip3 install NewsSentiment[cuda] # with cuda support
You're all set now :-)
Target-dependent Sentiment Classification
Note that using NewsSentiment the first time will take a few minutes because it needs to download the fine-tuned language model. Please do not abort this initial download. Since this is a one-time process, future use of NewsSentiment will be much faster.
from NewsSentiment import TargetSentimentClassifier
tsc = TargetSentimentClassifier()
sentiment = tsc.infer_from_text("I like " ,"Peter", " but I don't like Robert.")
print(sentiment[0])
sentiment = tsc.infer_from_text("" ,"Mark Meadows", "'s coverup of Trump’s coup attempt is falling apart.")
print(sentiment[0])
How to cite
If you use the dataset or model, please cite our paper (PDF):
@InProceedings{Hamborg2021b,
author = {Hamborg, Felix and Donnay, Karsten},
title = {NewsMTSC: (Multi-)Target-dependent Sentiment Classification in News Articles},
booktitle = {Proceedings of the 16th Conference of the European Chapter of the Association for Computational Linguistics (EACL 2021)},
year = {2021},
month = {Apr.},
location = {Virtual Event},
}
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
Hashes for NewsSentiment-1.1.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b4a150b0845874dfdbedaafa8fb03064e7f3193b048d588df40375d088b39dba |
|
MD5 | bf1c469b2a4577e5a041331caa170179 |
|
BLAKE2b-256 | e31876315874e0e57f120a6475a57e3e11781512b531c8a0e567aaa22565dca9 |