nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/distilbert_km_10_v2_stsb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/distilbert_km_10_v2_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/distilbert_km_10_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/distilbert_km_10_v2_stsb")This model is a fine-tuned version of Hartunka/distilbert_km_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 |
|---|---|---|---|---|---|---|
| 3.0233 | 1.0 | 23 | 2.3083 | 0.1515 | 0.1395 | 0.1455 |
| 1.9441 | 2.0 | 46 | 2.4963 | 0.1775 | 0.1586 | 0.1681 |
| 1.6958 | 3.0 | 69 | 2.3428 | 0.2236 | 0.2030 | 0.2133 |
| 1.428 | 4.0 | 92 | 2.5911 | 0.2649 | 0.2564 | 0.2607 |
| 1.1342 | 5.0 | 115 | 2.4843 | 0.2990 | 0.2940 | 0.2965 |
| 0.828 | 6.0 | 138 | 2.4831 | 0.3132 | 0.3131 | 0.3131 |
Base model
Hartunka/distilbert_km_10_v2