dair-ai/emotion
Viewer • Updated • 437k • 33.8k • 440
How to use luquesky/distilbert-base-uncased-finetuned-emotion with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="luquesky/distilbert-base-uncased-finetuned-emotion") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("luquesky/distilbert-base-uncased-finetuned-emotion")
model = AutoModelForSequenceClassification.from_pretrained("luquesky/distilbert-base-uncased-finetuned-emotion")This model is a fine-tuned version of distilbert-base-uncased on the 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 | F1 |
|---|---|---|---|---|---|
| 0.1768 | 1.0 | 250 | 0.1867 | 0.924 | 0.9235 |
| 0.1227 | 2.0 | 500 | 0.1588 | 0.934 | 0.9346 |
| 0.1031 | 3.0 | 750 | 0.1656 | 0.931 | 0.9306 |
| 0.0843 | 4.0 | 1000 | 0.1662 | 0.9395 | 0.9392 |
| 0.0662 | 5.0 | 1250 | 0.1714 | 0.9325 | 0.9326 |
| 0.0504 | 6.0 | 1500 | 0.1821 | 0.934 | 0.9338 |
| 0.0429 | 7.0 | 1750 | 0.2038 | 0.933 | 0.9324 |
| 0.0342 | 8.0 | 2000 | 0.2054 | 0.938 | 0.9379 |
| 0.0296 | 9.0 | 2250 | 0.2128 | 0.9345 | 0.9345 |
| 0.0211 | 10.0 | 2500 | 0.2155 | 0.934 | 0.9338 |