nyu-mll/glue
Viewer • Updated • 1.49M • 480k • 498
How to use nmb-paperspace-hf/roberta-base-finetuned-cola with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="nmb-paperspace-hf/roberta-base-finetuned-cola") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("nmb-paperspace-hf/roberta-base-finetuned-cola")
model = AutoModelForSequenceClassification.from_pretrained("nmb-paperspace-hf/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.4308 | 1.0 | 534 | 0.4082 | 0.5856 |
| 0.3759 | 2.0 | 1068 | 0.4661 | 0.5953 |
| 0.2997 | 3.0 | 1602 | 0.5586 | 0.5969 |
| 0.0746 | 4.0 | 2136 | 0.5806 | 0.5815 |
| 0.1605 | 5.0 | 2670 | 0.6064 | 0.6198 |