nyu-mll/glue
Viewer • Updated • 1.49M • 476k • 498
How to use Hartunka/bert_base_rand_20_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_20_v1_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_20_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_20_v1_stsb")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_20_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_20_v1_stsb")This model is a fine-tuned version of Hartunka/bert_base_rand_20_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 |
|---|---|---|---|---|---|---|
| 2.5033 | 1.0 | 23 | 2.3186 | 0.1505 | 0.1315 | 0.1410 |
| 1.8985 | 2.0 | 46 | 2.5296 | 0.1855 | 0.1748 | 0.1802 |
| 1.6671 | 3.0 | 69 | 2.5970 | 0.2019 | 0.2018 | 0.2018 |
| 1.3208 | 4.0 | 92 | 2.3513 | 0.2943 | 0.2964 | 0.2954 |
| 0.982 | 5.0 | 115 | 2.5607 | 0.2799 | 0.2755 | 0.2777 |
| 0.7114 | 6.0 | 138 | 2.4146 | 0.3261 | 0.3240 | 0.3250 |
Base model
Hartunka/bert_base_rand_20_v1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/bert_base_rand_20_v1_stsb")