nyu-mll/glue
Viewer • Updated • 1.49M • 472k • 497
How to use Hartunka/bert_base_km_20_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_20_v2_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_km_20_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_km_20_v2_stsb")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_km_20_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_km_20_v2_stsb")This model is a fine-tuned version of Hartunka/bert_base_km_20_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.8315 | 1.0 | 23 | 2.3673 | 0.1768 | 0.1697 | 0.1733 |
| 1.9303 | 2.0 | 46 | 2.2888 | 0.2170 | 0.2008 | 0.2089 |
| 1.709 | 3.0 | 69 | 2.2841 | 0.2453 | 0.2242 | 0.2348 |
| 1.4178 | 4.0 | 92 | 2.4758 | 0.2475 | 0.2303 | 0.2389 |
| 1.0869 | 5.0 | 115 | 2.6407 | 0.2646 | 0.2468 | 0.2557 |
| 0.8003 | 6.0 | 138 | 2.4700 | 0.3042 | 0.2980 | 0.3011 |
| 0.6337 | 7.0 | 161 | 2.4532 | 0.3205 | 0.3252 | 0.3228 |
| 0.4849 | 8.0 | 184 | 2.6830 | 0.2970 | 0.2900 | 0.2935 |
Base model
Hartunka/bert_base_km_20_v2
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/bert_base_km_20_v2_stsb")