nyu-mll/glue
Viewer • Updated • 1.49M • 470k • 497
How to use Hartunka/bert_base_rand_50_v1_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_v1_mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_50_v1_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_50_v1_mrpc")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_50_v1_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_50_v1_mrpc")This model is a fine-tuned version of Hartunka/bert_base_rand_50_v1 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.6274 | 1.0 | 15 | 0.6055 | 0.6740 | 0.7816 | 0.7278 |
| 0.57 | 2.0 | 30 | 0.6031 | 0.7010 | 0.7867 | 0.7438 |
| 0.4881 | 3.0 | 45 | 0.6269 | 0.6863 | 0.7673 | 0.7268 |
| 0.3638 | 4.0 | 60 | 0.7925 | 0.6544 | 0.7394 | 0.6969 |
| 0.2309 | 5.0 | 75 | 0.9225 | 0.6667 | 0.7606 | 0.7136 |
| 0.1597 | 6.0 | 90 | 1.0316 | 0.6789 | 0.7706 | 0.7247 |
| 0.0979 | 7.0 | 105 | 1.3663 | 0.6471 | 0.75 | 0.6985 |
Base model
Hartunka/bert_base_rand_50_v1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/bert_base_rand_50_v1_mrpc")