nyu-mll/glue
Viewer • Updated • 1.49M • 492k • 498
How to use Hartunka/bert_base_km_100_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_100_v1_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_km_100_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_km_100_v1_stsb")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_km_100_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_km_100_v1_stsb")This model is a fine-tuned version of Hartunka/bert_base_km_100_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.7396 | 1.0 | 23 | 2.5547 | 0.1514 | 0.1351 | 0.1432 |
| 1.9555 | 2.0 | 46 | 2.3166 | 0.1712 | 0.1497 | 0.1605 |
| 1.749 | 3.0 | 69 | 2.3146 | 0.2127 | 0.2000 | 0.2064 |
| 1.3865 | 4.0 | 92 | 2.2490 | 0.2995 | 0.2983 | 0.2989 |
| 0.9821 | 5.0 | 115 | 2.7978 | 0.2457 | 0.2364 | 0.2410 |
| 0.6935 | 6.0 | 138 | 2.8239 | 0.2598 | 0.2516 | 0.2557 |
| 0.4947 | 7.0 | 161 | 2.9618 | 0.2405 | 0.2309 | 0.2357 |
| 0.3874 | 8.0 | 184 | 2.7149 | 0.2566 | 0.2501 | 0.2533 |
| 0.31 | 9.0 | 207 | 2.5269 | 0.2768 | 0.2706 | 0.2737 |
Base model
Hartunka/bert_base_km_100_v1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/bert_base_km_100_v1_stsb")