nyu-mll/glue
Viewer • Updated • 1.49M • 492k • 498
How to use JeremiahZ/bert-base-uncased-mnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="JeremiahZ/bert-base-uncased-mnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("JeremiahZ/bert-base-uncased-mnli")
model = AutoModelForSequenceClassification.from_pretrained("JeremiahZ/bert-base-uncased-mnli")This model is a fine-tuned version of bert-base-uncased 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.4526 | 1.0 | 12272 | 0.4244 | 0.8388 |
| 0.3344 | 2.0 | 24544 | 0.4252 | 0.8469 |
| 0.2307 | 3.0 | 36816 | 0.4974 | 0.8445 |
Base model
google-bert/bert-base-uncased