nyu-mll/glue
Viewer • Updated • 1.49M • 463k • 495
How to use Hartunka/distilbert_rand_10_v2_qnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_10_v2_qnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_10_v2_qnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_10_v2_qnli")This model is a fine-tuned version of Hartunka/distilbert_rand_10_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.6648 | 1.0 | 410 | 0.6424 | 0.6240 |
| 0.6255 | 2.0 | 820 | 0.6327 | 0.6332 |
| 0.5606 | 3.0 | 1230 | 0.6599 | 0.6385 |
| 0.4606 | 4.0 | 1640 | 0.6972 | 0.6330 |
| 0.3492 | 5.0 | 2050 | 0.8273 | 0.6376 |
| 0.2518 | 6.0 | 2460 | 1.0692 | 0.6266 |
| 0.1848 | 7.0 | 2870 | 1.2471 | 0.6359 |
Base model
Hartunka/distilbert_rand_10_v2