PhilipMay/stsb_multi_mt
Viewer • Updated • 86.3k • 2.9k • 68
How to use theCuiCoders/bert-base-uncased-FinedTuned with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="theCuiCoders/bert-base-uncased-FinedTuned") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("theCuiCoders/bert-base-uncased-FinedTuned")
model = AutoModelForSequenceClassification.from_pretrained("theCuiCoders/bert-base-uncased-FinedTuned")This model is a fine-tuned version of bert-base-uncased on the stsb_multi_mt 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 | Mse | Custom Accuracy | Dataset Accuracy |
|---|---|---|---|---|---|---|---|
| 0.028 | 5.5556 | 1000 | 2.7386 | 0.2467 | 2.7386 | 0.2502 | 0.1762 |
| 0.0269 | 11.1111 | 2000 | 2.8265 | 0.2229 | 2.8265 | 0.2589 | 0.1762 |
| 0.0088 | 16.6667 | 3000 | 2.8485 | 0.2219 | 2.8485 | 0.2654 | 0.1762 |
| 0.0141 | 22.2222 | 4000 | 2.8855 | 0.2086 | 2.8855 | 0.2661 | 0.1762 |
| 0.0099 | 27.7778 | 5000 | 2.8081 | 0.2328 | 2.8081 | 0.2632 | 0.1762 |
| 0.0248 | 33.3333 | 6000 | 2.7765 | 0.2309 | 2.7765 | 0.2625 | 0.1762 |
| 0.0353 | 38.8889 | 7000 | 2.8126 | 0.2296 | 2.8126 | 0.2748 | 0.1762 |
| 0.0892 | 44.4444 | 8000 | 2.8362 | 0.2327 | 2.8362 | 0.2567 | 0.1762 |
| 0.0488 | 50.0 | 9000 | 2.7667 | 0.2363 | 2.7667 | 0.2596 | 0.1762 |
| 0.0538 | 55.5556 | 10000 | 2.7885 | 0.2363 | 2.7885 | 0.2632 | 0.1762 |
| 0.0829 | 61.1111 | 11000 | 2.7837 | 0.2348 | 2.7837 | 0.2647 | 0.1762 |
| 0.1473 | 66.6667 | 12000 | 2.7758 | 0.2352 | 2.7758 | 0.2611 | 0.1762 |
Base model
google-bert/bert-base-uncased