nyu-mll/glue
Viewer • Updated • 1.49M • 462k • 495
How to use Fah-d/bert-finetuned-cola with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Fah-d/bert-finetuned-cola") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Fah-d/bert-finetuned-cola")
model = AutoModelForSequenceClassification.from_pretrained("Fah-d/bert-finetuned-cola")This model is a fine-tuned version of bert-base-uncased on an unknown dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
glue cola dataset
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Matthews Correlation |
|---|---|---|---|---|
| 0.2742 | 1.0 | 1069 | 0.8391 | 0.4810 |
| 0.2018 | 2.0 | 2138 | 1.0347 | 0.4674 |
| 0.0966 | 3.0 | 3207 | 1.1927 | 0.4810 |
Base model
google-bert/bert-base-uncased