dair-ai/emotion
Viewer • Updated • 437k • 33.4k • 440
How to use aiknowyou/it-emotion-analyzer with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="aiknowyou/it-emotion-analyzer") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("aiknowyou/it-emotion-analyzer")
model = AutoModelForSequenceClassification.from_pretrained("aiknowyou/it-emotion-analyzer")This is a model for emotion analysis of italian sentences trained on a translated dataset by Google Translator. It maps sentences & paragraphs with 6 emotions which are:
Using this model becomes easy when you have transformers installed:
pip install -U transformers
Then you can use the model like this:
from transformers import AutoTokenizer, AutoModelForSequenceClassification
from transformers import pipeline
sentences = ["Questa è una frase triste", "Questa è una frase felice", "Questa è una frase di stupore"]
tokenizer = AutoTokenizer.from_pretrained("aiknowyou/it-emotion-analyzer")
model = AutoModelForSequenceClassification.from_pretrained("aiknowyou/it-emotion-analyzer")
emotion_analysis = pipeline("sentiment-analysis", model=model, tokenizer=tokenizer)
emotion_analysis(sentences)
Obtaining the following result:
[{'label': '0', 'score': 0.9481984972953796},
{'label': '1', 'score': 0.9299975037574768},
{'label': '5', 'score': 0.9543816447257996}]