nyu-mll/glue
Viewer • Updated • 1.49M • 492k • 499
How to use Hartunka/tiny_bert_km_10_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_10_v1_qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_km_10_v1_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_km_10_v1_qqp")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_km_10_v1_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_km_10_v1_qqp")This model is a fine-tuned version of Hartunka/tiny_bert_km_10_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.494 | 1.0 | 1422 | 0.4530 | 0.7837 | 0.6826 | 0.7331 |
| 0.4064 | 2.0 | 2844 | 0.4255 | 0.8001 | 0.7039 | 0.7520 |
| 0.3487 | 3.0 | 4266 | 0.4186 | 0.8138 | 0.7303 | 0.7721 |
| 0.3007 | 4.0 | 5688 | 0.4171 | 0.8212 | 0.7435 | 0.7823 |
| 0.261 | 5.0 | 7110 | 0.4421 | 0.8216 | 0.7587 | 0.7902 |
| 0.2272 | 6.0 | 8532 | 0.4579 | 0.8228 | 0.7617 | 0.7922 |
| 0.2 | 7.0 | 9954 | 0.4847 | 0.8272 | 0.7666 | 0.7969 |
| 0.176 | 8.0 | 11376 | 0.5298 | 0.8280 | 0.7642 | 0.7961 |
| 0.1561 | 9.0 | 12798 | 0.5477 | 0.8293 | 0.7700 | 0.7997 |
Base model
Hartunka/tiny_bert_km_10_v1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/tiny_bert_km_10_v1_qqp")