nyu-mll/glue
Viewer • Updated • 1.49M • 378k • 514
How to use jinghan/roberta-base-finetuned-wnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="jinghan/roberta-base-finetuned-wnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("jinghan/roberta-base-finetuned-wnli")
model = AutoModelForSequenceClassification.from_pretrained("jinghan/roberta-base-finetuned-wnli")This model is a fine-tuned version of roberta-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 |
|---|---|---|---|---|
| No log | 1.0 | 40 | 0.6880 | 0.5634 |
| No log | 2.0 | 80 | 0.6851 | 0.5634 |
| No log | 3.0 | 120 | 0.6961 | 0.4366 |
| No log | 4.0 | 160 | 0.6906 | 0.5634 |
| No log | 5.0 | 200 | 0.6891 | 0.5634 |