nyu-mll/glue
Viewer • Updated • 1.49M • 466k • 496
How to use Hartunka/distilbert_km_50_v1_qqp with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_km_50_v1_qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_km_50_v1_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_km_50_v1_qqp")This model is a fine-tuned version of Hartunka/distilbert_km_50_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.4859 | 1.0 | 1422 | 0.4412 | 0.7894 | 0.6764 | 0.7329 |
| 0.3828 | 2.0 | 2844 | 0.3962 | 0.8178 | 0.7480 | 0.7829 |
| 0.31 | 3.0 | 4266 | 0.3938 | 0.8249 | 0.7679 | 0.7964 |
| 0.2484 | 4.0 | 5688 | 0.4210 | 0.8299 | 0.7595 | 0.7947 |
| 0.1964 | 5.0 | 7110 | 0.4504 | 0.8320 | 0.7664 | 0.7992 |
| 0.1544 | 6.0 | 8532 | 0.5133 | 0.8262 | 0.7777 | 0.8019 |
| 0.124 | 7.0 | 9954 | 0.5643 | 0.8274 | 0.7772 | 0.8023 |
| 0.1007 | 8.0 | 11376 | 0.6268 | 0.8302 | 0.7772 | 0.8037 |
Base model
Hartunka/distilbert_km_50_v1