nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/distilbert_km_10_v1_mrpc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_km_10_v1_mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_km_10_v1_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_km_10_v1_mrpc")This model is a fine-tuned version of Hartunka/distilbert_km_10_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.6306 | 1.0 | 15 | 0.6150 | 0.6863 | 0.7922 | 0.7392 |
| 0.5631 | 2.0 | 30 | 0.5971 | 0.6985 | 0.8128 | 0.7557 |
| 0.485 | 3.0 | 45 | 0.6306 | 0.7010 | 0.8051 | 0.7530 |
| 0.3824 | 4.0 | 60 | 0.7184 | 0.6618 | 0.7612 | 0.7115 |
| 0.2587 | 5.0 | 75 | 0.9183 | 0.6201 | 0.7081 | 0.6641 |
| 0.152 | 6.0 | 90 | 1.0391 | 0.6225 | 0.7050 | 0.6638 |
| 0.0757 | 7.0 | 105 | 1.3928 | 0.6225 | 0.7179 | 0.6702 |
Base model
Hartunka/distilbert_km_10_v1