Add bib and lang
Browse files
README.md
CHANGED
@@ -1,3 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# FEEL-IT: Emotion and Sentiment Classification for the Italian Language
|
2 |
## Abstract
|
3 |
|
@@ -8,4 +13,28 @@ We release an open-source Python library, so researchers can use a model trained
|
|
8 |
| Model | Download |
|
9 |
| ------ | ------ |
|
10 |
| `feel-it-italian-sentiment` | [Link](https://huggingface.co/MilaNLProc/feel-it-italian-sentiment) |
|
11 |
-
| `feel-it-italian-emotion` | Soon |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language: it
|
3 |
+
license: mit
|
4 |
+
---
|
5 |
+
|
6 |
# FEEL-IT: Emotion and Sentiment Classification for the Italian Language
|
7 |
## Abstract
|
8 |
|
|
|
13 |
| Model | Download |
|
14 |
| ------ | ------ |
|
15 |
| `feel-it-italian-sentiment` | [Link](https://huggingface.co/MilaNLProc/feel-it-italian-sentiment) |
|
16 |
+
| `feel-it-italian-emotion` | Soon |
|
17 |
+
|
18 |
+
|
19 |
+
## Usage
|
20 |
+
|
21 |
+
```python
|
22 |
+
from transformers import AutoModel, AutoTokenizer
|
23 |
+
model_name = "MilaNLProc/feel-it-italian-sentiment"
|
24 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
25 |
+
model = AutoModel.from_pretrained(model_name)
|
26 |
+
```
|
27 |
+
|
28 |
+
## Citation
|
29 |
+
Please use the following bibtex entry if you use this model in your project:
|
30 |
+
```
|
31 |
+
@inproceedings{bianchi2021feel,
|
32 |
+
title = {{"FEEL-IT: Emotion and Sentiment Classification for the Italian Language"}},
|
33 |
+
author = "Bianchi, Federico and
|
34 |
+
Nozza, Debora and
|
35 |
+
Hovy, Dirk",
|
36 |
+
booktitle = "Proceedings of the 11th Workshop on Computational Approaches to Subjectivity, Sentiment and Social Media Analysis",
|
37 |
+
year = "2021",
|
38 |
+
publisher = "Association for Computational Linguistics",
|
39 |
+
}
|
40 |
+
```
|