nyu-mll/glue
Viewer • Updated • 1.49M • 463k • 495
How to use Hartunka/tiny_bert_km_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_km_5_v2_qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_km_5_v2_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_km_5_v2_qqp")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_km_5_v2_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_km_5_v2_qqp")This model is a fine-tuned version of Hartunka/tiny_bert_km_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.4976 | 1.0 | 1422 | 0.4732 | 0.7705 | 0.6348 | 0.7027 |
| 0.4095 | 2.0 | 2844 | 0.4118 | 0.8045 | 0.7307 | 0.7676 |
| 0.3541 | 3.0 | 4266 | 0.4059 | 0.8161 | 0.7445 | 0.7803 |
| 0.3088 | 4.0 | 5688 | 0.4044 | 0.8236 | 0.7516 | 0.7876 |
| 0.2715 | 5.0 | 7110 | 0.4359 | 0.8229 | 0.7362 | 0.7796 |
| 0.2395 | 6.0 | 8532 | 0.4361 | 0.8292 | 0.7621 | 0.7956 |
| 0.2125 | 7.0 | 9954 | 0.4422 | 0.8311 | 0.7741 | 0.8026 |
| 0.1876 | 8.0 | 11376 | 0.4813 | 0.8353 | 0.7755 | 0.8054 |
| 0.1677 | 9.0 | 12798 | 0.5044 | 0.8330 | 0.7809 | 0.8070 |
Base model
Hartunka/tiny_bert_km_5_v2
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/tiny_bert_km_5_v2_qqp")