nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/tiny_bert_km_20_v2_stsb with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Hartunka/tiny_bert_km_20_v2_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_km_20_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_km_20_v2_stsb")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_km_20_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_km_20_v2_stsb")This model is a fine-tuned version of Hartunka/tiny_bert_km_20_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.587 | 1.0 | 23 | 2.2511 | 0.0929 | 0.0866 | 0.0898 |
| 2.048 | 2.0 | 46 | 2.4803 | 0.1373 | 0.1285 | 0.1329 |
| 1.919 | 3.0 | 69 | 2.3695 | 0.1598 | 0.1517 | 0.1558 |
| 1.8084 | 4.0 | 92 | 2.4825 | 0.2266 | 0.2217 | 0.2241 |
| 1.6039 | 5.0 | 115 | 2.5224 | 0.2052 | 0.2036 | 0.2044 |
| 1.3938 | 6.0 | 138 | 2.4211 | 0.2662 | 0.2640 | 0.2651 |
Base model
Hartunka/tiny_bert_km_20_v2
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/tiny_bert_km_20_v2_stsb")