cardiffnlp/tweet_eval
Viewer • Updated • 201k • 31.3k • 144
How to use deepgai/tweet_eval-sentiment-finetuned with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="deepgai/tweet_eval-sentiment-finetuned") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("deepgai/tweet_eval-sentiment-finetuned")
model = AutoModelForSequenceClassification.from_pretrained("deepgai/tweet_eval-sentiment-finetuned")This model is a fine-tuned version of microsoft/deberta-v3-small 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 | Accuracy | F1 |
|---|---|---|---|---|---|
| 0.7491 | 1.0 | 357 | 0.6089 | 0.7345 | 0.7314 |
| 0.5516 | 2.0 | 714 | 0.5958 | 0.751 | 0.7516 |
| 0.4618 | 3.0 | 1071 | 0.6131 | 0.748 | 0.7487 |
| 0.4066 | 4.0 | 1428 | 0.6532 | 0.744 | 0.7437 |