nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/distilbert_rand_10_v1_stsb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_10_v1_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_10_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_10_v1_stsb")This model is a fine-tuned version of Hartunka/distilbert_rand_10_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.7957 | 1.0 | 23 | 2.4697 | 0.1288 | 0.1025 | 0.1157 |
| 1.9109 | 2.0 | 46 | 2.3163 | 0.2022 | 0.1810 | 0.1916 |
| 1.6472 | 3.0 | 69 | 2.3023 | 0.2627 | 0.2492 | 0.2560 |
| 1.2862 | 4.0 | 92 | 2.3397 | 0.3050 | 0.2967 | 0.3008 |
| 0.9605 | 5.0 | 115 | 2.6706 | 0.3056 | 0.2969 | 0.3013 |
| 0.6815 | 6.0 | 138 | 2.3110 | 0.3523 | 0.3516 | 0.3519 |
| 0.5565 | 7.0 | 161 | 2.5342 | 0.3425 | 0.3427 | 0.3426 |
| 0.4389 | 8.0 | 184 | 2.6022 | 0.3414 | 0.3383 | 0.3398 |
Base model
Hartunka/distilbert_rand_10_v1