nyu-mll/glue
Viewer • Updated • 1.49M • 472k • 497
How to use Jinchen/roberta-base-finetuned-mrpc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Jinchen/roberta-base-finetuned-mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Jinchen/roberta-base-finetuned-mrpc")
model = AutoModelForSequenceClassification.from_pretrained("Jinchen/roberta-base-finetuned-mrpc")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.5998 | 1.0 | 57 | 0.5425 | 0.74 | 0.8349 |
| 0.5058 | 2.0 | 114 | 0.3020 | 0.875 | 0.9084 |
| 0.3316 | 3.0 | 171 | 0.2891 | 0.8925 | 0.9228 |
| 0.1617 | 4.0 | 228 | 0.2937 | 0.8825 | 0.9138 |
| 0.3161 | 5.0 | 285 | 0.3193 | 0.8875 | 0.9171 |