nyu-mll/glue
Viewer • Updated • 1.49M • 485k • 498
How to use Hartunka/distilbert_rand_100_v1_qnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_100_v1_qnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_100_v1_qnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_100_v1_qnli")This model is a fine-tuned version of Hartunka/distilbert_rand_100_v1 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.6638 | 1.0 | 410 | 0.6415 | 0.6268 |
| 0.6237 | 2.0 | 820 | 0.6362 | 0.6258 |
| 0.5559 | 3.0 | 1230 | 0.6767 | 0.6189 |
| 0.4491 | 4.0 | 1640 | 0.7469 | 0.6313 |
| 0.3288 | 5.0 | 2050 | 0.8629 | 0.6193 |
| 0.2354 | 6.0 | 2460 | 1.1685 | 0.6125 |
| 0.1733 | 7.0 | 2870 | 1.4222 | 0.6141 |
Base model
Hartunka/distilbert_rand_100_v1