nyu-mll/glue
Viewer • Updated • 1.49M • 450k • 504
How to use mrm8488/deberta-v3-small-finetuned-sst2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="mrm8488/deberta-v3-small-finetuned-sst2") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("mrm8488/deberta-v3-small-finetuned-sst2")
model = AutoModelForSequenceClassification.from_pretrained("mrm8488/deberta-v3-small-finetuned-sst2")This model is a fine-tuned version of microsoft/deberta-v3-small on the GLUE SST2 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 |
|---|---|---|---|---|
| 0.176 | 1.0 | 4210 | 0.2134 | 0.9404 |
| 0.1254 | 2.0 | 8420 | 0.2362 | 0.9415 |
| 0.0957 | 3.0 | 12630 | 0.3187 | 0.9335 |
| 0.0673 | 4.0 | 16840 | 0.3039 | 0.9266 |
| 0.0457 | 5.0 | 21050 | 0.3521 | 0.9312 |