Felix Hamborg
commited on
Commit
·
d4980d9
1
Parent(s):
70581bb
update readme
Browse files
README.md
CHANGED
@@ -16,3 +16,30 @@ datasets: "fhamborg/newsmtsc"
|
|
16 |
|
17 |
---
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
---
|
18 |
|
19 |
+
# NewsSentiment: easy-to-use, high-quality target-dependent sentiment classification for news articles
|
20 |
+
|
21 |
+
This model is also available as an easy-to-use PyPI package named [`NewsSentiment`](https://pypi.org/project/NewsSentiment/) and
|
22 |
+
in its original GitHub repository named [`NewsMTSC`](https://github.com/fhamborg/NewsMTSC), where you will find the dataset the model was trained on, other models for sentiment classification, and a training and testing framework. More information on the model and the dataset (consisting of more than 10k sentences sampled from news articles, each
|
23 |
+
labeled and agreed upon by at least 5 annotators) can be found in our [EACL paper](https://aclanthology.org/2021.eacl-main.142.pdf). The
|
24 |
+
dataset, the model, and its source code can be viewed in our [GitHub repository](https://github.com/fhamborg/NewsMTSC).
|
25 |
+
|
26 |
+
The model is the currently [best performing](https://aclanthology.org/2021.eacl-main.142.pdf)
|
27 |
+
targeted sentiment classifier for news articles. In contrast to regular sentiment
|
28 |
+
classification, targeted sentiment classification allows you to provide a target in a sentence.
|
29 |
+
Only for this target, the sentiment is then predicted. This is more reliable in many
|
30 |
+
cases, as demonstrated by the following simplistic example: "I like Bert, but I hate Robert."
|
31 |
+
|
32 |
+
|
33 |
+
# How to cite
|
34 |
+
If you use the dataset or model, please cite our [paper](https://www.aclweb.org/anthology/2021.eacl-main.142/) ([PDF](https://www.aclweb.org/anthology/2021.eacl-main.142.pdf)):
|
35 |
+
|
36 |
+
```
|
37 |
+
@InProceedings{Hamborg2021b,
|
38 |
+
author = {Hamborg, Felix and Donnay, Karsten},
|
39 |
+
title = {NewsMTSC: (Multi-)Target-dependent Sentiment Classification in News Articles},
|
40 |
+
booktitle = {Proceedings of the 16th Conference of the European Chapter of the Association for Computational Linguistics (EACL 2021)},
|
41 |
+
year = {2021},
|
42 |
+
month = {Apr.},
|
43 |
+
location = {Virtual Event},
|
44 |
+
}
|
45 |
+
```
|