nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/distilbert_km_100_v2_mrpc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_km_100_v2_mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_km_100_v2_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_km_100_v2_mrpc")This model is a fine-tuned version of Hartunka/distilbert_km_100_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.6234 | 1.0 | 15 | 0.6137 | 0.7108 | 0.8179 | 0.7643 |
| 0.563 | 2.0 | 30 | 0.6090 | 0.7034 | 0.8100 | 0.7567 |
| 0.4948 | 3.0 | 45 | 0.6386 | 0.6961 | 0.8063 | 0.7512 |
| 0.4259 | 4.0 | 60 | 0.7081 | 0.6422 | 0.7402 | 0.6912 |
| 0.3198 | 5.0 | 75 | 0.7599 | 0.6838 | 0.7882 | 0.7360 |
| 0.2082 | 6.0 | 90 | 0.9243 | 0.6373 | 0.7376 | 0.6874 |
| 0.1214 | 7.0 | 105 | 1.1667 | 0.6324 | 0.7292 | 0.6808 |
Base model
Hartunka/distilbert_km_100_v2