nyu-mll/glue
Viewer • Updated • 1.49M • 458k • 495
How to use Hartunka/distilbert_rand_20_v1_qqp with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_20_v1_qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_20_v1_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_20_v1_qqp")This model is a fine-tuned version of Hartunka/distilbert_rand_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.4768 | 1.0 | 1422 | 0.4603 | 0.7822 | 0.6456 | 0.7139 |
| 0.3716 | 2.0 | 2844 | 0.3971 | 0.8160 | 0.7458 | 0.7809 |
| 0.2973 | 3.0 | 4266 | 0.4102 | 0.8253 | 0.7584 | 0.7918 |
| 0.2381 | 4.0 | 5688 | 0.4472 | 0.8304 | 0.7576 | 0.7940 |
| 0.1934 | 5.0 | 7110 | 0.4918 | 0.8317 | 0.7601 | 0.7959 |
| 0.1583 | 6.0 | 8532 | 0.4797 | 0.8343 | 0.7693 | 0.8018 |
| 0.131 | 7.0 | 9954 | 0.6388 | 0.8366 | 0.7768 | 0.8067 |
Base model
Hartunka/distilbert_rand_20_v1