klue/klue
Viewer • Updated • 206k • 3.24k • 96
How to use eliza-dukim/bert-base-finetuned-sts with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="eliza-dukim/bert-base-finetuned-sts") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("eliza-dukim/bert-base-finetuned-sts")
model = AutoModelForSequenceClassification.from_pretrained("eliza-dukim/bert-base-finetuned-sts")This model is a fine-tuned version of klue/bert-base on the klue 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 | Pearsonr | F1 |
|---|---|---|---|---|---|
| 0.7836 | 1.0 | 365 | 0.5507 | 0.8435 | 0.8121 |
| 0.1564 | 2.0 | 730 | 0.4396 | 0.8495 | 0.8136 |
| 0.0989 | 3.0 | 1095 | 0.4115 | 0.8756 | 0.8417 |
| 0.0682 | 4.0 | 1460 | 0.4466 | 0.8746 | 0.8449 |