nyu-mll/glue
Viewer • Updated • 1.49M • 481k • 501
How to use philschmid/roberta-large-sst2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="philschmid/roberta-large-sst2") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("philschmid/roberta-large-sst2")
model = AutoModelForSequenceClassification.from_pretrained("philschmid/roberta-large-sst2")This model is a fine-tuned version of roberta-large 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.3688 | 1.0 | 264 | 0.1444 | 0.9564 |
| 0.1529 | 2.0 | 528 | 0.1502 | 0.9518 |
| 0.107 | 3.0 | 792 | 0.1388 | 0.9530 |
| 0.0666 | 4.0 | 1056 | 0.1400 | 0.9644 |