nyu-mll/glue
Viewer • Updated • 1.49M • 416k • 508
How to use JeremiahZ/bert-base-uncased-qnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="JeremiahZ/bert-base-uncased-qnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("JeremiahZ/bert-base-uncased-qnli")
model = AutoModelForSequenceClassification.from_pretrained("JeremiahZ/bert-base-uncased-qnli")This model is a fine-tuned version of bert-base-uncased on the GLUE QNLI 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.289 | 1.0 | 3274 | 0.2289 | 0.9094 |
| 0.1801 | 2.0 | 6548 | 0.2493 | 0.9118 |
| 0.1074 | 3.0 | 9822 | 0.3208 | 0.9125 |
Base model
google-bert/bert-base-uncased