aps/super_glue
Viewer • Updated • 196k • 194k • 188
How to use Areepatw/roberta-multirc with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Areepatw/roberta-multirc") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Areepatw/roberta-multirc")
model = AutoModelForSequenceClassification.from_pretrained("Areepatw/roberta-multirc")This model is a fine-tuned version of roberta-base on the super_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 | F1 |
|---|---|---|---|---|---|
| 0.6872 | 1.0 | 1703 | 0.6811 | 0.5738 | 0.4314 |
Base model
FacebookAI/roberta-base