nyu-mll/glue
Viewer • Updated • 1.49M • 388k • 516
How to use Hartunka/tiny_bert_km_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_km_50_v2_stsb") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_km_50_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_km_50_v2_stsb")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Hartunka/tiny_bert_km_50_v2_stsb")
model = AutoModelForSequenceClassification.from_pretrained("Hartunka/tiny_bert_km_50_v2_stsb")This model is a fine-tuned version of Hartunka/tiny_bert_km_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.769 | 1.0 | 23 | 2.2703 | 0.0633 | 0.0604 | 0.0619 |
| 2.1015 | 2.0 | 46 | 2.4637 | 0.0982 | 0.0916 | 0.0949 |
| 1.9322 | 3.0 | 69 | 2.4902 | 0.1389 | 0.1233 | 0.1311 |
| 1.7867 | 4.0 | 92 | 2.2723 | 0.2538 | 0.2474 | 0.2506 |
| 1.5685 | 5.0 | 115 | 2.7302 | 0.2094 | 0.2023 | 0.2059 |
| 1.3328 | 6.0 | 138 | 2.6151 | 0.2652 | 0.2647 | 0.2649 |
Base model
Hartunka/tiny_bert_km_50_v2
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Hartunka/tiny_bert_km_50_v2_stsb")