nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/bert_base_rand_50_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_50_v2_mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_50_v2_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_50_v2_mrpc")This model is a fine-tuned version of Hartunka/bert_base_rand_50_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.6271 | 1.0 | 15 | 0.5932 | 0.6912 | 0.8006 | 0.7459 |
| 0.5729 | 2.0 | 30 | 0.5897 | 0.7059 | 0.7931 | 0.7495 |
| 0.4928 | 3.0 | 45 | 0.6287 | 0.6863 | 0.7681 | 0.7272 |
| 0.3613 | 4.0 | 60 | 0.7397 | 0.6789 | 0.7631 | 0.7210 |
| 0.2399 | 5.0 | 75 | 0.9838 | 0.6593 | 0.7421 | 0.7007 |
| 0.1438 | 6.0 | 90 | 1.2018 | 0.6225 | 0.6932 | 0.6579 |
| 0.099 | 7.0 | 105 | 1.4125 | 0.6299 | 0.7091 | 0.6695 |
Base model
Hartunka/bert_base_rand_50_v2