nyu-mll/glue
Viewer • Updated • 1.49M • 492k • 500
How to use anirudh21/albert-base-v2-finetuned-rte with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="anirudh21/albert-base-v2-finetuned-rte") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("anirudh21/albert-base-v2-finetuned-rte")
model = AutoModelForSequenceClassification.from_pretrained("anirudh21/albert-base-v2-finetuned-rte")This model is a fine-tuned version of albert-base-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 |
|---|---|---|---|---|
| No log | 1.0 | 249 | 0.5914 | 0.6751 |
| No log | 2.0 | 498 | 0.5843 | 0.7184 |
| 0.5873 | 3.0 | 747 | 0.6925 | 0.7220 |
| 0.5873 | 4.0 | 996 | 1.1613 | 0.7545 |
| 0.2149 | 5.0 | 1245 | 1.2496 | 0.7581 |