nyu-mll/glue
Viewer • Updated • 1.49M • 447k • 525
How to use gokuls/sa_BERT_no_pretrain_stsb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gokuls/sa_BERT_no_pretrain_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gokuls/sa_BERT_no_pretrain_stsb")
model = AutoModelForSequenceClassification.from_pretrained("gokuls/sa_BERT_no_pretrain_stsb", device_map="auto")This model is a fine-tuned version of bert-base-uncased 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.257 | 1.0 | 60 | 3.1111 | 0.0528 | 0.0709 | 0.0619 |
| 2.0476 | 2.0 | 120 | 2.5396 | 0.1394 | 0.1246 | 0.1320 |
| 1.8905 | 3.0 | 180 | 2.5928 | 0.1553 | 0.1593 | 0.1573 |
| 1.5383 | 4.0 | 240 | 3.1130 | 0.1930 | 0.2086 | 0.2008 |
| 1.3384 | 5.0 | 300 | 2.8651 | 0.1788 | 0.2014 | 0.1901 |
| 1.1299 | 6.0 | 360 | 2.9651 | 0.1818 | 0.1947 | 0.1883 |
| 1.0952 | 7.0 | 420 | 2.6404 | 0.2100 | 0.2124 | 0.2112 |