nyu-mll/glue
Viewer • Updated • 1.49M • 465k • 504
How to use Tomor0720/deberta-large-finetuned-qqp with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Tomor0720/deberta-large-finetuned-qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Tomor0720/deberta-large-finetuned-qqp")
model = AutoModelForSequenceClassification.from_pretrained("Tomor0720/deberta-large-finetuned-qqp")This model is a fine-tuned version of microsoft/deberta-large on the glue 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.4058 | 1.0 | 22741 | 0.3923 | 0.8496 | 0.8108 |
| 0.2347 | 2.0 | 45482 | 0.2635 | 0.8986 | 0.8648 |