nyu-mll/glue
Viewer • Updated • 1.49M • 442k • 523
How to use vicl/distilbert-base-uncased-finetuned-mrpc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="vicl/distilbert-base-uncased-finetuned-mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("vicl/distilbert-base-uncased-finetuned-mrpc")
model = AutoModelForSequenceClassification.from_pretrained("vicl/distilbert-base-uncased-finetuned-mrpc", device_map="auto")This model is a fine-tuned version of distilbert-base-uncased 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 |
|---|---|---|---|---|---|
| No log | 1.0 | 230 | 0.3830 | 0.8162 | 0.8673 |
| No log | 2.0 | 460 | 0.3957 | 0.8456 | 0.8952 |
| 0.4307 | 3.0 | 690 | 0.4044 | 0.8480 | 0.8942 |
| 0.4307 | 4.0 | 920 | 0.5649 | 0.8407 | 0.8915 |
| 0.1739 | 5.0 | 1150 | 0.5983 | 0.8480 | 0.8956 |