nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/distilbert_km_20_v2_qqp with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_km_20_v2_qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_km_20_v2_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_km_20_v2_qqp")This model is a fine-tuned version of Hartunka/distilbert_km_20_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.4873 | 1.0 | 1422 | 0.4439 | 0.7871 | 0.6789 | 0.7330 |
| 0.3842 | 2.0 | 2844 | 0.4049 | 0.8114 | 0.7354 | 0.7734 |
| 0.3094 | 3.0 | 4266 | 0.3997 | 0.8217 | 0.7599 | 0.7908 |
| 0.2464 | 4.0 | 5688 | 0.4326 | 0.8267 | 0.7592 | 0.7929 |
| 0.1952 | 5.0 | 7110 | 0.4403 | 0.8321 | 0.7708 | 0.8015 |
| 0.1541 | 6.0 | 8532 | 0.5289 | 0.8303 | 0.7650 | 0.7976 |
| 0.1242 | 7.0 | 9954 | 0.6010 | 0.8328 | 0.7704 | 0.8016 |
| 0.1003 | 8.0 | 11376 | 0.6166 | 0.8329 | 0.7733 | 0.8031 |
Base model
Hartunka/distilbert_km_20_v2