nyu-mll/glue
Viewer • Updated • 1.49M • 480k • 498
How to use anirudh21/xlnet-base-cased-finetuned-rte with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="anirudh21/xlnet-base-cased-finetuned-rte") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("anirudh21/xlnet-base-cased-finetuned-rte")
model = AutoModelForSequenceClassification.from_pretrained("anirudh21/xlnet-base-cased-finetuned-rte")This model is a fine-tuned version of xlnet-base-cased on the glue 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 |
|---|---|---|---|---|
| No log | 1.0 | 156 | 0.7007 | 0.4874 |
| No log | 2.0 | 312 | 0.6289 | 0.6751 |
| No log | 3.0 | 468 | 0.7020 | 0.6606 |
| 0.6146 | 4.0 | 624 | 1.0573 | 0.6570 |
| 0.6146 | 5.0 | 780 | 1.0656 | 0.6895 |