nyu-mll/glue
Viewer • Updated • 1.49M • 424k • 523
How to use gayanin/bert-mnli-classifier with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gayanin/bert-mnli-classifier") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gayanin/bert-mnli-classifier")
model = AutoModelForSequenceClassification.from_pretrained("gayanin/bert-mnli-classifier", device_map="auto")This model is a fine-tuned version of bert-base-cased 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 |
|---|---|---|---|---|
| 0.4134 | 1.0 | 6136 | 0.4234 | 0.8384 |
| 0.39 | 2.0 | 12272 | 0.4150 | 0.8420 |
| 0.2299 | 3.0 | 18408 | 0.4604 | 0.8436 |