nyu-mll/glue
Viewer • Updated • 1.49M • 476k • 498
How to use anjleeg/roberta-base-finetuned-cola with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="anjleeg/roberta-base-finetuned-cola") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("anjleeg/roberta-base-finetuned-cola")
model = AutoModelForSequenceClassification.from_pretrained("anjleeg/roberta-base-finetuned-cola")This model is a fine-tuned version of roberta-base 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.4453 | 1.0 | 133 | 0.4348 | 0.5391 |
| 0.3121 | 2.0 | 266 | 0.3938 | 0.5827 |
| 0.1149 | 3.0 | 399 | 0.4497 | 0.6272 |
| 0.1194 | 4.0 | 532 | 0.5005 | 0.6076 |
| 0.1639 | 5.0 | 665 | 0.5645 | 0.5943 |