nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/tiny_bert_rand_5_v1_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_v1_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_rand_5_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_rand_5_v1_stsb")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_rand_5_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_rand_5_v1_stsb")This model is a fine-tuned version of Hartunka/tiny_bert_rand_5_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 |
|---|---|---|---|---|---|---|
| 3.4897 | 1.0 | 23 | 2.4595 | 0.0690 | 0.0582 | 0.0636 |
| 2.0096 | 2.0 | 46 | 2.6146 | 0.1248 | 0.1084 | 0.1166 |
| 1.8479 | 3.0 | 69 | 2.3951 | 0.1948 | 0.1792 | 0.1870 |
| 1.6023 | 4.0 | 92 | 2.3876 | 0.2931 | 0.2855 | 0.2893 |
| 1.3085 | 5.0 | 115 | 2.4778 | 0.2811 | 0.2712 | 0.2761 |
| 1.0396 | 6.0 | 138 | 2.4495 | 0.3129 | 0.3111 | 0.3120 |
| 0.8308 | 7.0 | 161 | 2.4751 | 0.3386 | 0.3393 | 0.3390 |
| 0.6749 | 8.0 | 184 | 2.5454 | 0.3256 | 0.3217 | 0.3237 |
| 0.574 | 9.0 | 207 | 2.6687 | 0.3171 | 0.3124 | 0.3148 |
Base model
Hartunka/tiny_bert_rand_5_v1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/tiny_bert_rand_5_v1_stsb")