nyu-mll/glue
Viewer • Updated • 1.49M • 492k • 498
How to use Hartunka/bert_base_km_10_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_10_v1_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_km_10_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_km_10_v1_stsb")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_km_10_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_km_10_v1_stsb")This model is a fine-tuned version of Hartunka/bert_base_km_10_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.7027 | 1.0 | 23 | 2.1875 | 0.2207 | 0.2074 | 0.2141 |
| 1.9228 | 2.0 | 46 | 2.1904 | 0.2334 | 0.2271 | 0.2303 |
| 1.6984 | 3.0 | 69 | 2.2392 | 0.2805 | 0.2828 | 0.2816 |
| 1.3717 | 4.0 | 92 | 2.3772 | 0.2851 | 0.2845 | 0.2848 |
| 1.044 | 5.0 | 115 | 2.4946 | 0.3093 | 0.3120 | 0.3107 |
| 0.7602 | 6.0 | 138 | 2.5728 | 0.2738 | 0.2716 | 0.2727 |
Base model
Hartunka/bert_base_km_10_v1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/bert_base_km_10_v1_stsb")