nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/tiny_bert_rand_20_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_20_v1_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_rand_20_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_rand_20_v1_stsb")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_rand_20_v1_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_rand_20_v1_stsb")This model is a fine-tuned version of Hartunka/tiny_bert_rand_20_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.3912 | 1.0 | 23 | 2.2253 | 0.1250 | 0.1099 | 0.1174 |
| 2.0454 | 2.0 | 46 | 2.6572 | 0.1081 | 0.0913 | 0.0997 |
| 1.8227 | 3.0 | 69 | 2.3758 | 0.1796 | 0.1638 | 0.1717 |
| 1.6031 | 4.0 | 92 | 2.4632 | 0.2419 | 0.2344 | 0.2381 |
| 1.2975 | 5.0 | 115 | 2.4302 | 0.2774 | 0.2740 | 0.2757 |
| 1.028 | 6.0 | 138 | 2.5196 | 0.2860 | 0.2863 | 0.2861 |
Base model
Hartunka/tiny_bert_rand_20_v1
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/tiny_bert_rand_20_v1_stsb")