nyu-mll/glue
Viewer • Updated • 1.49M • 437k • 508
How to use gchhablani/bert-large-cased-finetuned-rte with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gchhablani/bert-large-cased-finetuned-rte") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gchhablani/bert-large-cased-finetuned-rte")
model = AutoModelForSequenceClassification.from_pretrained("gchhablani/bert-large-cased-finetuned-rte")This model is a fine-tuned version of bert-large-cased 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.6969 | 1.0 | 623 | 0.7039 | 0.5343 |
| 0.5903 | 2.0 | 1246 | 0.6461 | 0.7184 |
| 0.4557 | 3.0 | 1869 | 1.5187 | 0.6643 |