nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/tiny_bert_rand_5_v2_qqp with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/tiny_bert_rand_5_v2_qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_rand_5_v2_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_rand_5_v2_qqp")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_rand_5_v2_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_rand_5_v2_qqp")This model is a fine-tuned version of Hartunka/tiny_bert_rand_5_v2 on the GLUE QQP 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.4948 | 1.0 | 1422 | 0.4481 | 0.7835 | 0.6860 | 0.7347 |
| 0.4052 | 2.0 | 2844 | 0.4211 | 0.8023 | 0.7129 | 0.7576 |
| 0.3464 | 3.0 | 4266 | 0.4161 | 0.8146 | 0.7372 | 0.7759 |
| 0.2996 | 4.0 | 5688 | 0.4293 | 0.8191 | 0.7423 | 0.7807 |
| 0.2623 | 5.0 | 7110 | 0.4363 | 0.8210 | 0.7572 | 0.7891 |
| 0.2317 | 6.0 | 8532 | 0.4542 | 0.8218 | 0.7602 | 0.7910 |
| 0.207 | 7.0 | 9954 | 0.4872 | 0.8216 | 0.7650 | 0.7933 |
| 0.184 | 8.0 | 11376 | 0.5373 | 0.8273 | 0.7644 | 0.7959 |
Base model
Hartunka/tiny_bert_rand_5_v2
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/tiny_bert_rand_5_v2_qqp")