nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/tiny_bert_rand_5_v2_stsb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/tiny_bert_rand_5_v2_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_rand_5_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_rand_5_v2_stsb")This model is a fine-tuned version of Hartunka/tiny_bert_rand_5_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 |
|---|---|---|---|---|---|---|
| 3.1743 | 1.0 | 23 | 2.2973 | 0.1229 | 0.1070 | 0.1149 |
| 2.0355 | 2.0 | 46 | 2.5679 | 0.1150 | 0.1022 | 0.1086 |
| 1.8438 | 3.0 | 69 | 2.2907 | 0.2162 | 0.2034 | 0.2098 |
| 1.6639 | 4.0 | 92 | 2.3388 | 0.2725 | 0.2702 | 0.2714 |
| 1.3815 | 5.0 | 115 | 2.3873 | 0.2710 | 0.2714 | 0.2712 |
| 1.1561 | 6.0 | 138 | 2.3997 | 0.2922 | 0.2918 | 0.2920 |
| 0.9378 | 7.0 | 161 | 2.4841 | 0.3049 | 0.3078 | 0.3064 |
| 0.7814 | 8.0 | 184 | 2.5902 | 0.2925 | 0.2950 | 0.2938 |
Base model
Hartunka/tiny_bert_rand_5_v2