nyu-mll/glue
Viewer • Updated • 1.49M • 463k • 495
How to use gchhablani/fnet-large-finetuned-cola with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gchhablani/fnet-large-finetuned-cola") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gchhablani/fnet-large-finetuned-cola")
model = AutoModelForSequenceClassification.from_pretrained("gchhablani/fnet-large-finetuned-cola")This model is a fine-tuned version of google/fnet-large on the GLUE COLA 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 | Matthews Correlation |
|---|---|---|---|---|
| 0.6195 | 1.0 | 2138 | 0.6527 | 0.0 |
| 0.6168 | 2.0 | 4276 | 0.6259 | 0.0 |
| 0.616 | 3.0 | 6414 | 0.6243 | 0.0 |