nyu-mll/glue
Viewer • Updated • 1.49M • 449k • 525
How to use vish88/xlnet-base-rte-finetuned with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="vish88/xlnet-base-rte-finetuned") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("vish88/xlnet-base-rte-finetuned")
model = AutoModelForSequenceClassification.from_pretrained("vish88/xlnet-base-rte-finetuned", device_map="auto")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 | 311 | 0.9695 | 0.6859 |
| 0.315 | 2.0 | 622 | 2.2516 | 0.6498 |
| 0.315 | 3.0 | 933 | 2.0439 | 0.7076 |
| 0.1096 | 4.0 | 1244 | 2.5190 | 0.7040 |
| 0.0368 | 5.0 | 1555 | 2.6688 | 0.7040 |