nyu-mll/glue
Viewer • Updated • 1.49M • 852k • 1.05k
How to use gokulsrinivasagan/bert_tiny_lda_50_v1_qnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gokulsrinivasagan/bert_tiny_lda_50_v1_qnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gokulsrinivasagan/bert_tiny_lda_50_v1_qnli")
model = AutoModelForSequenceClassification.from_pretrained("gokulsrinivasagan/bert_tiny_lda_50_v1_qnli", device_map="auto")This model is a fine-tuned version of gokulsrinivasagan/bert_tiny_lda_50_v1 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.6635 | 1.0 | 410 | 0.6401 | 0.6246 |
| 0.6344 | 2.0 | 820 | 0.6234 | 0.6474 |
| 0.5971 | 3.0 | 1230 | 0.6443 | 0.6352 |
| 0.5332 | 4.0 | 1640 | 0.6429 | 0.6489 |
| 0.4528 | 5.0 | 2050 | 0.6183 | 0.6932 |
| 0.3755 | 6.0 | 2460 | 0.6856 | 0.7018 |
| 0.3155 | 7.0 | 2870 | 0.7989 | 0.6925 |
| 0.2596 | 8.0 | 3280 | 0.8255 | 0.6971 |
| 0.2191 | 9.0 | 3690 | 0.9380 | 0.6916 |
| 0.179 | 10.0 | 4100 | 1.0464 | 0.6960 |
Base model
gokulsrinivasagan/bert_tiny_lda_50_v1