nyu-mll/glue
Viewer • Updated • 1.49M • 476k • 498
How to use wiselinjayajos/finetuned-bert-mrpc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="wiselinjayajos/finetuned-bert-mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("wiselinjayajos/finetuned-bert-mrpc")
model = AutoModelForSequenceClassification.from_pretrained("wiselinjayajos/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
Trained on my local laptop and the training time took 3 hours.
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 |
|---|---|---|---|---|---|
| 0.5331 | 1.0 | 230 | 0.3837 | 0.8505 | 0.8943 |
| 0.3023 | 2.0 | 460 | 0.3934 | 0.8505 | 0.8954 |
| 0.1472 | 3.0 | 690 | 0.4755 | 0.8456 | 0.8908 |