nyu-mll/glue
Viewer • Updated • 1.49M • 462k • 495
How to use Hartunka/distilbert_rand_50_v2_qnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_50_v2_qnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_50_v2_qnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_50_v2_qnli")This model is a fine-tuned version of Hartunka/distilbert_rand_50_v2 on the GLUE QNLI 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.6644 | 1.0 | 410 | 0.6444 | 0.6226 |
| 0.6252 | 2.0 | 820 | 0.6384 | 0.6313 |
| 0.56 | 3.0 | 1230 | 0.6712 | 0.6268 |
| 0.4515 | 4.0 | 1640 | 0.7168 | 0.6277 |
| 0.3311 | 5.0 | 2050 | 0.8598 | 0.6301 |
| 0.234 | 6.0 | 2460 | 1.1353 | 0.6215 |
| 0.1707 | 7.0 | 2870 | 1.2543 | 0.6149 |
Base model
Hartunka/distilbert_rand_50_v2