cardiffnlp/tweet_eval
Viewer • Updated • 201k • 36.6k • 143
How to use aXhyra/emotion_trained_final with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="aXhyra/emotion_trained_final") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("aXhyra/emotion_trained_final")
model = AutoModelForSequenceClassification.from_pretrained("aXhyra/emotion_trained_final")This model is a fine-tuned version of distilbert-base-uncased on the tweet_eval 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 |
|---|---|---|---|---|
| 0.9013 | 1.0 | 815 | 0.7822 | 0.6470 |
| 0.5008 | 2.0 | 1630 | 0.7142 | 0.7419 |
| 0.3684 | 3.0 | 2445 | 0.8621 | 0.7443 |
| 0.2182 | 4.0 | 3260 | 0.9349 | 0.7469 |