cardiffnlp/tweet_eval
Viewer • Updated • 201k • 46.8k • 144
How to use marcolatella/prova_Classi2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="marcolatella/prova_Classi2") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("marcolatella/prova_Classi2")
model = AutoModelForSequenceClassification.from_pretrained("marcolatella/prova_Classi2")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("marcolatella/prova_Classi2")
model = AutoModelForSequenceClassification.from_pretrained("marcolatella/prova_Classi2")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 |
|---|---|---|---|---|
| 1.0171 | 1.0 | 1426 | 1.0183 | 0.2019 |
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="marcolatella/prova_Classi2")