nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/bert_base_rand_100_v2_mrpc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/bert_base_rand_100_v2_mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_100_v2_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_100_v2_mrpc")This model is a fine-tuned version of Hartunka/bert_base_rand_100_v2 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 |
|---|---|---|---|---|---|---|
| 0.6254 | 1.0 | 15 | 0.6040 | 0.6765 | 0.7898 | 0.7331 |
| 0.5783 | 2.0 | 30 | 0.5916 | 0.6961 | 0.7832 | 0.7396 |
| 0.5106 | 3.0 | 45 | 0.6093 | 0.7010 | 0.7918 | 0.7464 |
| 0.3753 | 4.0 | 60 | 0.7311 | 0.6642 | 0.7584 | 0.7113 |
| 0.2454 | 5.0 | 75 | 1.0231 | 0.6201 | 0.6906 | 0.6554 |
| 0.158 | 6.0 | 90 | 1.2619 | 0.6201 | 0.6918 | 0.6560 |
| 0.1077 | 7.0 | 105 | 1.3472 | 0.6544 | 0.7413 | 0.6978 |
Base model
Hartunka/bert_base_rand_100_v2