nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/tiny_bert_km_5_v2_mrpc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/tiny_bert_km_5_v2_mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_km_5_v2_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_km_5_v2_mrpc")This model is a fine-tuned version of Hartunka/tiny_bert_km_5_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.6277 | 1.0 | 15 | 0.6064 | 0.6887 | 0.8096 | 0.7492 |
| 0.5964 | 2.0 | 30 | 0.6007 | 0.6765 | 0.7857 | 0.7311 |
| 0.5743 | 3.0 | 45 | 0.6121 | 0.6985 | 0.8156 | 0.7571 |
| 0.5591 | 4.0 | 60 | 0.5942 | 0.6838 | 0.7817 | 0.7328 |
| 0.5162 | 5.0 | 75 | 0.6068 | 0.6814 | 0.7903 | 0.7358 |
| 0.4733 | 6.0 | 90 | 0.6536 | 0.6544 | 0.7384 | 0.6964 |
| 0.4261 | 7.0 | 105 | 0.6743 | 0.7059 | 0.8020 | 0.7539 |
| 0.3647 | 8.0 | 120 | 0.7379 | 0.6814 | 0.7774 | 0.7294 |
| 0.2976 | 9.0 | 135 | 0.8383 | 0.6299 | 0.7299 | 0.6799 |
Base model
Hartunka/tiny_bert_km_5_v2