nyu-mll/glue
Viewer • Updated • 1.49M • 476k • 498
How to use Hartunka/distilbert_km_20_v1_qqp with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_km_20_v1_qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_km_20_v1_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_km_20_v1_qqp")This model is a fine-tuned version of Hartunka/distilbert_km_20_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.485 | 1.0 | 1422 | 0.4343 | 0.7906 | 0.6921 | 0.7413 |
| 0.3809 | 2.0 | 2844 | 0.3983 | 0.8152 | 0.7476 | 0.7814 |
| 0.307 | 3.0 | 4266 | 0.3997 | 0.8230 | 0.7683 | 0.7957 |
| 0.2452 | 4.0 | 5688 | 0.4376 | 0.8293 | 0.7561 | 0.7927 |
| 0.1961 | 5.0 | 7110 | 0.4592 | 0.8329 | 0.7672 | 0.8001 |
| 0.1568 | 6.0 | 8532 | 0.5182 | 0.8240 | 0.7739 | 0.7989 |
| 0.1273 | 7.0 | 9954 | 0.5558 | 0.8324 | 0.7772 | 0.8048 |
Base model
Hartunka/distilbert_km_20_v1