nyu-mll/glue
Viewer • Updated • 1.49M • 466k • 496
How to use Hartunka/bert_base_km_50_v2_stsb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/bert_base_km_50_v2_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_km_50_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_km_50_v2_stsb")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_km_50_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_km_50_v2_stsb")This model is a fine-tuned version of Hartunka/bert_base_km_50_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.863 | 1.0 | 23 | 2.9546 | 0.1062 | 0.1142 | 0.1102 |
| 1.9987 | 2.0 | 46 | 2.3012 | 0.2302 | 0.2091 | 0.2197 |
| 1.7872 | 3.0 | 69 | 2.2956 | 0.2660 | 0.2529 | 0.2595 |
| 1.5246 | 4.0 | 92 | 2.4771 | 0.2736 | 0.2569 | 0.2652 |
| 1.247 | 5.0 | 115 | 2.5712 | 0.2505 | 0.2352 | 0.2428 |
| 0.9895 | 6.0 | 138 | 2.4369 | 0.3222 | 0.3227 | 0.3225 |
| 0.77 | 7.0 | 161 | 2.3281 | 0.3366 | 0.3382 | 0.3374 |
| 0.6098 | 8.0 | 184 | 2.4814 | 0.3255 | 0.3204 | 0.3230 |
Base model
Hartunka/bert_base_km_50_v2
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/bert_base_km_50_v2_stsb")