google-research-datasets/go_emotions
Viewer • Updated • 265k • 22.7k • 260
How to use imrazaa/emotion_classification with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="imrazaa/emotion_classification") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("imrazaa/emotion_classification")
model = AutoModelForSequenceClassification.from_pretrained("imrazaa/emotion_classification")This model is a fine-tuned version of roberta-base on the go_emotions dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | F1 |
|---|---|---|---|---|
| No log | 1.0 | 313 | 1.8826 | 0.1762 |
| 2.1614 | 2.0 | 626 | 1.6738 | 0.3442 |
| 2.1614 | 3.0 | 939 | 1.6119 | 0.3852 |