nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/tiny_bert_rand_50_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_50_v2_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_rand_50_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_rand_50_v2_stsb")This model is a fine-tuned version of Hartunka/tiny_bert_rand_50_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.577 | 1.0 | 23 | 2.3197 | 0.1206 | 0.1077 | 0.1142 |
| 2.0557 | 2.0 | 46 | 2.4031 | 0.1291 | 0.1249 | 0.1270 |
| 1.8854 | 3.0 | 69 | 2.3713 | 0.2039 | 0.1988 | 0.2013 |
| 1.7118 | 4.0 | 92 | 2.3258 | 0.2474 | 0.2463 | 0.2469 |
| 1.4486 | 5.0 | 115 | 2.2828 | 0.2634 | 0.2580 | 0.2607 |
| 1.2898 | 6.0 | 138 | 2.7080 | 0.2622 | 0.2744 | 0.2683 |
| 1.0578 | 7.0 | 161 | 2.6507 | 0.2815 | 0.2900 | 0.2857 |
| 0.8953 | 8.0 | 184 | 2.8633 | 0.2585 | 0.2633 | 0.2609 |
| 0.7584 | 9.0 | 207 | 3.1760 | 0.2421 | 0.2473 | 0.2447 |
| 0.6589 | 10.0 | 230 | 3.0019 | 0.2613 | 0.2697 | 0.2655 |
Base model
Hartunka/tiny_bert_rand_50_v2