nyu-mll/glue
Viewer • Updated • 1.49M • 458k • 495
How to use graphcore-rahult/roberta-base-finetuned-cola with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="graphcore-rahult/roberta-base-finetuned-cola") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("graphcore-rahult/roberta-base-finetuned-cola")
model = AutoModelForSequenceClassification.from_pretrained("graphcore-rahult/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.5149 | 1.0 | 534 | 0.4097 | 0.5753 |
| 0.3749 | 2.0 | 1068 | 0.4736 | 0.5927 |
| 0.1327 | 3.0 | 1602 | 0.4639 | 0.5969 |
| 0.2031 | 4.0 | 2136 | 0.5474 | 0.5696 |
| 0.1133 | 5.0 | 2670 | 0.5776 | 0.6121 |