nyu-mll/glue
Viewer • Updated • 1.49M • 480k • 498
How to use gokuls/bert-base-uncased-wnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gokuls/bert-base-uncased-wnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gokuls/bert-base-uncased-wnli")
model = AutoModelForSequenceClassification.from_pretrained("gokuls/bert-base-uncased-wnli")This model is a fine-tuned version of bert-base-uncased on the GLUE WNLI 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.7192 | 1.0 | 5 | 0.6968 | 0.4789 |
| 0.6928 | 2.0 | 10 | 0.7003 | 0.2676 |
| 0.6921 | 3.0 | 15 | 0.7057 | 0.5211 |
| 0.6931 | 4.0 | 20 | 0.7282 | 0.3944 |
| 0.6922 | 5.0 | 25 | 0.7579 | 0.2535 |
| 0.68 | 6.0 | 30 | 0.8314 | 0.2254 |
| 0.6652 | 7.0 | 35 | 0.8990 | 0.1831 |
| 0.627 | 8.0 | 40 | 1.0187 | 0.2254 |