nyu-mll/glue
Viewer • Updated • 1.49M • 481k • 501
How to use Hartunka/distilbert_km_100_v1_qnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_km_100_v1_qnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_km_100_v1_qnli")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_km_100_v1_qnli")This model is a fine-tuned version of Hartunka/distilbert_km_100_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.6677 | 1.0 | 410 | 0.6484 | 0.6139 |
| 0.6316 | 2.0 | 820 | 0.6393 | 0.6350 |
| 0.5736 | 3.0 | 1230 | 0.6492 | 0.6359 |
| 0.4787 | 4.0 | 1640 | 0.6992 | 0.6280 |
| 0.3734 | 5.0 | 2050 | 0.8386 | 0.6193 |
| 0.2801 | 6.0 | 2460 | 0.9696 | 0.6193 |
| 0.2094 | 7.0 | 2870 | 1.2420 | 0.6205 |
Base model
Hartunka/distilbert_km_100_v1