nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/distilbert_rand_5_v1_stsb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_5_v1_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_5_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_5_v1_stsb")This model is a fine-tuned version of Hartunka/distilbert_rand_5_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.5973 | 1.0 | 23 | 2.4121 | 0.1351 | 0.1186 | 0.1269 |
| 1.9068 | 2.0 | 46 | 2.3607 | 0.1996 | 0.1763 | 0.1879 |
| 1.6159 | 3.0 | 69 | 2.1528 | 0.3145 | 0.3023 | 0.3084 |
| 1.2787 | 4.0 | 92 | 2.2169 | 0.3339 | 0.3255 | 0.3297 |
| 0.9322 | 5.0 | 115 | 2.3112 | 0.3448 | 0.3374 | 0.3411 |
| 0.7176 | 6.0 | 138 | 2.4950 | 0.3361 | 0.3280 | 0.3321 |
| 0.5481 | 7.0 | 161 | 2.5333 | 0.3626 | 0.3584 | 0.3605 |
| 0.4417 | 8.0 | 184 | 2.3035 | 0.3740 | 0.3674 | 0.3707 |
Base model
Hartunka/distilbert_rand_5_v1