nyu-mll/glue
Viewer • Updated • 1.49M • 492k • 499
How to use Hartunka/bert_base_km_20_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_20_v1_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_km_20_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_km_20_v1_stsb")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_km_20_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_km_20_v1_stsb")This model is a fine-tuned version of Hartunka/bert_base_km_20_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.7536 | 1.0 | 23 | 2.3629 | 0.2232 | 0.2145 | 0.2188 |
| 2.0466 | 2.0 | 46 | 2.2233 | 0.2264 | 0.2236 | 0.2250 |
| 1.83 | 3.0 | 69 | 2.1734 | 0.2765 | 0.2807 | 0.2786 |
| 1.488 | 4.0 | 92 | 2.2847 | 0.2848 | 0.2866 | 0.2857 |
| 1.1184 | 5.0 | 115 | 2.7559 | 0.2705 | 0.2897 | 0.2801 |
| 0.836 | 6.0 | 138 | 2.4744 | 0.3009 | 0.3170 | 0.3090 |
| 0.5651 | 7.0 | 161 | 2.5625 | 0.2950 | 0.3011 | 0.2981 |
| 0.4161 | 8.0 | 184 | 2.4996 | 0.3085 | 0.3151 | 0.3118 |
Base model
Hartunka/bert_base_km_20_v1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/bert_base_km_20_v1_stsb")