nyu-mll/glue
Viewer • Updated • 1.49M • 428k • 523
How to use gokuls/bert-base-uncased-qnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gokuls/bert-base-uncased-qnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gokuls/bert-base-uncased-qnli")
model = AutoModelForSequenceClassification.from_pretrained("gokuls/bert-base-uncased-qnli", device_map="auto")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.3436 | 1.0 | 819 | 0.2489 | 0.9035 |
| 0.1962 | 2.0 | 1638 | 0.2297 | 0.9105 |
| 0.1049 | 3.0 | 2457 | 0.2620 | 0.9121 |
| 0.0662 | 4.0 | 3276 | 0.3534 | 0.9088 |
| 0.0487 | 5.0 | 4095 | 0.3688 | 0.9046 |
| 0.0368 | 6.0 | 4914 | 0.3943 | 0.9074 |
| 0.0329 | 7.0 | 5733 | 0.4250 | 0.9092 |
| 0.0272 | 8.0 | 6552 | 0.4012 | 0.9054 |
| 0.0243 | 9.0 | 7371 | 0.4497 | 0.9041 |