nyu-mll/glue
Viewer • Updated • 1.49M • 480k • 498
How to use YIMMYCRUZ/roberta-base-mrpc-glue with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="YIMMYCRUZ/roberta-base-mrpc-glue") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("YIMMYCRUZ/roberta-base-mrpc-glue")
model = AutoModelForSequenceClassification.from_pretrained("YIMMYCRUZ/roberta-base-mrpc-glue")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 | Accuracy | F1 |
|---|---|---|---|---|---|
| 0.6246 | 1.09 | 500 | 0.6276 | 0.6838 | 0.8122 |
| 0.6379 | 2.18 | 1000 | 0.6381 | 0.7034 | 0.8191 |