nyu-mll/glue
Viewer • Updated • 1.49M • 492k • 498
How to use chari-md/bert-finetuned-mrpc-trainer with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="chari-md/bert-finetuned-mrpc-trainer") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("chari-md/bert-finetuned-mrpc-trainer")
model = AutoModelForSequenceClassification.from_pretrained("chari-md/bert-finetuned-mrpc-trainer")This model is a fine-tuned version of bert-base-uncased 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 |
|---|---|---|---|---|---|
| No log | 1.0 | 459 | 0.3960 | 0.8211 | 0.8773 |
| 0.5273 | 2.0 | 918 | 0.4309 | 0.8505 | 0.8985 |
| 0.3247 | 3.0 | 1377 | 0.5015 | 0.8676 | 0.9072 |