nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/bert_base_rand_100_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_100_v2_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/bert_base_rand_100_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/bert_base_rand_100_v2_stsb")This model is a fine-tuned version of Hartunka/bert_base_rand_100_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.8477 | 1.0 | 23 | 2.5026 | 0.0881 | 0.0800 | 0.0840 |
| 1.9428 | 2.0 | 46 | 2.4721 | 0.1475 | 0.1358 | 0.1417 |
| 1.6984 | 3.0 | 69 | 2.4307 | 0.2244 | 0.2178 | 0.2211 |
| 1.3566 | 4.0 | 92 | 2.5091 | 0.2426 | 0.2407 | 0.2416 |
| 1.0597 | 5.0 | 115 | 2.5674 | 0.2486 | 0.2424 | 0.2455 |
| 0.8102 | 6.0 | 138 | 2.6909 | 0.2713 | 0.2666 | 0.2690 |
| 0.6127 | 7.0 | 161 | 2.7525 | 0.2639 | 0.2592 | 0.2616 |
| 0.4965 | 8.0 | 184 | 2.8618 | 0.2606 | 0.2565 | 0.2586 |
Base model
Hartunka/bert_base_rand_100_v2