nyu-mll/glue
Viewer • Updated • 1.49M • 485k • 500
How to use sgugger/bert-finetuned-mrpc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="sgugger/bert-finetuned-mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("sgugger/bert-finetuned-mrpc")
model = AutoModelForSequenceClassification.from_pretrained("sgugger/bert-finetuned-mrpc")This model is a fine-tuned version of bert-base-cased 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 |
|---|---|---|---|---|---|---|
| No log | 1.0 | 230 | 0.3668 | 0.8431 | 0.8881 | 0.8656 |
| No log | 2.0 | 460 | 0.3751 | 0.8578 | 0.9017 | 0.8798 |
| 0.4264 | 3.0 | 690 | 0.5152 | 0.8603 | 0.9032 | 0.8818 |