nyu-mll/glue
Viewer • Updated • 1.49M • 480k • 498
How to use Hartunka/bert_base_km_5_v1_stsb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/bert_base_km_5_v1_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_km_5_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_km_5_v1_stsb")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_km_5_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_km_5_v1_stsb")This model is a fine-tuned version of Hartunka/bert_base_km_5_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 |
|---|---|---|---|---|---|---|
| 2.6517 | 1.0 | 23 | 2.3255 | 0.1330 | 0.1205 | 0.1268 |
| 1.9658 | 2.0 | 46 | 2.3461 | 0.2386 | 0.2286 | 0.2336 |
| 1.6725 | 3.0 | 69 | 2.4374 | 0.2424 | 0.2349 | 0.2387 |
| 1.2633 | 4.0 | 92 | 2.2394 | 0.3227 | 0.3216 | 0.3221 |
| 0.877 | 5.0 | 115 | 2.4882 | 0.3102 | 0.3147 | 0.3125 |
| 0.6898 | 6.0 | 138 | 2.4795 | 0.3147 | 0.3068 | 0.3107 |
| 0.4742 | 7.0 | 161 | 2.6675 | 0.2998 | 0.2927 | 0.2963 |
| 0.3676 | 8.0 | 184 | 2.3370 | 0.3624 | 0.3603 | 0.3614 |
| 0.3107 | 9.0 | 207 | 2.4862 | 0.3395 | 0.3334 | 0.3364 |
Base model
Hartunka/bert_base_km_5_v1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/bert_base_km_5_v1_stsb")