nyu-mll/glue
Viewer • Updated • 1.49M • 480k • 498
How to use gokuls/sa_BERT_24_mrpc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gokuls/sa_BERT_24_mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gokuls/sa_BERT_24_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("gokuls/sa_BERT_24_mrpc")This model is a fine-tuned version of gokuls/bert_base_24 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.6437 | 1.0 | 39 | 0.6042 | 0.7083 | 0.8200 | 0.7642 |
| 0.5784 | 2.0 | 78 | 0.6224 | 0.6544 | 0.7403 | 0.6974 |
| 0.4657 | 3.0 | 117 | 0.7196 | 0.6740 | 0.7816 | 0.7278 |
| 0.3555 | 4.0 | 156 | 0.8929 | 0.6348 | 0.7418 | 0.6883 |
| 0.2516 | 5.0 | 195 | 1.0482 | 0.6078 | 0.6992 | 0.6535 |
| 0.1654 | 6.0 | 234 | 1.3865 | 0.5515 | 0.6131 | 0.5823 |