nyu-mll/glue
Viewer • Updated • 1.49M • 492k • 498
How to use Hartunka/distilbert_km_5_v1_qnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_km_5_v1_qnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_km_5_v1_qnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_km_5_v1_qnli")This model is a fine-tuned version of Hartunka/distilbert_km_5_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.6628 | 1.0 | 410 | 0.6315 | 0.6429 |
| 0.612 | 2.0 | 820 | 0.6218 | 0.6520 |
| 0.527 | 3.0 | 1230 | 0.6506 | 0.6431 |
| 0.4147 | 4.0 | 1640 | 0.7125 | 0.6500 |
| 0.3011 | 5.0 | 2050 | 0.8449 | 0.6513 |
| 0.2112 | 6.0 | 2460 | 1.0668 | 0.6454 |
| 0.1582 | 7.0 | 2870 | 1.2524 | 0.6354 |
Base model
Hartunka/distilbert_km_5_v1