nyu-mll/glue
Viewer • Updated • 1.49M • 428k • 509
How to use gokulsrinivasagan/bert_uncased_L-4_H-512_A-8_qnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gokulsrinivasagan/bert_uncased_L-4_H-512_A-8_qnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gokulsrinivasagan/bert_uncased_L-4_H-512_A-8_qnli")
model = AutoModelForSequenceClassification.from_pretrained("gokulsrinivasagan/bert_uncased_L-4_H-512_A-8_qnli")This model is a fine-tuned version of google/bert_uncased_L-4_H-512_A-8 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.437 | 1.0 | 410 | 0.3448 | 0.8521 |
| 0.3392 | 2.0 | 820 | 0.3215 | 0.8607 |
| 0.2746 | 3.0 | 1230 | 0.3148 | 0.8735 |
| 0.2175 | 4.0 | 1640 | 0.3549 | 0.8702 |
| 0.1712 | 5.0 | 2050 | 0.4000 | 0.8580 |
| 0.1311 | 6.0 | 2460 | 0.4335 | 0.8649 |
| 0.1065 | 7.0 | 2870 | 0.4819 | 0.8642 |
| 0.0849 | 8.0 | 3280 | 0.5127 | 0.8667 |
Base model
google/bert_uncased_L-4_H-512_A-8