nyu-mll/glue
Viewer • Updated • 1.49M • 477k • 504
How to use Hartunka/distilbert_rand_10_v2_stsb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_10_v2_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_10_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_10_v2_stsb")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_10_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_10_v2_stsb")This model is a fine-tuned version of Hartunka/distilbert_rand_10_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.7267 | 1.0 | 23 | 2.4802 | 0.1260 | 0.1086 | 0.1173 |
| 1.9118 | 2.0 | 46 | 2.4211 | 0.2286 | 0.2110 | 0.2198 |
| 1.6277 | 3.0 | 69 | 2.2101 | 0.3094 | 0.3015 | 0.3055 |
| 1.3088 | 4.0 | 92 | 2.2704 | 0.3073 | 0.3050 | 0.3062 |
| 1.0113 | 5.0 | 115 | 2.4404 | 0.3233 | 0.3195 | 0.3214 |
| 0.7442 | 6.0 | 138 | 2.2811 | 0.3766 | 0.3775 | 0.3770 |
| 0.5763 | 7.0 | 161 | 2.3778 | 0.3448 | 0.3449 | 0.3449 |
| 0.4382 | 8.0 | 184 | 2.5305 | 0.3544 | 0.3537 | 0.3541 |
Base model
Hartunka/distilbert_rand_10_v2
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_10_v2_stsb")