nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/distilbert_rand_5_v1_qqp with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_5_v1_qqp") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_5_v1_qqp")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_5_v1_qqp")This model is a fine-tuned version of Hartunka/distilbert_rand_5_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.4773 | 1.0 | 1422 | 0.4449 | 0.7880 | 0.6650 | 0.7265 |
| 0.3712 | 2.0 | 2844 | 0.3952 | 0.8196 | 0.7500 | 0.7848 |
| 0.2985 | 3.0 | 4266 | 0.4047 | 0.8262 | 0.7640 | 0.7951 |
| 0.2407 | 4.0 | 5688 | 0.4271 | 0.8326 | 0.7632 | 0.7979 |
| 0.1958 | 5.0 | 7110 | 0.4750 | 0.8366 | 0.7664 | 0.8015 |
| 0.1599 | 6.0 | 8532 | 0.4949 | 0.8357 | 0.7781 | 0.8069 |
| 0.1337 | 7.0 | 9954 | 0.5582 | 0.8378 | 0.7783 | 0.8081 |
Base model
Hartunka/distilbert_rand_5_v1