nyu-mll/glue
Viewer • Updated • 1.49M • 470k • 497
How to use lukeleeai/t5-base_cola_densedense_baseline with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="lukeleeai/t5-base_cola_densedense_baseline") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("lukeleeai/t5-base_cola_densedense_baseline")
model = AutoModelForSequenceClassification.from_pretrained("lukeleeai/t5-base_cola_densedense_baseline")This model is a fine-tuned version of t5-base 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 |
|---|---|---|---|---|
| 0.5117 | 1.49 | 50 | 0.5002 | 0.7977 |
| 0.3559 | 2.99 | 100 | 0.4575 | 0.8207 |
| 0.3103 | 4.48 | 150 | 0.4466 | 0.8255 |
| 0.2928 | 5.97 | 200 | 0.5051 | 0.8303 |
| 0.2085 | 7.46 | 250 | 0.5187 | 0.8351 |