nyu-mll/glue
Viewer • Updated • 1.49M • 487k • 498
How to use charanhu/finetuned-bert-mrpc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="charanhu/finetuned-bert-mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("charanhu/finetuned-bert-mrpc")
model = AutoModelForSequenceClassification.from_pretrained("charanhu/finetuned-bert-mrpc")This model is a fine-tuned version of bert-base-cased on the glue 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 |
|---|---|---|---|---|---|
| 0.5315 | 1.0 | 230 | 0.3698 | 0.8382 | 0.8862 |
| 0.3 | 2.0 | 460 | 0.3677 | 0.8431 | 0.8919 |
| 0.1575 | 3.0 | 690 | 0.4148 | 0.8603 | 0.9036 |