nyu-mll/glue
Viewer • Updated • 1.49M • 486k • 502
How to use mujeensung/albert-base-v2_mnli_bc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="mujeensung/albert-base-v2_mnli_bc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("mujeensung/albert-base-v2_mnli_bc")
model = AutoModelForSequenceClassification.from_pretrained("mujeensung/albert-base-v2_mnli_bc")This model is a fine-tuned version of albert-base-v2 on the GLUE MNLI 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 |
|---|---|---|---|---|
| 0.2159 | 1.0 | 16363 | 0.2268 | 0.9248 |
| 0.1817 | 2.0 | 32726 | 0.2335 | 0.9347 |
| 0.0863 | 3.0 | 49089 | 0.3014 | 0.9401 |