nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/distilbert_rand_50_v1_qqp with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_50_v1_qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_50_v1_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_50_v1_qqp")This model is a fine-tuned version of Hartunka/distilbert_rand_50_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.4792 | 1.0 | 1422 | 0.4546 | 0.7870 | 0.6647 | 0.7258 |
| 0.3719 | 2.0 | 2844 | 0.3931 | 0.8183 | 0.7523 | 0.7853 |
| 0.2971 | 3.0 | 4266 | 0.4138 | 0.8249 | 0.7657 | 0.7953 |
| 0.2387 | 4.0 | 5688 | 0.4155 | 0.8321 | 0.7649 | 0.7985 |
| 0.1924 | 5.0 | 7110 | 0.4695 | 0.8351 | 0.7718 | 0.8035 |
| 0.1575 | 6.0 | 8532 | 0.5058 | 0.8351 | 0.7703 | 0.8027 |
| 0.1303 | 7.0 | 9954 | 0.5473 | 0.8335 | 0.7799 | 0.8067 |
Base model
Hartunka/distilbert_rand_50_v1