nyu-mll/glue
Viewer • Updated • 1.49M • 472k • 504
How to use Hartunka/distilbert_rand_20_v2_stsb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_20_v2_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_20_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_20_v2_stsb")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_rand_20_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_rand_20_v2_stsb")This model is a fine-tuned version of Hartunka/distilbert_rand_20_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.8409 | 1.0 | 23 | 2.6483 | 0.1073 | 0.0837 | 0.0955 |
| 1.937 | 2.0 | 46 | 2.4296 | 0.1982 | 0.1718 | 0.1850 |
| 1.7127 | 3.0 | 69 | 2.4168 | 0.2334 | 0.2205 | 0.2270 |
| 1.3482 | 4.0 | 92 | 2.3318 | 0.3011 | 0.2937 | 0.2974 |
| 0.9691 | 5.0 | 115 | 2.5006 | 0.3014 | 0.2903 | 0.2959 |
| 0.7285 | 6.0 | 138 | 2.4679 | 0.3349 | 0.3254 | 0.3302 |
| 0.572 | 7.0 | 161 | 2.5069 | 0.3510 | 0.3474 | 0.3492 |
| 0.4434 | 8.0 | 184 | 2.4404 | 0.3636 | 0.3552 | 0.3594 |
| 0.3722 | 9.0 | 207 | 2.3603 | 0.3501 | 0.3421 | 0.3461 |
Base model
Hartunka/distilbert_rand_20_v2
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/distilbert_rand_20_v2_stsb")