nyu-mll/glue
Viewer • Updated • 1.49M • 456k • 505
How to use velaa/opt-125m-finetuned-mnli with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="velaa/opt-125m-finetuned-mnli") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("velaa/opt-125m-finetuned-mnli")
model = AutoModelForSequenceClassification.from_pretrained("velaa/opt-125m-finetuned-mnli")This model is a fine-tuned version of facebook/opt-125m 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.0726 | 1.0 | 1 | 1.7835 | 0.3536 |
| 0.1157 | 2.0 | 2 | 1.7566 | 0.3552 |
| 0.0624 | 3.0 | 3 | 1.7372 | 0.3548 |
| 0.07 | 4.0 | 4 | 1.7249 | 0.3544 |
| 0.0689 | 5.0 | 5 | 1.7189 | 0.3545 |
Base model
facebook/opt-125m