nyu-mll/glue
Viewer • Updated • 1.49M • 484k • 498
How to use joagonzalez/bert-fine-tuned-cola with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="joagonzalez/bert-fine-tuned-cola") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("joagonzalez/bert-fine-tuned-cola")
model = AutoModelForSequenceClassification.from_pretrained("joagonzalez/bert-fine-tuned-cola")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.4827 | 1.0 | 1069 | 0.5936 | 0.4448 |
| 0.3538 | 2.0 | 2138 | 0.5796 | 0.6023 |
| 0.2028 | 3.0 | 3207 | 0.7589 | 0.5779 |
| 0.1219 | 4.0 | 4276 | 0.9503 | 0.5765 |