nyu-mll/glue
Viewer • Updated • 1.49M • 472k • 497
How to use gokuls/bert-base-uncased-rte with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gokuls/bert-base-uncased-rte") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gokuls/bert-base-uncased-rte")
model = AutoModelForSequenceClassification.from_pretrained("gokuls/bert-base-uncased-rte")This model is a fine-tuned version of bert-base-uncased on the GLUE RTE 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.7009 | 1.0 | 20 | 0.6781 | 0.5560 |
| 0.6393 | 2.0 | 40 | 0.6540 | 0.6065 |
| 0.4606 | 3.0 | 60 | 0.7134 | 0.6498 |
| 0.2597 | 4.0 | 80 | 0.8379 | 0.6751 |
| 0.1492 | 5.0 | 100 | 1.3531 | 0.6282 |
| 0.0954 | 6.0 | 120 | 1.2220 | 0.6354 |
| 0.0561 | 7.0 | 140 | 1.2282 | 0.6715 |
| 0.0379 | 8.0 | 160 | 1.4368 | 0.6679 |
| 0.0368 | 9.0 | 180 | 1.8559 | 0.6498 |