nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/distilbert_km_20_v1_mrpc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_km_20_v1_mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_km_20_v1_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_km_20_v1_mrpc")This model is a fine-tuned version of Hartunka/distilbert_km_20_v1 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.6209 | 1.0 | 15 | 0.6048 | 0.7083 | 0.8155 | 0.7619 |
| 0.5735 | 2.0 | 30 | 0.5979 | 0.7010 | 0.8117 | 0.7564 |
| 0.5215 | 3.0 | 45 | 0.6132 | 0.7108 | 0.8190 | 0.7649 |
| 0.4693 | 4.0 | 60 | 0.6506 | 0.6691 | 0.7619 | 0.7155 |
| 0.3572 | 5.0 | 75 | 0.7333 | 0.6593 | 0.7591 | 0.7092 |
| 0.2262 | 6.0 | 90 | 0.9685 | 0.6029 | 0.6955 | 0.6492 |
| 0.1354 | 7.0 | 105 | 1.1399 | 0.6593 | 0.7718 | 0.7155 |
Base model
Hartunka/distilbert_km_20_v1