nyu-mll/glue
Viewer • Updated • 1.49M • 466k • 496
How to use Tomor0720/deberta-base-finetuned-cola with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Tomor0720/deberta-base-finetuned-cola") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Tomor0720/deberta-base-finetuned-cola")
model = AutoModelForSequenceClassification.from_pretrained("Tomor0720/deberta-base-finetuned-cola")This model is a fine-tuned version of microsoft/deberta-base 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 | Matthews Correlation |
|---|---|---|---|---|
| 0.4826 | 1.0 | 535 | 0.5277 | 0.5443 |
| 0.28 | 2.0 | 1070 | 0.4723 | 0.6331 |
| 0.1893 | 3.0 | 1605 | 0.5812 | 0.6332 |