nyu-mll/glue
Viewer • Updated • 1.49M • 470k • 496
How to use Hartunka/bert_base_km_10_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_10_v2_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_km_10_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_km_10_v2_stsb")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_km_10_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_km_10_v2_stsb")This model is a fine-tuned version of Hartunka/bert_base_km_10_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.711 | 1.0 | 23 | 2.3545 | 0.1112 | 0.1020 | 0.1066 |
| 1.9988 | 2.0 | 46 | 2.2654 | 0.2097 | 0.1923 | 0.2010 |
| 1.8048 | 3.0 | 69 | 2.2942 | 0.2306 | 0.2124 | 0.2215 |
| 1.5374 | 4.0 | 92 | 2.5475 | 0.2700 | 0.2536 | 0.2618 |
| 1.2573 | 5.0 | 115 | 2.6120 | 0.2696 | 0.2640 | 0.2668 |
| 0.9617 | 6.0 | 138 | 2.5692 | 0.2949 | 0.2881 | 0.2915 |
| 0.7474 | 7.0 | 161 | 2.6657 | 0.3060 | 0.3096 | 0.3078 |
Base model
Hartunka/bert_base_km_10_v2
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/bert_base_km_10_v2_stsb")