nyu-mll/glue
Viewer • Updated • 1.49M • 421k • 510
How to use tyson0420/tyson-bert-base-cased with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="tyson0420/tyson-bert-base-cased") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("tyson0420/tyson-bert-base-cased")
model = AutoModelForSequenceClassification.from_pretrained("tyson0420/tyson-bert-base-cased")This model is a fine-tuned version of bert-base-cased on the glue 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 | Matthews Correlation |
|---|---|---|---|---|
| 0.2014 | 1.0 | 1069 | 0.9329 | 0.5127 |
| 0.2245 | 2.0 | 2138 | 0.9916 | 0.5651 |
| 0.1254 | 3.0 | 3207 | 1.0369 | 0.5781 |