nyu-mll/glue
Viewer • Updated • 1.49M • 487k • 498
How to use Hartunka/distilbert_rand_20_v1_qnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_20_v1_qnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_20_v1_qnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_20_v1_qnli")This model is a fine-tuned version of Hartunka/distilbert_rand_20_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.6641 | 1.0 | 410 | 0.6407 | 0.6310 |
| 0.6243 | 2.0 | 820 | 0.6320 | 0.6352 |
| 0.5585 | 3.0 | 1230 | 0.6587 | 0.6398 |
| 0.4587 | 4.0 | 1640 | 0.7339 | 0.6352 |
| 0.3475 | 5.0 | 2050 | 0.8744 | 0.6282 |
| 0.2523 | 6.0 | 2460 | 1.1094 | 0.6233 |
| 0.1856 | 7.0 | 2870 | 1.2477 | 0.6136 |
Base model
Hartunka/distilbert_rand_20_v1