dair-ai/emotion
Viewer β’ Updated β’ 437k β’ 34.5k β’ 443
How to use MuntasirHossain/RoBERTa-base-finetuned-emotion with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="MuntasirHossain/RoBERTa-base-finetuned-emotion") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("MuntasirHossain/RoBERTa-base-finetuned-emotion")
model = AutoModelForSequenceClassification.from_pretrained("MuntasirHossain/RoBERTa-base-finetuned-emotion")This model is a fine-tuned version of roberta-base on the emotion dataset. It achieves the following results on the evaluation set:
This is a RoBERTa model fine-tuned on the emotion to determine whether a text is within any of the six categories: 'sadness', 'joy', 'love', 'anger', 'fear', 'surprise'. The Trainer API was used to train the model.
π€ load_dataset package was used to load the data from the hub.
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Accuracy | Precision | Recall | F1 |
|---|---|---|---|---|---|---|---|
| 0.5693 | 1.0 | 500 | 0.2305 | 0.9215 | 0.8814 | 0.8854 | 0.8818 |
| 0.1946 | 2.0 | 1000 | 0.1923 | 0.9235 | 0.8698 | 0.9268 | 0.8899 |
| 0.1297 | 3.0 | 1500 | 0.1514 | 0.933 | 0.9060 | 0.8879 | 0.8913 |
| 0.1041 | 4.0 | 2000 | 0.1545 | 0.9265 | 0.9165 | 0.8567 | 0.8789 |
| 0.0826 | 5.0 | 2500 | 0.1629 | 0.933 | 0.8945 | 0.9002 | 0.8968 |
Base model
FacebookAI/roberta-base