nyu-mll/glue
Viewer • Updated • 1.49M • 466k • 495
How to use Hartunka/distilbert_rand_20_v2_qnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_20_v2_qnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_20_v2_qnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_20_v2_qnli")This model is a fine-tuned version of Hartunka/distilbert_rand_20_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.664 | 1.0 | 410 | 0.6415 | 0.6291 |
| 0.6251 | 2.0 | 820 | 0.6374 | 0.6357 |
| 0.5585 | 3.0 | 1230 | 0.6591 | 0.6286 |
| 0.4549 | 4.0 | 1640 | 0.7202 | 0.6341 |
| 0.3405 | 5.0 | 2050 | 0.8814 | 0.6301 |
| 0.2441 | 6.0 | 2460 | 1.0931 | 0.6310 |
| 0.1814 | 7.0 | 2870 | 1.2922 | 0.6315 |
Base model
Hartunka/distilbert_rand_20_v2