nyu-mll/glue
Viewer • Updated • 1.49M • 476k • 498
How to use Hartunka/bert_base_rand_100_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_100_v1_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_100_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_100_v1_stsb")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_100_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_100_v1_stsb")This model is a fine-tuned version of Hartunka/bert_base_rand_100_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.928 | 1.0 | 23 | 2.4646 | 0.0973 | 0.0902 | 0.0937 |
| 1.9606 | 2.0 | 46 | 2.2721 | 0.1714 | 0.1465 | 0.1590 |
| 1.6768 | 3.0 | 69 | 2.3989 | 0.2291 | 0.2257 | 0.2274 |
| 1.3265 | 4.0 | 92 | 2.4733 | 0.2693 | 0.2725 | 0.2709 |
| 1.0076 | 5.0 | 115 | 2.8602 | 0.2450 | 0.2457 | 0.2454 |
| 0.7949 | 6.0 | 138 | 2.7485 | 0.2606 | 0.2643 | 0.2624 |
| 0.626 | 7.0 | 161 | 2.5590 | 0.2792 | 0.2811 | 0.2801 |
Base model
Hartunka/bert_base_rand_100_v1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/bert_base_rand_100_v1_stsb")