nyu-mll/glue
Viewer • Updated • 1.49M • 476k • 498
How to use Hartunka/bert_base_rand_10_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_10_v1_mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_10_v1_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_10_v1_mrpc")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_10_v1_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_10_v1_mrpc")This model is a fine-tuned version of Hartunka/bert_base_rand_10_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.6362 | 1.0 | 15 | 0.5929 | 0.6985 | 0.8116 | 0.7551 |
| 0.5718 | 2.0 | 30 | 0.5911 | 0.7157 | 0.8073 | 0.7615 |
| 0.4802 | 3.0 | 45 | 0.6726 | 0.6618 | 0.7570 | 0.7094 |
| 0.3577 | 4.0 | 60 | 0.7457 | 0.6667 | 0.7606 | 0.7136 |
| 0.2272 | 5.0 | 75 | 1.0270 | 0.6373 | 0.7309 | 0.6841 |
| 0.1378 | 6.0 | 90 | 1.1776 | 0.6422 | 0.7355 | 0.6888 |
| 0.1022 | 7.0 | 105 | 1.3714 | 0.6275 | 0.7206 | 0.6740 |
Base model
Hartunka/bert_base_rand_10_v1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/bert_base_rand_10_v1_mrpc")