nyu-mll/glue
Viewer • Updated • 1.49M • 429k • 523
How to use gokuls/distilbert_sa_GLUE_Experiment_mrpc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gokuls/distilbert_sa_GLUE_Experiment_mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gokuls/distilbert_sa_GLUE_Experiment_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("gokuls/distilbert_sa_GLUE_Experiment_mrpc", device_map="auto")This model is a fine-tuned version of distilbert-base-uncased 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.664 | 1.0 | 15 | 0.6406 | 0.6838 | 0.8122 | 0.7480 |
| 0.6297 | 2.0 | 30 | 0.6118 | 0.6838 | 0.8122 | 0.7480 |
| 0.6048 | 3.0 | 45 | 0.6194 | 0.6765 | 0.7668 | 0.7216 |
| 0.5671 | 4.0 | 60 | 0.5911 | 0.6961 | 0.7974 | 0.7467 |
| 0.4731 | 5.0 | 75 | 0.6775 | 0.6814 | 0.7727 | 0.7270 |
| 0.3304 | 6.0 | 90 | 0.8546 | 0.6225 | 0.7004 | 0.6615 |
| 0.2466 | 7.0 | 105 | 1.0389 | 0.7010 | 0.8039 | 0.7524 |
| 0.1703 | 8.0 | 120 | 1.0860 | 0.6593 | 0.7583 | 0.7088 |
| 0.1328 | 9.0 | 135 | 1.2445 | 0.6397 | 0.7242 | 0.6820 |