nyu-mll/glue
Viewer • Updated • 1.49M • 429k • 523
How to use gokuls/sa_BERT_48_wnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="gokuls/sa_BERT_48_wnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("gokuls/sa_BERT_48_wnli")
model = AutoModelForSequenceClassification.from_pretrained("gokuls/sa_BERT_48_wnli", device_map="auto")This model is a fine-tuned version of gokuls/bert_base_48 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 |
|---|---|---|---|---|
| 1.0146 | 1.0 | 7 | 0.6985 | 0.4085 |
| 0.6963 | 2.0 | 14 | 0.7209 | 0.4366 |
| 0.7005 | 3.0 | 21 | 0.6900 | 0.5634 |
| 0.7029 | 4.0 | 28 | 0.7055 | 0.4366 |
| 0.6987 | 5.0 | 35 | 0.7004 | 0.2817 |
| 0.702 | 6.0 | 42 | 0.6945 | 0.5634 |
| 0.6945 | 7.0 | 49 | 0.7308 | 0.4366 |
| 0.7056 | 8.0 | 56 | 0.6968 | 0.5634 |