nyu-mll/glue
Viewer • Updated • 1.49M • 484k • 500
How to use Hartunka/distilbert_km_50_v1_qnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_km_50_v1_qnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_km_50_v1_qnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_km_50_v1_qnli")This model is a fine-tuned version of Hartunka/distilbert_km_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.6679 | 1.0 | 410 | 0.6469 | 0.6211 |
| 0.6301 | 2.0 | 820 | 0.6467 | 0.6326 |
| 0.5669 | 3.0 | 1230 | 0.6606 | 0.6302 |
| 0.4611 | 4.0 | 1640 | 0.7115 | 0.6299 |
| 0.3468 | 5.0 | 2050 | 0.8626 | 0.6202 |
| 0.2543 | 6.0 | 2460 | 1.0667 | 0.6185 |
| 0.1905 | 7.0 | 2870 | 1.2531 | 0.6185 |
Base model
Hartunka/distilbert_km_50_v1