nyu-mll/glue
Viewer • Updated • 1.49M • 463k • 495
How to use Hartunka/distilbert_km_5_v1_qqp with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_km_5_v1_qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_km_5_v1_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_km_5_v1_qqp")This model is a fine-tuned version of Hartunka/distilbert_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.4712 | 1.0 | 1422 | 0.4294 | 0.7967 | 0.6978 | 0.7473 |
| 0.3615 | 2.0 | 2844 | 0.3917 | 0.8194 | 0.7582 | 0.7888 |
| 0.2803 | 3.0 | 4266 | 0.4103 | 0.8256 | 0.7560 | 0.7908 |
| 0.2139 | 4.0 | 5688 | 0.4465 | 0.8328 | 0.7556 | 0.7942 |
| 0.1641 | 5.0 | 7110 | 0.5098 | 0.8366 | 0.7628 | 0.7997 |
| 0.1301 | 6.0 | 8532 | 0.5651 | 0.8360 | 0.7722 | 0.8041 |
| 0.1047 | 7.0 | 9954 | 0.5929 | 0.8369 | 0.7778 | 0.8073 |
Base model
Hartunka/distilbert_km_5_v1