nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/tiny_bert_rand_50_v2_mrpc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/tiny_bert_rand_50_v2_mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_rand_50_v2_mrpc")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_rand_50_v2_mrpc")This model is a fine-tuned version of Hartunka/tiny_bert_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.6033 | 0.6961 | 0.8092 | 0.7527 |
| 0.5912 | 2.0 | 30 | 0.5925 | 0.6985 | 0.8099 | 0.7542 |
| 0.5551 | 3.0 | 45 | 0.6019 | 0.6863 | 0.7994 | 0.7428 |
| 0.5148 | 4.0 | 60 | 0.6426 | 0.6422 | 0.7214 | 0.6818 |
| 0.43 | 5.0 | 75 | 0.6741 | 0.6225 | 0.7105 | 0.6665 |
| 0.3406 | 6.0 | 90 | 0.8508 | 0.6373 | 0.7422 | 0.6897 |
| 0.2595 | 7.0 | 105 | 0.9303 | 0.6740 | 0.7734 | 0.7237 |
Base model
Hartunka/tiny_bert_rand_50_v2