nyu-mll/glue
Viewer • Updated • 1.49M • 484k • 500
How to use Hartunka/distilbert_rand_5_v2_stsb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_5_v2_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_5_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_5_v2_stsb")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_5_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_5_v2_stsb")This model is a fine-tuned version of Hartunka/distilbert_rand_5_v2 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.6404 | 1.0 | 23 | 2.4147 | 0.1257 | 0.1083 | 0.1170 |
| 1.8953 | 2.0 | 46 | 2.4776 | 0.2028 | 0.1802 | 0.1915 |
| 1.6258 | 3.0 | 69 | 2.2658 | 0.2859 | 0.2725 | 0.2792 |
| 1.3145 | 4.0 | 92 | 2.3222 | 0.3224 | 0.3227 | 0.3226 |
| 0.9743 | 5.0 | 115 | 2.4189 | 0.3225 | 0.3123 | 0.3174 |
| 0.7528 | 6.0 | 138 | 2.4692 | 0.3326 | 0.3285 | 0.3305 |
| 0.5989 | 7.0 | 161 | 2.3821 | 0.3625 | 0.3590 | 0.3607 |
| 0.4902 | 8.0 | 184 | 2.4665 | 0.3652 | 0.3618 | 0.3635 |
Base model
Hartunka/distilbert_rand_5_v2
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_5_v2_stsb")