nyu-mll/glue
Viewer • Updated • 1.49M • 465k • 504
How to use HoangVuSnape/finetuned-bert-mrpc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="HoangVuSnape/finetuned-bert-mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("HoangVuSnape/finetuned-bert-mrpc")
model = AutoModelForSequenceClassification.from_pretrained("HoangVuSnape/finetuned-bert-mrpc")This model is a fine-tuned version of bert-base-cased on an unknown 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.5533 | 1.0 | 230 | 0.4256 | 0.8113 | 0.8702 |
| 0.3274 | 2.0 | 460 | 0.3869 | 0.8407 | 0.8873 |
| 0.1603 | 3.0 | 690 | 0.4436 | 0.8554 | 0.8998 |
Base model
google-bert/bert-base-cased