nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/distilbert_km_50_v1_stsb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_km_50_v1_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_km_50_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_km_50_v1_stsb")This model is a fine-tuned version of Hartunka/distilbert_km_50_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 |
|---|---|---|---|---|---|---|
| 3.0505 | 1.0 | 23 | 2.1755 | 0.2112 | 0.1931 | 0.2021 |
| 2.0219 | 2.0 | 46 | 2.3760 | 0.2126 | 0.2010 | 0.2068 |
| 1.7916 | 3.0 | 69 | 2.1910 | 0.2832 | 0.2696 | 0.2764 |
| 1.57 | 4.0 | 92 | 2.5241 | 0.2673 | 0.2630 | 0.2652 |
| 1.2276 | 5.0 | 115 | 2.3851 | 0.3015 | 0.3065 | 0.3040 |
| 0.9544 | 6.0 | 138 | 2.5094 | 0.2699 | 0.2661 | 0.2680 |
Base model
Hartunka/distilbert_km_50_v1