nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/bert_base_rand_10_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_10_v2_mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_10_v2_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_10_v2_mrpc")This model is a fine-tuned version of Hartunka/bert_base_rand_10_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.635 | 1.0 | 15 | 0.5951 | 0.7010 | 0.8051 | 0.7530 |
| 0.5764 | 2.0 | 30 | 0.5933 | 0.6985 | 0.7876 | 0.7430 |
| 0.4976 | 3.0 | 45 | 0.6354 | 0.6740 | 0.7532 | 0.7136 |
| 0.3711 | 4.0 | 60 | 0.6945 | 0.6789 | 0.7673 | 0.7231 |
| 0.24 | 5.0 | 75 | 1.0009 | 0.6569 | 0.7338 | 0.6954 |
| 0.1426 | 6.0 | 90 | 1.1919 | 0.6299 | 0.7113 | 0.6706 |
| 0.0893 | 7.0 | 105 | 1.2962 | 0.6618 | 0.7518 | 0.7068 |
Base model
Hartunka/bert_base_rand_10_v2