nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/distilbert_rand_10_v2_qqp with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_10_v2_qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_10_v2_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_10_v2_qqp")This model is a fine-tuned version of Hartunka/distilbert_rand_10_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.478 | 1.0 | 1422 | 0.4505 | 0.7875 | 0.6639 | 0.7257 |
| 0.3705 | 2.0 | 2844 | 0.3977 | 0.8198 | 0.7526 | 0.7862 |
| 0.2963 | 3.0 | 4266 | 0.4050 | 0.8209 | 0.7702 | 0.7956 |
| 0.2384 | 4.0 | 5688 | 0.4476 | 0.8296 | 0.7533 | 0.7914 |
| 0.1931 | 5.0 | 7110 | 0.4868 | 0.8325 | 0.7566 | 0.7945 |
| 0.1571 | 6.0 | 8532 | 0.5058 | 0.8350 | 0.7761 | 0.8056 |
| 0.1305 | 7.0 | 9954 | 0.5594 | 0.8364 | 0.7773 | 0.8069 |
Base model
Hartunka/distilbert_rand_10_v2