nyu-mll/glue
Viewer • Updated • 1.49M • 480k • 498
How to use gokuls/sa_BERT_48_mrpc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gokuls/sa_BERT_48_mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gokuls/sa_BERT_48_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("gokuls/sa_BERT_48_mrpc")This model is a fine-tuned version of gokuls/bert_base_48 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.6588 | 1.0 | 39 | 0.6401 | 0.6520 | 0.7269 | 0.6894 |
| 0.5982 | 2.0 | 78 | 0.6441 | 0.6863 | 0.7801 | 0.7332 |
| 0.4614 | 3.0 | 117 | 0.6615 | 0.6740 | 0.7787 | 0.7264 |
| 0.3148 | 4.0 | 156 | 0.7447 | 0.6765 | 0.7770 | 0.7267 |
| 0.226 | 5.0 | 195 | 0.9718 | 0.6054 | 0.6957 | 0.6505 |
| 0.1566 | 6.0 | 234 | 1.2879 | 0.5564 | 0.6268 | 0.5916 |