nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/distilbert_km_20_v2_mrpc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_km_20_v2_mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_km_20_v2_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_km_20_v2_mrpc")This model is a fine-tuned version of Hartunka/distilbert_km_20_v2 on the GLUE MRPC 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 | F1 | Combined Score |
|---|---|---|---|---|---|---|
| 0.6244 | 1.0 | 15 | 0.6130 | 0.7034 | 0.8136 | 0.7585 |
| 0.5689 | 2.0 | 30 | 0.6079 | 0.6814 | 0.8 | 0.7407 |
| 0.5055 | 3.0 | 45 | 0.6477 | 0.7108 | 0.8168 | 0.7638 |
| 0.4324 | 4.0 | 60 | 0.6750 | 0.6691 | 0.7660 | 0.7176 |
| 0.3194 | 5.0 | 75 | 0.7787 | 0.6667 | 0.7631 | 0.7149 |
| 0.1929 | 6.0 | 90 | 1.0004 | 0.6691 | 0.7576 | 0.7134 |
| 0.1087 | 7.0 | 105 | 1.2846 | 0.6275 | 0.7206 | 0.6740 |
Base model
Hartunka/distilbert_km_20_v2