nyu-mll/glue
Viewer • Updated • 1.49M • 473k • 504
How to use lorisrossi/test-bert-finetuned-cola with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="lorisrossi/test-bert-finetuned-cola") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("lorisrossi/test-bert-finetuned-cola")
model = AutoModelForSequenceClassification.from_pretrained("lorisrossi/test-bert-finetuned-cola")This model is a fine-tuned version of bert-base-cased on the glue/cola 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.4544 | 1.0 | 1069 | 0.4632 | 0.4992 |
| 0.3314 | 2.0 | 2138 | 0.5560 | 0.5731 |
| 0.1905 | 3.0 | 3207 | 0.7912 | 0.5700 |
Base model
google-bert/bert-base-cased