nyu-mll/glue
Viewer • Updated • 1.49M • 472k • 497
How to use alexrods/course-distilroberta-base-mrpc-glue with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="alexrods/course-distilroberta-base-mrpc-glue") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("alexrods/course-distilroberta-base-mrpc-glue")
model = AutoModelForSequenceClassification.from_pretrained("alexrods/course-distilroberta-base-mrpc-glue")This model is a fine-tuned version of distilroberta-base on the glue and the mrpc datasets. 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.1616 | 1.09 | 500 | 1.1943 | 0.8162 | 0.8718 |
| 0.2134 | 2.18 | 1000 | 1.0204 | 0.8235 | 0.8780 |