Commit
·
c897738
1
Parent(s):
afefc81
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Emotion Analysis in English
|
2 |
+
## bertweet-base-emotion-analysis
|
3 |
+
|
4 |
+
Repository: [https://github.com/finiteautomata/pysentimiento/](https://github.com/finiteautomata/pysentimiento/)
|
5 |
+
|
6 |
+
|
7 |
+
Model trained with EmoEvent corpus for Emotion detection in English. Base model is [BerTweet](https://huggingface.co/vinai/bertweet-base).
|
8 |
+
|
9 |
+
|
10 |
+
## License
|
11 |
+
|
12 |
+
`pysentimiento` is an open-source library for non-commercial use and scientific research purposes only. Please be aware that models are trained with third-party datasets and are subject to their respective licenses.
|
13 |
+
|
14 |
+
1. [TASS Dataset license](http://tass.sepln.org/tass_data/download.php)
|
15 |
+
2. [SEMEval 2017 Dataset license]()
|
16 |
+
|
17 |
+
## Citation
|
18 |
+
|
19 |
+
If you use `pysentimiento` in your work, please cite [this paper](https://arxiv.org/abs/2106.09462)
|
20 |
+
|
21 |
+
```
|
22 |
+
@misc{perez2021pysentimiento,
|
23 |
+
title={pysentimiento: A Python Toolkit for Sentiment Analysis and SocialNLP tasks},
|
24 |
+
author={Juan Manuel Pérez and Juan Carlos Giudici and Franco Luque},
|
25 |
+
year={2021},
|
26 |
+
eprint={2106.09462},
|
27 |
+
archivePrefix={arXiv},
|
28 |
+
primaryClass={cs.CL}
|
29 |
+
}
|
30 |
+
```
|
31 |
+
|
32 |
+
Enjoy! 🤗
|