google-research-datasets/go_emotions
Viewer • Updated • 265k • 13.5k • 264
How to use Prasadrao/roberta-large-go-emotions with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Prasadrao/roberta-large-go-emotions") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Prasadrao/roberta-large-go-emotions")
model = AutoModelForSequenceClassification.from_pretrained("Prasadrao/roberta-large-go-emotions", device_map="auto")This model is a fine-tuned version of roberta-large on an go emotion 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 | Accuracy | Precision | Recall | F1 |
|---|---|---|---|---|---|---|---|
| No log | 1.0 | 679 | 0.0864 | 0.4412 | 0.4810 | 0.4637 | 0.4557 |
| 0.1012 | 2.0 | 1358 | 0.0810 | 0.4410 | 0.5468 | 0.5244 | 0.5147 |
| 0.1012 | 3.0 | 2037 | 0.0820 | 0.4493 | 0.5180 | 0.5262 | 0.5092 |
| 0.0659 | 4.0 | 2716 | 0.0827 | 0.4589 | 0.5252 | 0.5203 | 0.5142 |