nyu-mll/glue
Viewer • Updated • 1.49M • 480k • 498
How to use Hartunka/distilbert_rand_50_v1_qnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_50_v1_qnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_50_v1_qnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_50_v1_qnli")This model is a fine-tuned version of Hartunka/distilbert_rand_50_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.6649 | 1.0 | 410 | 0.6465 | 0.6176 |
| 0.6263 | 2.0 | 820 | 0.6441 | 0.6242 |
| 0.5627 | 3.0 | 1230 | 0.6777 | 0.6280 |
| 0.4563 | 4.0 | 1640 | 0.7420 | 0.6233 |
| 0.3362 | 5.0 | 2050 | 0.9451 | 0.6165 |
| 0.2377 | 6.0 | 2460 | 1.1079 | 0.6147 |
| 0.175 | 7.0 | 2870 | 1.2665 | 0.6150 |
Base model
Hartunka/distilbert_rand_50_v1