nyu-mll/glue
Viewer • Updated • 1.49M • 458k • 495
How to use mujeensung/roberta-base_mnli_bc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="mujeensung/roberta-base_mnli_bc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("mujeensung/roberta-base_mnli_bc")
model = AutoModelForSequenceClassification.from_pretrained("mujeensung/roberta-base_mnli_bc")This model is a fine-tuned version of roberta-base on the GLUE MNLI 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.2015 | 1.0 | 16363 | 0.1820 | 0.9470 |
| 0.1463 | 2.0 | 32726 | 0.1909 | 0.9559 |
| 0.0768 | 3.0 | 49089 | 0.2117 | 0.9585 |