nyu-mll/glue
Viewer • Updated • 1.49M • 481k • 501
How to use gchhablani/fnet-large-finetuned-wnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gchhablani/fnet-large-finetuned-wnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gchhablani/fnet-large-finetuned-wnli")
model = AutoModelForSequenceClassification.from_pretrained("gchhablani/fnet-large-finetuned-wnli")This model is a fine-tuned version of google/fnet-large on the GLUE WNLI 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.7217 | 1.0 | 159 | 0.6864 | 0.5634 |
| 0.7056 | 2.0 | 318 | 0.6869 | 0.5634 |
| 0.706 | 3.0 | 477 | 0.6875 | 0.5634 |
| 0.7032 | 4.0 | 636 | 0.6931 | 0.5634 |
| 0.7025 | 5.0 | 795 | 0.6953 | 0.3803 |