nyu-mll/glue
Viewer • Updated • 1.49M • 476k • 498
How to use JeremiahZ/roberta-base-qnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="JeremiahZ/roberta-base-qnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("JeremiahZ/roberta-base-qnli")
model = AutoModelForSequenceClassification.from_pretrained("JeremiahZ/roberta-base-qnli")This model is a fine-tuned version of roberta-base 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.2986 | 1.0 | 6547 | 0.2215 | 0.9171 |
| 0.243 | 2.0 | 13094 | 0.2321 | 0.9173 |
| 0.2048 | 3.0 | 19641 | 0.2992 | 0.9246 |
| 0.1629 | 4.0 | 26188 | 0.3538 | 0.9220 |
| 0.1308 | 5.0 | 32735 | 0.3533 | 0.9209 |
| 0.0846 | 6.0 | 39282 | 0.4277 | 0.9229 |