nyu-mll/glue
Viewer • Updated • 1.49M • 487k • 498
How to use Payoto/roberta-base-finetuned-cola with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Payoto/roberta-base-finetuned-cola") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Payoto/roberta-base-finetuned-cola")
model = AutoModelForSequenceClassification.from_pretrained("Payoto/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.3138 | 1.0 | 133 | 0.4104 | 0.5538 |
| 0.2082 | 2.0 | 266 | 0.4849 | 0.5402 |
| 0.1687 | 3.0 | 399 | 0.5127 | 0.5815 |
| 0.0865 | 4.0 | 532 | 0.5752 | 0.5661 |
| 0.1008 | 5.0 | 665 | 0.5952 | 0.5764 |