nyu-mll/glue
Viewer • Updated • 1.49M • 489k • 500
How to use jefercania/distilroberta-base-mrpc-glue with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="jefercania/distilroberta-base-mrpc-glue") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("jefercania/distilroberta-base-mrpc-glue")
model = AutoModelForSequenceClassification.from_pretrained("jefercania/distilroberta-base-mrpc-glue")# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("jefercania/distilroberta-base-mrpc-glue")
model = AutoModelForSequenceClassification.from_pretrained("jefercania/distilroberta-base-mrpc-glue")This model is a fine-tuned version of distilroberta-base on the datasetX 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 | F1 |
|---|---|---|---|---|---|
| 0.5377 | 1.09 | 500 | 0.4936 | 0.8382 | 0.8893 |
| 0.3477 | 2.18 | 1000 | 0.6595 | 0.8407 | 0.8862 |
Base model
distilbert/distilroberta-base
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="jefercania/distilroberta-base-mrpc-glue")