nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/distilbert_km_5_v1_mrpc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_km_5_v1_mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_km_5_v1_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_km_5_v1_mrpc")This model is a fine-tuned version of Hartunka/distilbert_km_5_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.625 | 1.0 | 15 | 0.6060 | 0.6936 | 0.7961 | 0.7449 |
| 0.5537 | 2.0 | 30 | 0.5909 | 0.6838 | 0.7956 | 0.7397 |
| 0.4677 | 3.0 | 45 | 0.6478 | 0.7083 | 0.8065 | 0.7574 |
| 0.3598 | 4.0 | 60 | 0.7725 | 0.6544 | 0.7496 | 0.7020 |
| 0.2154 | 5.0 | 75 | 1.0573 | 0.5882 | 0.6842 | 0.6362 |
| 0.1138 | 6.0 | 90 | 1.1863 | 0.6691 | 0.7676 | 0.7184 |
| 0.0656 | 7.0 | 105 | 1.4887 | 0.6225 | 0.7354 | 0.6790 |
Base model
Hartunka/distilbert_km_5_v1