nyu-mll/glue
Viewer • Updated • 1.49M • 487k • 498
How to use Hartunka/bert_base_km_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_km_50_v1_mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_km_50_v1_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_km_50_v1_mrpc")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_km_50_v1_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_km_50_v1_mrpc")This model is a fine-tuned version of Hartunka/bert_base_km_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.6263 | 1.0 | 15 | 0.5978 | 0.6887 | 0.8019 | 0.7453 |
| 0.572 | 2.0 | 30 | 0.5894 | 0.7034 | 0.8141 | 0.7588 |
| 0.5108 | 3.0 | 45 | 0.6017 | 0.7034 | 0.8070 | 0.7552 |
| 0.4158 | 4.0 | 60 | 0.6797 | 0.6838 | 0.7909 | 0.7374 |
| 0.2727 | 5.0 | 75 | 0.8248 | 0.6446 | 0.7300 | 0.6873 |
| 0.1534 | 6.0 | 90 | 1.0887 | 0.6176 | 0.7143 | 0.6660 |
| 0.083 | 7.0 | 105 | 1.1340 | 0.6593 | 0.7531 | 0.7062 |
Base model
Hartunka/bert_base_km_50_v1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/bert_base_km_50_v1_mrpc")