nyu-mll/glue
Viewer • Updated • 1.49M • 420k • 522
How to use anirudh21/albert-xlarge-v2-finetuned-mrpc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="anirudh21/albert-xlarge-v2-finetuned-mrpc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("anirudh21/albert-xlarge-v2-finetuned-mrpc")
model = AutoModelForSequenceClassification.from_pretrained("anirudh21/albert-xlarge-v2-finetuned-mrpc", device_map="auto")This model is a fine-tuned version of albert-xlarge-v2 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 | 63 | 0.6898 | 0.5221 | 0.6123 |
| No log | 2.0 | 126 | 0.6298 | 0.6838 | 0.8122 |
| No log | 3.0 | 189 | 0.6043 | 0.7010 | 0.8185 |
| No log | 4.0 | 252 | 0.5834 | 0.7010 | 0.8146 |
| No log | 5.0 | 315 | 0.5563 | 0.7132 | 0.8146 |