nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/bert_base_rand_5_v2_stsb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/bert_base_rand_5_v2_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_5_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_5_v2_stsb")This model is a fine-tuned version of Hartunka/bert_base_rand_5_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.6563 | 1.0 | 23 | 2.4689 | 0.0989 | 0.0822 | 0.0905 |
| 1.8843 | 2.0 | 46 | 2.3163 | 0.1954 | 0.1619 | 0.1787 |
| 1.6315 | 3.0 | 69 | 2.3652 | 0.2604 | 0.2509 | 0.2557 |
| 1.2245 | 4.0 | 92 | 2.5702 | 0.2911 | 0.2862 | 0.2886 |
| 0.8986 | 5.0 | 115 | 2.6825 | 0.2767 | 0.2655 | 0.2711 |
| 0.6617 | 6.0 | 138 | 2.5122 | 0.3121 | 0.3040 | 0.3081 |
| 0.5165 | 7.0 | 161 | 2.3745 | 0.3379 | 0.3323 | 0.3351 |
Base model
Hartunka/bert_base_rand_5_v2