nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/bert_base_rand_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_rand_20_v2_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_20_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_20_v2_stsb")This model is a fine-tuned version of Hartunka/bert_base_rand_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.5065 | 1.0 | 23 | 2.2506 | 0.1529 | 0.1304 | 0.1417 |
| 1.8387 | 2.0 | 46 | 2.3273 | 0.2111 | 0.1961 | 0.2036 |
| 1.5726 | 3.0 | 69 | 2.3812 | 0.2627 | 0.2574 | 0.2600 |
| 1.2262 | 4.0 | 92 | 2.3091 | 0.3068 | 0.3049 | 0.3058 |
| 0.9898 | 5.0 | 115 | 2.5821 | 0.3066 | 0.3007 | 0.3036 |
| 0.8069 | 6.0 | 138 | 2.8197 | 0.2832 | 0.2837 | 0.2835 |
Base model
Hartunka/bert_base_rand_20_v2