nyu-mll/glue
Viewer • Updated • 1.49M • 466k • 496
How to use Hartunka/bert_base_rand_50_v1_stsb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/bert_base_rand_50_v1_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_50_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_50_v1_stsb")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_50_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_50_v1_stsb")This model is a fine-tuned version of Hartunka/bert_base_rand_50_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 |
|---|---|---|---|---|---|---|
| 3.0174 | 1.0 | 23 | 2.9030 | 0.0773 | 0.0674 | 0.0724 |
| 2.0319 | 2.0 | 46 | 2.4340 | 0.1690 | 0.1495 | 0.1593 |
| 1.7905 | 3.0 | 69 | 2.3889 | 0.2034 | 0.1918 | 0.1976 |
| 1.467 | 4.0 | 92 | 2.2715 | 0.2635 | 0.2600 | 0.2618 |
| 1.1681 | 5.0 | 115 | 2.4279 | 0.2436 | 0.2402 | 0.2419 |
| 1.0229 | 6.0 | 138 | 2.8679 | 0.2669 | 0.2723 | 0.2696 |
| 0.7645 | 7.0 | 161 | 2.5480 | 0.2725 | 0.2734 | 0.2730 |
| 0.6161 | 8.0 | 184 | 2.8213 | 0.2753 | 0.2854 | 0.2804 |
| 0.4918 | 9.0 | 207 | 2.5409 | 0.2620 | 0.2639 | 0.2630 |
Base model
Hartunka/bert_base_rand_50_v1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/bert_base_rand_50_v1_stsb")