nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/distilbert_rand_20_v1_stsb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_20_v1_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_20_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_20_v1_stsb")This model is a fine-tuned version of Hartunka/distilbert_rand_20_v1 on the GLUE STSB 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 | Pearson | Spearmanr | Combined Score |
|---|---|---|---|---|---|---|
| 2.8457 | 1.0 | 23 | 2.4474 | 0.1132 | 0.0915 | 0.1024 |
| 1.9642 | 2.0 | 46 | 2.4648 | 0.1677 | 0.1433 | 0.1555 |
| 1.7115 | 3.0 | 69 | 2.3630 | 0.2444 | 0.2269 | 0.2357 |
| 1.3916 | 4.0 | 92 | 2.2622 | 0.3149 | 0.3107 | 0.3128 |
| 1.0069 | 5.0 | 115 | 2.4629 | 0.2938 | 0.2855 | 0.2896 |
| 0.8358 | 6.0 | 138 | 2.5660 | 0.3170 | 0.3137 | 0.3153 |
| 0.6858 | 7.0 | 161 | 2.4697 | 0.3232 | 0.3208 | 0.3220 |
| 0.5581 | 8.0 | 184 | 2.4712 | 0.3349 | 0.3294 | 0.3321 |
| 0.4323 | 9.0 | 207 | 2.5601 | 0.3044 | 0.2955 | 0.2999 |
Base model
Hartunka/distilbert_rand_20_v1