nyu-mll/glue
Viewer • Updated • 1.49M • 488k • 502
How to use EdwarV/NLP_sequences_example with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="EdwarV/NLP_sequences_example") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("EdwarV/NLP_sequences_example")
model = AutoModelForSequenceClassification.from_pretrained("EdwarV/NLP_sequences_example")This model is a fine-tuned version of distilroberta-base on the glue and the mrpc datasets. 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 | F1 |
|---|---|---|---|---|---|
| 0.6576 | 1.09 | 500 | 0.6249 | 0.6838 | 0.8122 |
| 0.6424 | 2.18 | 1000 | 0.6427 | 0.6838 | 0.8122 |