nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/bert_base_rand_50_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_50_v2_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_50_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_50_v2_stsb")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_50_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_50_v2_stsb")This model is a fine-tuned version of Hartunka/bert_base_rand_50_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.7742 | 1.0 | 23 | 2.6998 | 0.1242 | 0.1041 | 0.1142 |
| 1.9014 | 2.0 | 46 | 2.2005 | 0.2317 | 0.2121 | 0.2219 |
| 1.647 | 3.0 | 69 | 2.1775 | 0.3055 | 0.2921 | 0.2988 |
| 1.2684 | 4.0 | 92 | 2.2438 | 0.3100 | 0.2998 | 0.3049 |
| 0.9726 | 5.0 | 115 | 2.6894 | 0.2978 | 0.2932 | 0.2955 |
| 0.7533 | 6.0 | 138 | 2.5985 | 0.3103 | 0.3100 | 0.3101 |
| 0.5559 | 7.0 | 161 | 2.5141 | 0.3397 | 0.3405 | 0.3401 |
| 0.4489 | 8.0 | 184 | 2.7038 | 0.3280 | 0.3296 | 0.3288 |
Base model
Hartunka/bert_base_rand_50_v2
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/bert_base_rand_50_v2_stsb")