nyu-mll/glue
Viewer • Updated • 1.49M • 484k • 498
How to use Hartunka/tiny_bert_km_5_v1_qqp with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/tiny_bert_km_5_v1_qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_km_5_v1_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_km_5_v1_qqp")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_km_5_v1_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_km_5_v1_qqp")This model is a fine-tuned version of Hartunka/tiny_bert_km_5_v1 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.4854 | 1.0 | 1422 | 0.4320 | 0.7934 | 0.7100 | 0.7517 |
| 0.3893 | 2.0 | 2844 | 0.4019 | 0.8130 | 0.7421 | 0.7775 |
| 0.3257 | 3.0 | 4266 | 0.3982 | 0.8229 | 0.7561 | 0.7895 |
| 0.2734 | 4.0 | 5688 | 0.4342 | 0.8248 | 0.7447 | 0.7847 |
| 0.2309 | 5.0 | 7110 | 0.4551 | 0.8302 | 0.7638 | 0.7970 |
| 0.1964 | 6.0 | 8532 | 0.4515 | 0.8269 | 0.7721 | 0.7995 |
| 0.1681 | 7.0 | 9954 | 0.4995 | 0.8293 | 0.7751 | 0.8022 |
| 0.146 | 8.0 | 11376 | 0.5505 | 0.8304 | 0.7759 | 0.8031 |
Base model
Hartunka/tiny_bert_km_5_v1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/tiny_bert_km_5_v1_qqp")