nyu-mll/glue
Viewer • Updated • 1.49M • 472k • 497
How to use Hartunka/distilbert_km_100_v1_qqp with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_km_100_v1_qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_km_100_v1_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_km_100_v1_qqp")This model is a fine-tuned version of Hartunka/distilbert_km_100_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.4919 | 1.0 | 1422 | 0.4533 | 0.7821 | 0.6642 | 0.7232 |
| 0.3921 | 2.0 | 2844 | 0.4085 | 0.8093 | 0.7424 | 0.7758 |
| 0.3188 | 3.0 | 4266 | 0.4120 | 0.8208 | 0.7563 | 0.7885 |
| 0.2569 | 4.0 | 5688 | 0.4426 | 0.8242 | 0.7465 | 0.7853 |
| 0.2054 | 5.0 | 7110 | 0.4547 | 0.8260 | 0.7674 | 0.7967 |
| 0.1647 | 6.0 | 8532 | 0.4840 | 0.8284 | 0.7721 | 0.8002 |
| 0.1329 | 7.0 | 9954 | 0.5799 | 0.8250 | 0.7713 | 0.7981 |
Base model
Hartunka/distilbert_km_100_v1