nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/bert_base_rand_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_rand_10_v2_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_10_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_10_v2_stsb")This model is a fine-tuned version of Hartunka/bert_base_rand_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.6698 | 1.0 | 23 | 2.3702 | 0.1154 | 0.0941 | 0.1048 |
| 1.9073 | 2.0 | 46 | 2.5553 | 0.1762 | 0.1591 | 0.1676 |
| 1.7118 | 3.0 | 69 | 2.5235 | 0.1830 | 0.1931 | 0.1880 |
| 1.3839 | 4.0 | 92 | 2.3000 | 0.2717 | 0.2712 | 0.2714 |
| 1.0676 | 5.0 | 115 | 2.6445 | 0.2323 | 0.2322 | 0.2322 |
| 0.8664 | 6.0 | 138 | 2.7314 | 0.2522 | 0.2583 | 0.2552 |
| 0.6989 | 7.0 | 161 | 2.6691 | 0.2727 | 0.2750 | 0.2738 |
| 0.568 | 8.0 | 184 | 2.8615 | 0.2635 | 0.2681 | 0.2658 |
| 0.4705 | 9.0 | 207 | 2.7113 | 0.2554 | 0.2386 | 0.2470 |
Base model
Hartunka/bert_base_rand_10_v2