nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/distilbert_km_5_v2_mrpc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_km_5_v2_mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_km_5_v2_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_km_5_v2_mrpc")This model is a fine-tuned version of Hartunka/distilbert_km_5_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.6185 | 1.0 | 15 | 0.6003 | 0.6789 | 0.7904 | 0.7347 |
| 0.5391 | 2.0 | 30 | 0.5962 | 0.6863 | 0.7935 | 0.7399 |
| 0.4435 | 3.0 | 45 | 0.6493 | 0.6961 | 0.7947 | 0.7454 |
| 0.3126 | 4.0 | 60 | 0.7969 | 0.6765 | 0.7747 | 0.7256 |
| 0.1757 | 5.0 | 75 | 1.0385 | 0.6544 | 0.7504 | 0.7024 |
| 0.0809 | 6.0 | 90 | 1.3466 | 0.6838 | 0.7795 | 0.7317 |
| 0.0458 | 7.0 | 105 | 1.5137 | 0.6838 | 0.7749 | 0.7293 |
Base model
Hartunka/distilbert_km_5_v2